vfilter/vf_yadif: fix request_frame after 0f9f24c9

Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
This commit is contained in:
Michael Niedermayer 2014-05-03 16:07:50 +02:00
parent 7ef01a7878
commit 681e008d06
1 changed files with 1 additions and 1 deletions

View File

@ -400,7 +400,7 @@ static int request_frame(AVFilterLink *link)
} else if (ret < 0) {
return ret;
}
} while (!yadif->cur);
} while (!yadif->prev);
return 0;
}