Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/mpc-hc/FFmpeg.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMichael Niedermayer <michaelni@gmx.at>2015-03-24 17:53:24 +0300
committerMichael Niedermayer <michaelni@gmx.at>2015-03-24 18:07:57 +0300
commitc20eab5c850f535b0892db6c6166faffe9683979 (patch)
tree97cbdd814c598235ac243989c726547159ad1d36 /libavcodec
parentf7e1367f58263593e6cee3c282f7277d7ee9d553 (diff)
avcodec/msrledec: More verbose error message
Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
Diffstat (limited to 'libavcodec')
-rw-r--r--libavcodec/msrledec.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/libavcodec/msrledec.c b/libavcodec/msrledec.c
index deb6f86523..c738198f2c 100644
--- a/libavcodec/msrledec.c
+++ b/libavcodec/msrledec.c
@@ -97,7 +97,7 @@ static int msrle_decode_pal4(AVCodecContext *avctx, AVPicture *pic,
// decode a run of data
if (pixel_ptr + rle_code > avctx->width + 1) {
av_log(avctx, AV_LOG_ERROR,
- "MS RLE: frame ptr just went out of bounds (run)\n");
+ "MS RLE: frame ptr just went out of bounds (run) %d %d %d\n", pixel_ptr, rle_code, avctx->width);
return AVERROR_INVALIDDATA;
}
stream_byte = bytestream2_get_byte(gb);