summaryrefslogtreecommitdiff
path: root/libavcodec/h264.h
diff options
context:
space:
mode:
authorJeff Downs <heydowns@borg.com>2007-10-04 06:33:26 +0000
committerAndreas Ă–man <andreas@lonelycoder.com>2007-10-04 06:33:26 +0000
commitbbb3edb827de21a7c91e38b4ee741f1bbd9062a6 (patch)
treefc04326e6407bb05e537822d24223a7da2381153 /libavcodec/h264.h
parent330194b9cec1b31cd61a80d1914bc8cfc73ad45d (diff)
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 Originally committed as revision 10658 to svn://svn.ffmpeg.org/ffmpeg/trunk
Diffstat (limited to 'libavcodec/h264.h')
-rw-r--r--libavcodec/h264.h2
1 files changed, 2 insertions, 0 deletions
diff --git a/libavcodec/h264.h b/libavcodec/h264.h
index 0081e7392e..d9a668c7b1 100644
--- a/libavcodec/h264.h
+++ b/libavcodec/h264.h
@@ -59,10 +59,12 @@
#define MB_MBAFF h->mb_mbaff
#define MB_FIELD h->mb_field_decoding_flag
#define FRAME_MBAFF h->mb_aff_frame
+#define FIELD_PICTURE 0
#else
#define MB_MBAFF 0
#define MB_FIELD 0
#define FRAME_MBAFF 0
+#define FIELD_PICTURE 0
#undef IS_INTERLACED
#define IS_INTERLACED(mb_type) 0
#endif