diff options
author | Vittorio Giovara <vittorio.giovara@gmail.com> | 2016-12-05 15:43:14 -0500 |
---|---|---|
committer | Vittorio Giovara <vittorio.giovara@gmail.com> | 2017-03-23 10:09:15 +0100 |
commit | da5ba26b9e25f408e8d2f9428c9eca699f11a7db (patch) | |
tree | 493f05647cacfa6b0b1bd15725228d820e557ce2 /libavcodec/mpegutils.h | |
parent | cbebc3251bc2544b469e0dcb176bc04779d8866c (diff) | |
download | ffmpeg-da5ba26b9e25f408e8d2f9428c9eca699f11a7db.tar.gz |
lavc: Drop deprecated macroblock type symbols
Deprecated in 10/2013.
Diffstat (limited to 'libavcodec/mpegutils.h')
-rw-r--r-- | libavcodec/mpegutils.h | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/libavcodec/mpegutils.h b/libavcodec/mpegutils.h index 60f971222e..960999c928 100644 --- a/libavcodec/mpegutils.h +++ b/libavcodec/mpegutils.h @@ -48,7 +48,6 @@ #define MAX_FCODE 7 /* MB types */ -#if !FF_API_MB_TYPE #define MB_TYPE_INTRA4x4 (1 << 0) #define MB_TYPE_INTRA16x16 (1 << 1) // FIXME H.264-specific #define MB_TYPE_INTRA_PCM (1 << 2) // FIXME H.264-specific @@ -70,7 +69,6 @@ #define MB_TYPE_L0L1 (MB_TYPE_L0 | MB_TYPE_L1) #define MB_TYPE_QUANT (1 << 16) #define MB_TYPE_CBP (1 << 17) -#endif #define MB_TYPE_INTRA MB_TYPE_INTRA4x4 // default mb_type if there is just one type |