diff options
author | Andreas Rheinhardt <andreas.rheinhardt@outlook.com> | 2021-09-12 19:02:18 +0200 |
---|---|---|
committer | Andreas Rheinhardt <andreas.rheinhardt@outlook.com> | 2021-09-20 00:10:35 +0200 |
commit | 9c489a0f3a954d8b63d0e8dc2a387ff8f2a8aa3a (patch) | |
tree | bb5d70da809327f3be2a81c937d6d6c601bd29d2 /libavcodec/mpeg12.h | |
parent | 044a7c08dc7ef565786fdc87a35298033bb0ef02 (diff) | |
download | ffmpeg-9c489a0f3a954d8b63d0e8dc2a387ff8f2a8aa3a.tar.gz |
avcodec/mpegvideo: Move startcodes to mpeg12.h
And remove the MPEG-4-specific SLICE_START_CODE, which duplicates
SLICE_STARTCODE.
Signed-off-by: Andreas Rheinhardt <andreas.rheinhardt@outlook.com>
Diffstat (limited to 'libavcodec/mpeg12.h')
-rw-r--r-- | libavcodec/mpeg12.h | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/libavcodec/mpeg12.h b/libavcodec/mpeg12.h index 4cd48b5d20..a7b94c132a 100644 --- a/libavcodec/mpeg12.h +++ b/libavcodec/mpeg12.h @@ -25,6 +25,16 @@ #include "mpeg12vlc.h" #include "mpegvideo.h" +/* Start codes. */ +#define SEQ_END_CODE 0x000001b7 +#define SEQ_START_CODE 0x000001b3 +#define GOP_START_CODE 0x000001b8 +#define PICTURE_START_CODE 0x00000100 +#define SLICE_MIN_START_CODE 0x00000101 +#define SLICE_MAX_START_CODE 0x000001af +#define EXT_START_CODE 0x000001b5 +#define USER_START_CODE 0x000001b2 + void ff_mpeg12_common_init(MpegEncContext *s); #define INIT_2D_VLC_RL(rl, static_size, flags)\ |