comparison h264.h @ 5767:32b404ec4c19 libavcodec

Partial PAFF implementation at macroblock level. PAFF support disabled until implementation complete. patch by Jeff Downs, heydowns a borg d com original thread: Subject: [FFmpeg-devel] [PATCH] Implement PAFF in H.264 Date: 18/09/07 20:30
author andoma
date Thu, 04 Oct 2007 06:33:26 +0000
parents db5a041fd77c
children 65b71bd21a4d
comparison
equal deleted inserted replaced
5766:ad8345572a2e 5767:32b404ec4c19
57 57
58 #ifdef ALLOW_INTERLACE 58 #ifdef ALLOW_INTERLACE
59 #define MB_MBAFF h->mb_mbaff 59 #define MB_MBAFF h->mb_mbaff
60 #define MB_FIELD h->mb_field_decoding_flag 60 #define MB_FIELD h->mb_field_decoding_flag
61 #define FRAME_MBAFF h->mb_aff_frame 61 #define FRAME_MBAFF h->mb_aff_frame
62 #define FIELD_PICTURE 0
62 #else 63 #else
63 #define MB_MBAFF 0 64 #define MB_MBAFF 0
64 #define MB_FIELD 0 65 #define MB_FIELD 0
65 #define FRAME_MBAFF 0 66 #define FRAME_MBAFF 0
67 #define FIELD_PICTURE 0
66 #undef IS_INTERLACED 68 #undef IS_INTERLACED
67 #define IS_INTERLACED(mb_type) 0 69 #define IS_INTERLACED(mb_type) 0
68 #endif 70 #endif
69 71
70 /** 72 /**