Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/FFmpeg/FFmpeg.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'libavformat/cafenc.c')
-rw-r--r--libavformat/cafenc.c5
1 files changed, 5 insertions, 0 deletions
diff --git a/libavformat/cafenc.c b/libavformat/cafenc.c
index 211b046563..0f7c4ebbb3 100644
--- a/libavformat/cafenc.c
+++ b/libavformat/cafenc.c
@@ -123,6 +123,11 @@ static int caf_write_header(AVFormatContext *s)
return AVERROR_PATCHWELCOME;
}
+ if (par->codec_id == AV_CODEC_ID_OPUS && par->channels > 2) {
+ av_log(s, AV_LOG_ERROR, "Only mono and stereo are supported for Opus\n");
+ return AVERROR_INVALIDDATA;
+ }
+
if (!codec_tag) {
av_log(s, AV_LOG_ERROR, "unsupported codec\n");
return AVERROR_INVALIDDATA;