Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/FFmpeg/FFmpeg.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorVittorio Giovara <vittorio.giovara@gmail.com>2016-12-05 23:43:14 +0300
committerVittorio Giovara <vittorio.giovara@gmail.com>2017-03-23 12:09:15 +0300
commitda5ba26b9e25f408e8d2f9428c9eca699f11a7db (patch)
tree493f05647cacfa6b0b1bd15725228d820e557ce2 /libavcodec/mpegutils.h
parentcbebc3251bc2544b469e0dcb176bc04779d8866c (diff)
lavc: Drop deprecated macroblock type symbols
Deprecated in 10/2013.
Diffstat (limited to 'libavcodec/mpegutils.h')
-rw-r--r--libavcodec/mpegutils.h2
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