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
eee2000b
Commit
eee2000b
authored
Mar 26, 2013
by
Diego Biurrun
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
mpeg12: Move some ff_mpeg1_* function declarations to a more suitable place
parent
b6649ab5
Show whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
4 additions
and
3 deletions
+4
-3
mpeg12.h
libavcodec/mpeg12.h
+2
-0
mpegvideo.h
libavcodec/mpegvideo.h
+0
-2
mpegvideo_enc.c
libavcodec/mpegvideo_enc.c
+1
-0
mpegvideo_parser.c
libavcodec/mpegvideo_parser.c
+1
-1
No files found.
libavcodec/mpeg12.h
View file @
eee2000b
...
...
@@ -72,5 +72,7 @@ static inline int decode_dc(GetBitContext *gb, int component)
}
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
);
#endif
/* AVCODEC_MPEG12_H */
libavcodec/mpegvideo.h
View file @
eee2000b
...
...
@@ -890,8 +890,6 @@ void ff_mpeg1_encode_mb(MpegEncContext *s,
int
motion_x
,
int
motion_y
);
void
ff_mpeg1_encode_init
(
MpegEncContext
*
s
);
void
ff_mpeg1_encode_slice_header
(
MpegEncContext
*
s
);
void
ff_mpeg1_clean_buffers
(
MpegEncContext
*
s
);
int
ff_mpeg1_find_frame_end
(
ParseContext
*
pc
,
const
uint8_t
*
buf
,
int
buf_size
,
AVCodecParserContext
*
s
);
extern
const
uint8_t
ff_aic_dc_scale_table
[
32
];
extern
const
uint8_t
ff_h263_chroma_qscale_table
[
32
];
...
...
libavcodec/mpegvideo_enc.c
View file @
eee2000b
...
...
@@ -35,6 +35,7 @@
#include "avcodec.h"
#include "dct.h"
#include "dsputil.h"
#include "mpeg12.h"
#include "mpegvideo.h"
#include "h263.h"
#include "mathops.h"
...
...
libavcodec/mpegvideo_parser.c
View file @
eee2000b
...
...
@@ -21,7 +21,7 @@
*/
#include "parser.h"
#include "mpeg
video
.h"
#include "mpeg
12
.h"
#include "internal.h"
struct
MpvParseContext
{
...
...
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