diff options
author | Andreas Rheinhardt <andreas.rheinhardt@outlook.com> | 2022-02-02 05:01:51 +0100 |
---|---|---|
committer | Andreas Rheinhardt <andreas.rheinhardt@outlook.com> | 2022-02-13 19:49:29 +0100 |
commit | 32ce3b71688aa797d9795e7aa0427df02a0da189 (patch) | |
tree | 30f227a548dabe358dd4c928078fc6c58fb13882 /libavcodec/mpegutils.h | |
parent | 629259bdb58061b7b7c1ae4cdc44599f6c0bb050 (diff) | |
download | ffmpeg-32ce3b71688aa797d9795e7aa0427df02a0da189.tar.gz |
avcodec/mpegutils.h: Move DELAYED_PIC_REF macro to h264dec.h
It is only used by the H.264 decoder (as well as the dirac decoder,
which already uses a local copy).
Signed-off-by: Andreas Rheinhardt <andreas.rheinhardt@outlook.com>
Diffstat (limited to 'libavcodec/mpegutils.h')
-rw-r--r-- | libavcodec/mpegutils.h | 6 |
1 files changed, 0 insertions, 6 deletions
diff --git a/libavcodec/mpegutils.h b/libavcodec/mpegutils.h index 07705854b3..c92f9192db 100644 --- a/libavcodec/mpegutils.h +++ b/libavcodec/mpegutils.h @@ -37,12 +37,6 @@ #define PICT_BOTTOM_FIELD 2 #define PICT_FRAME 3 -/** - * Value of Picture.reference when Picture is not a reference picture, but - * is held for delayed output. - */ -#define DELAYED_PIC_REF 4 - #define MAX_MB_BYTES (30 * 16 * 16 * 3 / 8 + 120) #define MAX_FCODE 7 |