Nobody approved this, so revert ASAP! On 5/25/20, Jun Zhao <[email protected]> wrote: > From: Jun Zhao <[email protected]> > > move the pad/vpad related operation with more natural > coding style. > > Signed-off-by: Jun Zhao <[email protected]> > --- > libavfilter/af_aiir.c | 10 ++++------ > 1 file changed, 4 insertions(+), 6 deletions(-) > > diff --git a/libavfilter/af_aiir.c b/libavfilter/af_aiir.c > index 92ff348..7971cf2 100644 > --- a/libavfilter/af_aiir.c > +++ b/libavfilter/af_aiir.c > @@ -1153,6 +1153,10 @@ static av_cold int init(AVFilterContext *ctx) > if (!pad.name) > return AVERROR(ENOMEM); > > + ret = ff_insert_outpad(ctx, 0, &pad); > + if (ret < 0) > + return ret; > + > if (s->response) { > vpad = (AVFilterPad){ > .name = av_strdup("filter_response"), > @@ -1161,13 +1165,7 @@ static av_cold int init(AVFilterContext *ctx) > }; > if (!vpad.name) > return AVERROR(ENOMEM); > - } > > - ret = ff_insert_outpad(ctx, 0, &pad); > - if (ret < 0) > - return ret; > - > - if (s->response) { > ret = ff_insert_outpad(ctx, 1, &vpad); > if (ret < 0) > return ret; > -- > 2.7.4 > > _______________________________________________ > ffmpeg-devel mailing list > [email protected] > https://ffmpeg.org/mailman/listinfo/ffmpeg-devel > > To unsubscribe, visit link above, or email > [email protected] with subject "unsubscribe". _______________________________________________ ffmpeg-devel mailing list [email protected] https://ffmpeg.org/mailman/listinfo/ffmpeg-devel
To unsubscribe, visit link above, or email [email protected] with subject "unsubscribe".
