diff options
author | Michael Niedermayer <michaelni@gmx.at> | 2014-05-03 16:07:50 +0200 |
---|---|---|
committer | Michael Niedermayer <michaelni@gmx.at> | 2014-05-03 16:14:32 +0200 |
commit | 681e008d06d2241d50abe6316c908a184ddc5942 (patch) | |
tree | cfba47f256ccdb0da1f8c9a6e0017f3c4ee4d4ac | |
parent | 7ef01a7878149de43aa49e676a343ca67b24c6b2 (diff) | |
download | ffmpeg-681e008d06d2241d50abe6316c908a184ddc5942.tar.gz |
vfilter/vf_yadif: fix request_frame after 0f9f24c9
Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
-rw-r--r-- | libavfilter/vf_yadif.c | 2 |
1 files changed, 1 insertions, 1 deletions
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; } |