diff options
author | Anton Khirnov <anton@khirnov.net> | 2013-03-09 20:37:11 +0100 |
---|---|---|
committer | Anton Khirnov <anton@khirnov.net> | 2013-03-21 10:20:30 +0100 |
commit | 82313eaa34b02cf1a4b6f55c1b73549ec8d056f0 (patch) | |
tree | 070d0cb6db9995fb97bb5bc66ee4ad4ffe033a44 /libavcodec/h264.h | |
parent | 48d0fd2d62a476e1db9298163f1fc0abae26cc67 (diff) | |
download | ffmpeg-82313eaa34b02cf1a4b6f55c1b73549ec8d056f0.tar.gz |
h264: add a parameter to the MB_MBAFF macro.
This way it does not look like a constant.
Diffstat (limited to 'libavcodec/h264.h')
-rw-r--r-- | libavcodec/h264.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/libavcodec/h264.h b/libavcodec/h264.h index 3482d897aa..1da1922188 100644 --- a/libavcodec/h264.h +++ b/libavcodec/h264.h @@ -59,7 +59,7 @@ #define MAX_SLICES 16 #ifdef ALLOW_INTERLACE -#define MB_MBAFF h->mb_mbaff +#define MB_MBAFF(h) h->mb_mbaff #define MB_FIELD h->mb_field_decoding_flag #define FRAME_MBAFF h->mb_aff_frame #define FIELD_PICTURE (h->picture_structure != PICT_FRAME) @@ -68,7 +68,7 @@ #define LBOT 1 #define LEFT(i) (i) #else -#define MB_MBAFF 0 +#define MB_MBAFF(h) 0 #define MB_FIELD 0 #define FRAME_MBAFF 0 #define FIELD_PICTURE 0 |