Commit f7f6f281 authored by Anton Khirnov's avatar Anton Khirnov Committed by Michael Niedermayer

vsrc_testsrc: switch to filter_frame

Signed-off-by: 's avatarMichael Niedermayer <michaelni@gmx.at>
parent c262e8cf
......@@ -170,7 +170,6 @@ static int request_frame(AVFilterLink *outlink)
{
TestSourceContext *test = outlink->src->priv;
AVFilterBufferRef *outpicref;
int ret = 0;
if (test->duration >= 0 &&
av_rescale_q(test->pts, test->time_base, AV_TIME_BASE_Q) >= test->duration)
......@@ -203,12 +202,7 @@ static int request_frame(AVFilterLink *outlink)
test->pts++;
test->nb_frame++;
if ((ret = ff_start_frame(outlink, outpicref)) < 0 ||
(ret = ff_draw_slice(outlink, 0, test->h, 1)) < 0 ||
(ret = ff_end_frame(outlink)) < 0)
return ret;
return 0;
return ff_filter_frame(outlink, outpicref);
}
#if CONFIG_COLOR_FILTER
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment