mirror of
https://github.com/librempeg/librempeg
synced 2024-11-23 11:39:47 +00:00
lavc/r210enc: Fix undefined behaviour encoding r10k.
Fixes the following ubsan error: libavcodec/r210enc.c:69:28: runtime error: left shift of 522 by 22 places cannot be represented in type 'int' Fixes ticket #7982.
This commit is contained in:
parent
ac457a3bc5
commit
2828f5b0d8
@ -60,9 +60,9 @@ static int encode_frame(AVCodecContext *avctx, AVPacket *pkt,
|
||||
uint16_t *srcb = (uint16_t *)srcb_line;
|
||||
for (j = 0; j < avctx->width; j++) {
|
||||
uint32_t pixel;
|
||||
uint16_t r = *srcr++;
|
||||
uint16_t g = *srcg++;
|
||||
uint16_t b = *srcb++;
|
||||
unsigned r = *srcr++;
|
||||
unsigned g = *srcg++;
|
||||
unsigned b = *srcb++;
|
||||
if (avctx->codec_id == AV_CODEC_ID_R210)
|
||||
pixel = (r << 20) | (g << 10) | b;
|
||||
else
|
||||
|
Loading…
Reference in New Issue
Block a user