Encoding alac with more than two channels is not supported.
This commit is contained in:
parent
f1b3f33d48
commit
007f773942
@ -389,6 +389,11 @@ static av_cold int alac_encode_init(AVCodecContext *avctx)
|
||||
return -1;
|
||||
}
|
||||
|
||||
if(avctx->channels > 2) {
|
||||
av_log(avctx, AV_LOG_ERROR, "channels > 2 not supported\n");
|
||||
return AVERROR_PATCHWELCOME;
|
||||
}
|
||||
|
||||
// Set default compression level
|
||||
if(avctx->compression_level == FF_COMPRESSION_DEFAULT)
|
||||
s->compression_level = 2;
|
||||
|
Loading…
Reference in New Issue
Block a user