You've already forked FFmpeg
mirror of
https://github.com/FFmpeg/FFmpeg.git
synced 2025-08-10 06:10:52 +02:00
avcodec/adpcm_psx: ignore unknown flag bits
As per documentation. Signed-off-by: Zane van Iperen <zane@zanevaniperen.com>
This commit is contained in:
@@ -2002,7 +2002,7 @@ static int adpcm_decode_frame(AVCodecContext *avctx, void *data,
|
||||
filter = filter >> 4;
|
||||
if (filter >= FF_ARRAY_ELEMS(xa_adpcm_table))
|
||||
return AVERROR_INVALIDDATA;
|
||||
flag = bytestream2_get_byteu(&gb);
|
||||
flag = bytestream2_get_byteu(&gb) & 0x7;
|
||||
|
||||
/* Decode 28 samples. */
|
||||
for (n = 0; n < 28; n++) {
|
||||
|
Reference in New Issue
Block a user