]> git.sesse.net Git - ffmpeg/commitdiff
In yadif filter, use current frame when previous is missing,
authorBaptiste Coudurier <baptiste.coudurier@gmail.com>
Sun, 26 Sep 2010 00:56:26 +0000 (00:56 +0000)
committerBaptiste Coudurier <baptiste.coudurier@gmail.com>
Sun, 26 Sep 2010 00:56:26 +0000 (00:56 +0000)
better results for the first frame

Originally committed as revision 25202 to svn://svn.ffmpeg.org/ffmpeg/trunk

libavfilter/vf_yadif.c

index 96cf73a3772f1919a72e99fd2326ed9193970398..fe4cb9601ae0b7156c74ad6db1bf27eec95732f9 100644 (file)
@@ -197,13 +197,12 @@ static void start_frame(AVFilterLink *link, AVFilterBufferRef *picref)
     yadif->cur  = yadif->next;
     yadif->next = picref;
 
-    if (!yadif->prev)
-        yadif->prev = avfilter_get_video_buffer(link, AV_PERM_WRITE | AV_PERM_PRESERVE |
-                                                AV_PERM_REUSE, link->w, link->h);
-
     if(!yadif->cur)
         return;
 
+    if (!yadif->prev)
+        yadif->prev = avfilter_ref_buffer(yadif->cur, AV_PERM_READ);
+
     yadif->out = avfilter_get_video_buffer(ctx->outputs[0], AV_PERM_WRITE | AV_PERM_PRESERVE |
                                        AV_PERM_REUSE, link->w, link->h);