Commit 7bbd0603 authored by Paul B Mahol's avatar Paul B Mahol

avcodec/adpcm: increase max channels for ADPCM PSX to 8

Signed-off-by: 's avatarPaul B Mahol <onemda@gmail.com>
parent bb1d3f10
......@@ -107,6 +107,9 @@ static av_cold int adpcm_decode_init(AVCodecContext * avctx)
case AV_CODEC_ID_ADPCM_EA_XAS:
max_channels = 6;
break;
case AV_CODEC_ID_ADPCM_PSX:
max_channels = 8;
break;
case AV_CODEC_ID_ADPCM_THP:
case AV_CODEC_ID_ADPCM_THP_LE:
max_channels = 14;
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment