mirror of
https://github.com/FFmpeg/FFmpeg.git
synced 2025-06-28 11:27:30 +08:00
Fail more gracefully for multichannel wavpack in another container.
Originally committed as revision 26253 to svn://svn.ffmpeg.org/ffmpeg/trunk
This commit is contained in:
@ -660,6 +660,10 @@ static av_cold int wavpack_decode_init(AVCodecContext *avctx)
|
|||||||
WavpackContext *s = avctx->priv_data;
|
WavpackContext *s = avctx->priv_data;
|
||||||
|
|
||||||
s->avctx = avctx;
|
s->avctx = avctx;
|
||||||
|
if (avctx->channels > 2) {
|
||||||
|
av_log(avctx, AV_LOG_ERROR, "Multichannel WavPack is not supported yet.\n");
|
||||||
|
return -1;
|
||||||
|
}
|
||||||
s->stereo = (avctx->channels == 2);
|
s->stereo = (avctx->channels == 2);
|
||||||
if(avctx->bits_per_coded_sample <= 16)
|
if(avctx->bits_per_coded_sample <= 16)
|
||||||
avctx->sample_fmt = AV_SAMPLE_FMT_S16;
|
avctx->sample_fmt = AV_SAMPLE_FMT_S16;
|
||||||
|
Reference in New Issue
Block a user