diff options
author | Jun Zhao <barryjzhao@tencent.com> | 2020-05-25 16:10:29 +0800 |
---|---|---|
committer | Jun Zhao <barryjzhao@tencent.com> | 2020-05-30 19:02:43 +0800 |
commit | 018cd437f898aa72eafcd44dba263dc1ec8fcf05 (patch) | |
tree | b9c0d5a1ea5116fa7d0ac167999251640af51f43 | |
parent | ff8329a73054bc6055a69860507fe45386e94798 (diff) | |
download | ffmpeg-018cd437f898aa72eafcd44dba263dc1ec8fcf05.tar.gz |
lavfi/aiir: Refine the pad/vpad related operation
move the pad/vpad related operation with more natural
coding style.
Signed-off-by: Jun Zhao <barryjzhao@tencent.com>
-rw-r--r-- | libavfilter/af_aiir.c | 10 |
1 files changed, 4 insertions, 6 deletions
diff --git a/libavfilter/af_aiir.c b/libavfilter/af_aiir.c index 503d5b9329..214c998348 100644 --- a/libavfilter/af_aiir.c +++ b/libavfilter/af_aiir.c @@ -1180,6 +1180,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"), @@ -1188,13 +1192,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; |