mirror of
https://github.com/FFmpeg/FFmpeg.git
synced 2024-12-23 12:43:46 +02:00
Skip 0x0000 frame footer in EA ADPCM decoder.
Originally committed as revision 18706 to svn://svn.ffmpeg.org/ffmpeg/trunk
This commit is contained in:
parent
b78c8e2103
commit
8a06cb14f9
@ -1251,6 +1251,10 @@ static int adpcm_decode_frame(AVCodecContext *avctx,
|
||||
*samples++ = (unsigned short)current_right_sample;
|
||||
}
|
||||
}
|
||||
|
||||
if (src - buf == buf_size - 2)
|
||||
src += 2; // Skip terminating 0x0000
|
||||
|
||||
break;
|
||||
case CODEC_ID_ADPCM_EA_MAXIS_XA:
|
||||
for(channel = 0; channel < avctx->channels; channel++) {
|
||||
|
Loading…
Reference in New Issue
Block a user