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

github.com/FFmpeg/FFmpeg.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMichael Niedermayer <michaelni@gmx.at>2015-05-14 02:15:20 +0300
committerMichael Niedermayer <michaelni@gmx.at>2015-05-14 02:16:49 +0300
commit50d878d9303dc50861747f79b13f41d40bcf5f63 (patch)
tree0752bdcc40840842423ff7c72ed447923d719b0d /libavcodec/msrledec.c
parent22f15f5735389e992ec9aed43b0680e75746b3a1 (diff)
avcodec/msrledec: Ask for sample that uses a branch with a unused byte
Finding out if this is correct or buggy is easiest with a sample Fixes: CID1297620 Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
Diffstat (limited to 'libavcodec/msrledec.c')
-rw-r--r--libavcodec/msrledec.c1
1 files changed, 1 insertions, 0 deletions
diff --git a/libavcodec/msrledec.c b/libavcodec/msrledec.c
index 9d05bc8fc5..3aa5e3ceb9 100644
--- a/libavcodec/msrledec.c
+++ b/libavcodec/msrledec.c
@@ -63,6 +63,7 @@ static int msrle_decode_pal4(AVCodecContext *avctx, AVPicture *pic,
stream_byte = bytestream2_get_byte(gb);
pixel_ptr += stream_byte;
stream_byte = bytestream2_get_byte(gb);
+ avpriv_request_sample(avctx, "Unused stream byte %X", stream_byte);
} else {
// copy pixels from encoded stream
odd_pixel = stream_byte & 1;