[FFmpeg-cvslog] vsrc_testsrc: switch to filter_frame
Anton Khirnov
git at videolan.org
Wed Nov 28 22:03:28 CET 2012
ffmpeg | branch: master | Anton Khirnov <anton at khirnov.net> | Wed Nov 28 21:53:56 2012 +0100| [f7f6f281dd8e2b2e71ca79b397826e08c2d32033] | committer: Michael Niedermayer
vsrc_testsrc: switch to filter_frame
Signed-off-by: Michael Niedermayer <michaelni at gmx.at>
> http://git.videolan.org/gitweb.cgi/ffmpeg.git/?a=commit;h=f7f6f281dd8e2b2e71ca79b397826e08c2d32033
---
libavfilter/vsrc_testsrc.c | 8 +-------
1 file changed, 1 insertion(+), 7 deletions(-)
diff --git a/libavfilter/vsrc_testsrc.c b/libavfilter/vsrc_testsrc.c
index 6ba55a7..8642e1b 100644
--- a/libavfilter/vsrc_testsrc.c
+++ b/libavfilter/vsrc_testsrc.c
@@ -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
More information about the ffmpeg-cvslog
mailing list