mirror of
https://github.com/FFmpeg/FFmpeg.git
synced 2024-11-26 19:01:44 +02:00
ttadec: unbreak playback of matroska files
Matroska demuxer needs to recreate tta header, so just display crc error without aborting. Signed-off-by: Paul B Mahol <onemda@gmail.com> Signed-off-by: Ronald S. Bultje <rsbultje@gmail.com>
This commit is contained in:
parent
12623a8026
commit
ea1d64ab10
@ -208,8 +208,7 @@ static av_cold int tta_decode_init(AVCodecContext * avctx)
|
||||
{
|
||||
if (avctx->err_recognition & AV_EF_CRCCHECK) {
|
||||
s->crc_table = av_crc_get_table(AV_CRC_32_IEEE_LE);
|
||||
if (tta_check_crc(s, avctx->extradata, 18))
|
||||
return AVERROR_INVALIDDATA;
|
||||
tta_check_crc(s, avctx->extradata, 18);
|
||||
}
|
||||
|
||||
/* signature */
|
||||
|
Loading…
Reference in New Issue
Block a user