[FFmpeg-cvslog] ffmpeg: check if number of input and output channels are valid.
Oana Stratulat
git at videolan.org
Fri Jan 6 02:44:18 CET 2012
ffmpeg | branch: master | Oana Stratulat <oanaandreeastratulat at gmail.com> | Fri Jan 6 02:02:50 2012 +0100| [ee4d43ef7a89626de8eaf02bec5a7ca44d96edbf] | committer: Clément Bœsch
ffmpeg: check if number of input and output channels are valid.
Fix Ticket887.
> http://git.videolan.org/gitweb.cgi/ffmpeg.git/?a=commit;h=ee4d43ef7a89626de8eaf02bec5a7ca44d96edbf
---
ffmpeg.c | 10 ++++++++--
1 files changed, 8 insertions(+), 2 deletions(-)
diff --git a/ffmpeg.c b/ffmpeg.c
index e23ea65..5bef906 100644
--- a/ffmpeg.c
+++ b/ffmpeg.c
@@ -1096,8 +1096,14 @@ need_realloc:
av_opt_set_int(ost->swr, "icl", av_get_default_channel_layout(ost->audio_channels_mapped), 0);
av_opt_set_int(ost->swr, "uch", ost->audio_channels_mapped, 0);
}
- av_opt_set_int(ost->swr, "ich", dec->channels, 0);
- av_opt_set_int(ost->swr, "och", enc->channels, 0);
+ if (av_opt_set_int(ost->swr, "ich", dec->channels, 0) < 0) {
+ av_log(NULL, AV_LOG_FATAL, "Unsupported number of input channels\n");
+ exit_program(1);
+ }
+ if (av_opt_set_int(ost->swr, "och", enc->channels, 0) < 0) {
+ av_log(NULL, AV_LOG_FATAL, "Unsupported number of output channels\n");
+ exit_program(1);
+ }
if(audio_sync_method>1) av_opt_set_int(ost->swr, "flags", SWR_FLAG_RESAMPLE, 0);
if(ost->swr && swr_init(ost->swr) < 0){
av_log(NULL, AV_LOG_FATAL, "swr_init() failed\n");
More information about the ffmpeg-cvslog
mailing list