Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Contribute to GitLab
Sign in / Register
Toggle navigation
F
ffmpeg.wasm-core
Project
Project
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
Linshizhi
ffmpeg.wasm-core
Commits
b2b76691
Commit
b2b76691
authored
May 29, 2015
by
Vittorio Giovara
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
mpegvideo: mpeg12: Move function declarations
parent
378a0008
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
6 additions
and
7 deletions
+6
-7
mpeg12.h
libavcodec/mpeg12.h
+6
-0
mpegvideo.h
libavcodec/mpegvideo.h
+0
-7
No files found.
libavcodec/mpeg12.h
View file @
b2b76691
...
...
@@ -71,4 +71,10 @@ int ff_mpeg1_decode_block_intra(MpegEncContext *s, int16_t *block, int n);
void
ff_mpeg1_clean_buffers
(
MpegEncContext
*
s
);
int
ff_mpeg1_find_frame_end
(
ParseContext
*
pc
,
const
uint8_t
*
buf
,
int
buf_size
,
AVCodecParserContext
*
s
);
void
ff_mpeg1_encode_picture_header
(
MpegEncContext
*
s
,
int
picture_number
);
void
ff_mpeg1_encode_mb
(
MpegEncContext
*
s
,
int16_t
block
[
8
][
64
],
int
motion_x
,
int
motion_y
);
void
ff_mpeg1_encode_init
(
MpegEncContext
*
s
);
void
ff_mpeg1_encode_slice_header
(
MpegEncContext
*
s
);
#endif
/* AVCODEC_MPEG12_H */
libavcodec/mpegvideo.h
View file @
b2b76691
...
...
@@ -817,13 +817,6 @@ int ff_epzs_motion_search(MpegEncContext * s, int *mx_ptr, int *my_ptr,
int
ff_get_mb_score
(
MpegEncContext
*
s
,
int
mx
,
int
my
,
int
src_index
,
int
ref_index
,
int
size
,
int
h
,
int
add_rate
);
void
ff_mpeg1_encode_picture_header
(
MpegEncContext
*
s
,
int
picture_number
);
void
ff_mpeg1_encode_mb
(
MpegEncContext
*
s
,
int16_t
block
[
8
][
64
],
int
motion_x
,
int
motion_y
);
void
ff_mpeg1_encode_init
(
MpegEncContext
*
s
);
void
ff_mpeg1_encode_slice_header
(
MpegEncContext
*
s
);
extern
const
uint8_t
ff_aic_dc_scale_table
[
32
];
extern
const
uint8_t
ff_h263_chroma_qscale_table
[
32
];
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment