From 23a211cbba0b7c9ee694040031b2e5da1be54a00 Mon Sep 17 00:00:00 2001 From: Anton Khirnov Date: Sat, 26 Oct 2013 22:46:48 +0200 Subject: lavc: change all decoders to behave consistently with AV_EF_CRCCHECK. Just crccheck prints a warning, crccheck+explode returns an error. Also document this behavior. --- libavcodec/alsdec.c | 2 ++ 1 file changed, 2 insertions(+) (limited to 'libavcodec/alsdec.c') diff --git a/libavcodec/alsdec.c b/libavcodec/alsdec.c index d4f103bd60..782a1b8b80 100644 --- a/libavcodec/alsdec.c +++ b/libavcodec/alsdec.c @@ -1545,6 +1545,8 @@ static int decode_frame(AVCodecContext *avctx, void *data, int *got_frame_ptr, if (ctx->cur_frame_length != sconf->frame_length && ctx->crc_org != ctx->crc) { av_log(avctx, AV_LOG_ERROR, "CRC error.\n"); + if (avctx->err_recognition & AV_EF_EXPLODE) + return AVERROR_INVALIDDATA; } } -- cgit v1.2.3