summaryrefslogtreecommitdiffstats
path: root/libavcodec
diff options
context:
space:
mode:
authorMichael Niedermayer <michael@niedermayer.cc>2019-10-17 23:22:22 +0200
committerMichael Niedermayer <michael@niedermayer.cc>2019-11-09 16:02:43 +0100
commitdf498cf544fd4690e5a246925e4de1125b57795b (patch)
tree46ea083abce3eb8f9627a15352740552e8ae40e7 /libavcodec
parent1d1719a44dd43b2d9d8ccd26e3b2854e675a7bd7 (diff)
downloadffmpeg-streaming-df498cf544fd4690e5a246925e4de1125b57795b.zip
ffmpeg-streaming-df498cf544fd4690e5a246925e4de1125b57795b.tar.gz
avcodec/ffv1dec: Use a different error message for the slice level CRC
This way they can be told apart easily Signed-off-by: Michael Niedermayer <michael@niedermayer.cc>
Diffstat (limited to 'libavcodec')
-rw-r--r--libavcodec/ffv1dec.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/libavcodec/ffv1dec.c b/libavcodec/ffv1dec.c
index 261e0cf..e465ed4 100644
--- a/libavcodec/ffv1dec.c
+++ b/libavcodec/ffv1dec.c
@@ -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) {
OpenPOWER on IntegriCloud