[FFmpeg-cvslog] avfilter/af_channelsplit: check ff_insert_outpad() for failure
Paul B Mahol
git at videolan.org
Fri Aug 25 11:35:20 EEST 2017
ffmpeg | branch: master | Paul B Mahol <onemda at gmail.com> | Fri Aug 25 10:01:52 2017 +0200| [730734d4f3e0f976b50cae9f94588f55e1845473] | committer: Paul B Mahol
avfilter/af_channelsplit: check ff_insert_outpad() for failure
Signed-off-by: Paul B Mahol <onemda at gmail.com>
> http://git.videolan.org/gitweb.cgi/ffmpeg.git/?a=commit;h=730734d4f3e0f976b50cae9f94588f55e1845473
---
libavfilter/af_channelsplit.c | 4 +++-
1 file changed, 3 insertions(+), 1 deletion(-)
diff --git a/libavfilter/af_channelsplit.c b/libavfilter/af_channelsplit.c
index 248eaca7e0..8c6b00fe4f 100644
--- a/libavfilter/af_channelsplit.c
+++ b/libavfilter/af_channelsplit.c
@@ -71,7 +71,9 @@ static av_cold int init(AVFilterContext *ctx)
pad.type = AVMEDIA_TYPE_AUDIO;
pad.name = av_get_channel_name(channel);
- ff_insert_outpad(ctx, i, &pad);
+ if ((ret = ff_insert_outpad(ctx, i, &pad)) < 0) {
+ return ret;
+ }
}
fail:
More information about the ffmpeg-cvslog
mailing list