X-Git-Url: https://git.sesse.net/?a=blobdiff_plain;f=libavfilter%2Fvf_aspect.c;h=7869d228eb176c5a05e2e78905453e7f6b2dca89;hb=c6a216771fa2923f946f09952ff004debdecf673;hp=76abbca7b5585171c3821deb23ecee64e5af08da;hpb=abf91f7fee326fae0d70ca1a481c51e8eab1dd5e;p=ffmpeg diff --git a/libavfilter/vf_aspect.c b/libavfilter/vf_aspect.c index 76abbca7b55..7869d228eb1 100644 --- a/libavfilter/vf_aspect.c +++ b/libavfilter/vf_aspect.c @@ -80,13 +80,12 @@ static av_cold int init(AVFilterContext *ctx, const char *args, const AVClass *c return 0; } -static int start_frame(AVFilterLink *link, AVFilterBufferRef *picref) +static int filter_frame(AVFilterLink *link, AVFilterBufferRef *frame) { AspectContext *aspect = link->dst->priv; - picref->video->sample_aspect_ratio = aspect->ratio; - link->cur_buf = NULL; - return ff_start_frame(link->dst->outputs[0], picref); + frame->video->sample_aspect_ratio = aspect->ratio; + return ff_filter_frame(link->dst->outputs[0], frame); } static av_cold void uninit(AVFilterContext *ctx) @@ -129,8 +128,7 @@ static const AVFilterPad avfilter_vf_setdar_inputs[] = { .type = AVMEDIA_TYPE_VIDEO, .config_props = setdar_config_props, .get_video_buffer = ff_null_get_video_buffer, - .start_frame = start_frame, - .end_frame = ff_null_end_frame + .filter_frame = filter_frame, }, { NULL } }; @@ -185,8 +183,7 @@ static const AVFilterPad avfilter_vf_setsar_inputs[] = { .type = AVMEDIA_TYPE_VIDEO, .config_props = setsar_config_props, .get_video_buffer = ff_null_get_video_buffer, - .start_frame = start_frame, - .end_frame = ff_null_end_frame + .filter_frame = filter_frame, }, { NULL } };