diff options
author | Jeff Downs <heydowns@borg.com> | 2007-10-08 17:44:38 +0000 |
---|---|---|
committer | Andreas Ă–man <andreas@lonelycoder.com> | 2007-10-08 17:44:38 +0000 |
commit | 12d96de3acf660d53d6931e2045ec21fd8ae718f (patch) | |
tree | a3bee9fe82e500e22b96d2876287ed61bdcf7dab /libavcodec/mpegvideo.c | |
parent | ac6b423b0c070f34de2b6a8df7913c6fe7aaa0de (diff) | |
download | ffmpeg-12d96de3acf660d53d6931e2045ec21fd8ae718f.tar.gz |
Manage Picture buffers for fields as well as frames. Pair complementary fields into one MPV Picture.
Part of PAFF implementation.
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 10691 to svn://svn.ffmpeg.org/ffmpeg/trunk
Diffstat (limited to 'libavcodec/mpegvideo.c')
-rw-r--r-- | libavcodec/mpegvideo.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libavcodec/mpegvideo.c b/libavcodec/mpegvideo.c index b73ccbd63b..7a14dc1413 100644 --- a/libavcodec/mpegvideo.c +++ b/libavcodec/mpegvideo.c @@ -954,7 +954,7 @@ alloc: assert(s->pict_type == I_TYPE || (s->last_picture_ptr && s->last_picture_ptr->data[0])); - if(s->picture_structure!=PICT_FRAME){ + if(s->picture_structure!=PICT_FRAME && s->out_format != FMT_H264){ int i; for(i=0; i<4; i++){ if(s->picture_structure == PICT_BOTTOM_FIELD){ |