summaryrefslogtreecommitdiff
path: root/libavcodec/alacenc.c
diff options
context:
space:
mode:
authorJustin Ruggles <justin.ruggles@gmail.com>2011-12-07 12:04:21 -0500
committerJustin Ruggles <justin.ruggles@gmail.com>2012-01-03 13:15:23 -0500
commit149e1b0468ca8828fe198025c4662a957871bd02 (patch)
tree5e9aa4c5c6e6f0279b86312297cd9fa71922bedd /libavcodec/alacenc.c
parente76c7b856f7aab9d8e3a42f61142eda30fc0749e (diff)
alacenc: do not generate invalid multi-channel ALAC files
Diffstat (limited to 'libavcodec/alacenc.c')
-rw-r--r--libavcodec/alacenc.c8
1 files changed, 8 insertions, 0 deletions
diff --git a/libavcodec/alacenc.c b/libavcodec/alacenc.c
index 7e29a24c6f..e7977b3cf7 100644
--- a/libavcodec/alacenc.c
+++ b/libavcodec/alacenc.c
@@ -391,6 +391,14 @@ static av_cold int alac_encode_init(AVCodecContext *avctx)
return -1;
}
+ /* TODO: Correctly implement multi-channel ALAC.
+ It is similar to multi-channel AAC, in that it has a series of
+ single-channel (SCE), channel-pair (CPE), and LFE elements. */
+ if (avctx->channels > 2) {
+ av_log(avctx, AV_LOG_ERROR, "only mono or stereo input is currently supported\n");
+ return AVERROR_PATCHWELCOME;
+ }
+
// Set default compression level
if (avctx->compression_level == FF_COMPRESSION_DEFAULT)
s->compression_level = 2;