You've already forked FFmpeg
mirror of
https://github.com/FFmpeg/FFmpeg.git
synced 2025-08-15 14:13:16 +02:00
vsrc_testsrc: avoid an unnecessary avfilter_ref_buffer().
This commit is contained in:
@@ -143,10 +143,9 @@ static int request_frame(AVFilterLink *outlink)
|
||||
test->nb_frame++;
|
||||
test->fill_picture_fn(outlink->src, picref);
|
||||
|
||||
ff_start_frame(outlink, avfilter_ref_buffer(picref, ~0));
|
||||
ff_draw_slice(outlink, 0, picref->video->h, 1);
|
||||
ff_start_frame(outlink, picref);
|
||||
ff_draw_slice(outlink, 0, test->h, 1);
|
||||
ff_end_frame(outlink);
|
||||
avfilter_unref_buffer(picref);
|
||||
|
||||
return 0;
|
||||
}
|
||||
|
Reference in New Issue
Block a user