]> git.sesse.net Git - ffmpeg/commitdiff
avcodec/ffv1dec: Use a different error message for the slice level CRC
authorMichael Niedermayer <michael@niedermayer.cc>
Thu, 17 Oct 2019 21:22:22 +0000 (23:22 +0200)
committerMichael Niedermayer <michael@niedermayer.cc>
Sat, 9 Nov 2019 15:02:43 +0000 (16:02 +0100)
This way they can be told apart easily

Signed-off-by: Michael Niedermayer <michael@niedermayer.cc>
libavcodec/ffv1dec.c

index 261e0cf70c239a966206c6bc6b2a2bea48c05631..e465ed49d727626efd179ac47407f19de3b0e172 100644 (file)
@@ -906,7 +906,7 @@ static int decode_frame(AVCodecContext *avctx, void *data, int *got_frame, AVPac
             unsigned crc = av_crc(av_crc_get_table(AV_CRC_32_IEEE), 0, buf_p, v);
             if (crc) {
                 int64_t ts = avpkt->pts != AV_NOPTS_VALUE ? avpkt->pts : avpkt->dts;
-                av_log(f->avctx, AV_LOG_ERROR, "CRC mismatch %X!", crc);
+                av_log(f->avctx, AV_LOG_ERROR, "slice CRC mismatch %X!", crc);
                 if (ts != AV_NOPTS_VALUE && avctx->pkt_timebase.num) {
                     av_log(f->avctx, AV_LOG_ERROR, "at %f seconds\n", ts*av_q2d(avctx->pkt_timebase));
                 } else if (ts != AV_NOPTS_VALUE) {