[FFmpeg-cvslog] ttadec: unbreak playback of matroska files
Paul B Mahol
git at videolan.org
Fri Mar 9 01:49:26 CET 2012
ffmpeg | branch: master | Paul B Mahol <onemda at gmail.com> | Tue Mar 6 20:26:48 2012 +0000| [ea1d64ab1066145ba919b79a2080f3091d562217] | committer: Ronald S. Bultje
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 at gmail.com>
Signed-off-by: Ronald S. Bultje <rsbultje at gmail.com>
> http://git.videolan.org/gitweb.cgi/ffmpeg.git/?a=commit;h=ea1d64ab1066145ba919b79a2080f3091d562217
---
libavcodec/tta.c | 3 +--
1 files changed, 1 insertions(+), 2 deletions(-)
diff --git a/libavcodec/tta.c b/libavcodec/tta.c
index 269ba86..ad80246 100644
--- a/libavcodec/tta.c
+++ b/libavcodec/tta.c
@@ -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 */
More information about the ffmpeg-cvslog
mailing list