diff options
author | James Almer <jamrial@gmail.com> | 2017-10-23 15:59:02 -0300 |
---|---|---|
committer | James Almer <jamrial@gmail.com> | 2017-10-23 15:59:02 -0300 |
commit | f7eb1c9ac55bd27583419fb09c3dbb70b3ce56bc (patch) | |
tree | 8e9ce08b38422f730f3cd78fb10f1c15c444ca40 /libavcodec/avcodec.h | |
parent | 0b79fdeb9a81b8a568c7efea1063352338f4aa5b (diff) | |
parent | da5ba26b9e25f408e8d2f9428c9eca699f11a7db (diff) | |
download | ffmpeg-f7eb1c9ac55bd27583419fb09c3dbb70b3ce56bc.tar.gz |
Merge commit 'da5ba26b9e25f408e8d2f9428c9eca699f11a7db'
* commit 'da5ba26b9e25f408e8d2f9428c9eca699f11a7db':
lavc: Drop deprecated macroblock type symbols
Merged-by: James Almer <jamrial@gmail.com>
Diffstat (limited to 'libavcodec/avcodec.h')
-rw-r--r-- | libavcodec/avcodec.h | 26 |
1 files changed, 0 insertions, 26 deletions
diff --git a/libavcodec/avcodec.h b/libavcodec/avcodec.h index 62775edb76..5a07aad5a9 100644 --- a/libavcodec/avcodec.h +++ b/libavcodec/avcodec.h @@ -1247,32 +1247,6 @@ typedef struct RcOverride{ #define HWACCEL_CODEC_CAP_EXPERIMENTAL 0x0200 #endif /* FF_API_WITHOUT_PREFIX */ -#if FF_API_MB_TYPE -//The following defines may change, don't expect compatibility if you use them. -#define MB_TYPE_INTRA4x4 0x0001 -#define MB_TYPE_INTRA16x16 0x0002 //FIXME H.264-specific -#define MB_TYPE_INTRA_PCM 0x0004 //FIXME H.264-specific -#define MB_TYPE_16x16 0x0008 -#define MB_TYPE_16x8 0x0010 -#define MB_TYPE_8x16 0x0020 -#define MB_TYPE_8x8 0x0040 -#define MB_TYPE_INTERLACED 0x0080 -#define MB_TYPE_DIRECT2 0x0100 //FIXME -#define MB_TYPE_ACPRED 0x0200 -#define MB_TYPE_GMC 0x0400 -#define MB_TYPE_SKIP 0x0800 -#define MB_TYPE_P0L0 0x1000 -#define MB_TYPE_P1L0 0x2000 -#define MB_TYPE_P0L1 0x4000 -#define MB_TYPE_P1L1 0x8000 -#define MB_TYPE_L0 (MB_TYPE_P0L0 | MB_TYPE_P1L0) -#define MB_TYPE_L1 (MB_TYPE_P0L1 | MB_TYPE_P1L1) -#define MB_TYPE_L0L1 (MB_TYPE_L0 | MB_TYPE_L1) -#define MB_TYPE_QUANT 0x00010000 -#define MB_TYPE_CBP 0x00020000 -// Note bits 24-31 are reserved for codec specific use (H.264 ref0, MPEG-1 0mv, ...) -#endif - /** * Pan Scan area. * This specifies the area which should be displayed. |