From 6a6a0620e2f8cf051131ac1cadbb0c43f1db8b03 Mon Sep 17 00:00:00 2001 From: Carl Eugen Hoyos Date: Sun, 28 Dec 2014 21:07:56 +0100 Subject: Fix R10k blue channel output. Makes R10k -> gbrp10 ffv1 -> R10k roundtrip bit-identical. --- libavcodec/r210dec.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'libavcodec/r210dec.c') diff --git a/libavcodec/r210dec.c b/libavcodec/r210dec.c index cbebf7c4c6..5dd2f0daae 100644 --- a/libavcodec/r210dec.c +++ b/libavcodec/r210dec.c @@ -70,7 +70,7 @@ static int decode_frame(AVCodecContext *avctx, void *data, int *got_frame, g = (pixel >> 4) & 0xffc0; r = (pixel >> 14) & 0xffc0; } else { - b = pixel << 4; + b = (pixel << 4) & 0xffc0; g = (pixel >> 6) & 0xffc0; r = (pixel >> 16) & 0xffc0; } -- cgit v1.2.3