]> git.sesse.net Git - ffmpeg/commitdiff
Pass field order flag to libx264
authorMarco Gittler <marco@gitma.de>
Wed, 26 Jan 2011 02:07:34 +0000 (18:07 -0800)
committerJason Garrett-Glaser <jason@x264.com>
Wed, 26 Jan 2011 02:07:34 +0000 (18:07 -0800)
Signed-off-by: Jason Garrett-Glaser <jason@x264.com>
libavcodec/libx264.c

index 0dad5cd567710ca2ffb76e16ab756c39fbb2c32d..85ef38c6b0752ed199339ed72d619b46f0243452 100644 (file)
@@ -105,6 +105,10 @@ static int X264_frame(AVCodecContext *ctx, uint8_t *buf,
             frame->pict_type == FF_P_TYPE ? X264_TYPE_P :
             frame->pict_type == FF_B_TYPE ? X264_TYPE_B :
                                             X264_TYPE_AUTO;
+        if (x4->params.b_tff != frame->top_field_first) {
+            x4->params.b_tff = frame->top_field_first;
+            x264_encoder_reconfig(x4->enc, &x4->params);
+        }
     }
 
     do {