From 681e008d06d2241d50abe6316c908a184ddc5942 Mon Sep 17 00:00:00 2001 From: Michael Niedermayer Date: Sat, 3 May 2014 16:07:50 +0200 Subject: vfilter/vf_yadif: fix request_frame after 0f9f24c9 Signed-off-by: Michael Niedermayer --- libavfilter/vf_yadif.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/libavfilter/vf_yadif.c b/libavfilter/vf_yadif.c index 22a28be46d..70670c3eb9 100644 --- a/libavfilter/vf_yadif.c +++ b/libavfilter/vf_yadif.c @@ -400,7 +400,7 @@ static int request_frame(AVFilterLink *link) } else if (ret < 0) { return ret; } - } while (!yadif->cur); + } while (!yadif->prev); return 0; } -- cgit v1.2.3