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:
parent
e003413fe9
commit
a9cadacdd9
@ -114,11 +114,11 @@ static void encode_gbrp10(AVCodecContext *avctx, const AVPicture *pic, uint8_t *
|
||||
if (s->big_endian) {
|
||||
value = (AV_RB16(src[0] + 2*x) << 12)
|
||||
| (AV_RB16(src[1] + 2*x) << 2)
|
||||
| (AV_RB16(src[2] + 2*x) << 22);
|
||||
| ((unsigned)AV_RB16(src[2] + 2*x) << 22);
|
||||
} else {
|
||||
value = (AV_RL16(src[0] + 2*x) << 12)
|
||||
| (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);
|
||||
dst += 4;
|
||||
|
Loading…
Reference in New Issue
Block a user