mirror of
https://github.com/FFmpeg/FFmpeg.git
synced 2024-12-28 20:53:54 +02:00
avcodec/h264: use consistent argument name in MB_FIELD() macro
Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
This commit is contained in:
parent
92f94fd5dd
commit
795199fca4
@ -69,7 +69,7 @@
|
||||
|
||||
#ifdef ALLOW_INTERLACE
|
||||
#define MB_MBAFF(h) (h)->mb_mbaff
|
||||
#define MB_FIELD(h) (h)->mb_field_decoding_flag
|
||||
#define MB_FIELD(sl) (sl)->mb_field_decoding_flag
|
||||
#define FRAME_MBAFF(h) (h)->mb_aff_frame
|
||||
#define FIELD_PICTURE(h) ((h)->picture_structure != PICT_FRAME)
|
||||
#define LEFT_MBS 2
|
||||
@ -78,7 +78,7 @@
|
||||
#define LEFT(i) (i)
|
||||
#else
|
||||
#define MB_MBAFF(h) 0
|
||||
#define MB_FIELD(h) 0
|
||||
#define MB_FIELD(sl) 0
|
||||
#define FRAME_MBAFF(h) 0
|
||||
#define FIELD_PICTURE(h) 0
|
||||
#undef IS_INTERLACED
|
||||
|
Loading…
Reference in New Issue
Block a user