1
0
mirror of https://github.com/FFmpeg/FFmpeg.git synced 2024-12-23 12:43:46 +02:00

dpxenc: dont shift into the sign bit.

Fixes IOC warnings

Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
This commit is contained in:
Michael Niedermayer 2013-05-15 12:15:21 +02:00
parent e003413fe9
commit a9cadacdd9

View File

@ -114,11 +114,11 @@ static void encode_gbrp10(AVCodecContext *avctx, const AVPicture *pic, uint8_t *
if (s->big_endian) { if (s->big_endian) {
value = (AV_RB16(src[0] + 2*x) << 12) value = (AV_RB16(src[0] + 2*x) << 12)
| (AV_RB16(src[1] + 2*x) << 2) | (AV_RB16(src[1] + 2*x) << 2)
| (AV_RB16(src[2] + 2*x) << 22); | ((unsigned)AV_RB16(src[2] + 2*x) << 22);
} else { } else {
value = (AV_RL16(src[0] + 2*x) << 12) value = (AV_RL16(src[0] + 2*x) << 12)
| (AV_RL16(src[1] + 2*x) << 2) | (AV_RL16(src[1] + 2*x) << 2)
| (AV_RL16(src[2] + 2*x) << 22); | ((unsigned)AV_RL16(src[2] + 2*x) << 22);
} }
write32(dst, value); write32(dst, value);
dst += 4; dst += 4;