OSDN Git Service

yadif must copy buffer properties like aspect for second frame as well
authorJoakim Plate <elupus@ecce.se>
Thu, 14 Jul 2011 20:31:37 +0000 (22:31 +0200)
committerJoakim Plate <elupus@ecce.se>
Thu, 28 Jul 2011 01:47:53 +0000 (03:47 +0200)
libavfilter/vf_yadif.c

index 56e4489..6fc9f47 100644 (file)
@@ -201,9 +201,12 @@ static void return_frame(AVFilterContext *ctx, int is_second)
         tff = yadif->parity^1;
     }
 
-    if (is_second)
+    if (is_second) {
         yadif->out = avfilter_get_video_buffer(link, AV_PERM_WRITE | AV_PERM_PRESERVE |
                                                AV_PERM_REUSE, link->w, link->h);
+        avfilter_copy_buffer_ref_props(yadif->out, yadif->cur);
+        yadif->out->video->interlaced = 0;
+    }
 
     if (!yadif->csp)
         yadif->csp = &av_pix_fmt_descriptors[link->format];