Browse Source

avcodec/h264: use consistent argument name in MB_FIELD() macro

Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
tags/n2.7
Michael Niedermayer 10 years ago
parent
commit
795199fca4
1 changed files with 2 additions and 2 deletions
  1. +2
    -2
      libavcodec/h264.h

+ 2
- 2
libavcodec/h264.h View File

@@ -69,7 +69,7 @@


#ifdef ALLOW_INTERLACE #ifdef ALLOW_INTERLACE
#define MB_MBAFF(h) (h)->mb_mbaff #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 FRAME_MBAFF(h) (h)->mb_aff_frame
#define FIELD_PICTURE(h) ((h)->picture_structure != PICT_FRAME) #define FIELD_PICTURE(h) ((h)->picture_structure != PICT_FRAME)
#define LEFT_MBS 2 #define LEFT_MBS 2
@@ -78,7 +78,7 @@
#define LEFT(i) (i) #define LEFT(i) (i)
#else #else
#define MB_MBAFF(h) 0 #define MB_MBAFF(h) 0
#define MB_FIELD(h) 0
#define MB_FIELD(sl) 0
#define FRAME_MBAFF(h) 0 #define FRAME_MBAFF(h) 0
#define FIELD_PICTURE(h) 0 #define FIELD_PICTURE(h) 0
#undef IS_INTERLACED #undef IS_INTERLACED


Loading…
Cancel
Save