mirror of
https://github.com/xenia-project/FFmpeg.git
synced 2025-02-01 17:53:16 +00:00
msrledec: use memset()
Signed-off-by: Paul B Mahol <onemda@gmail.com>
This commit is contained in:
parent
6638738968
commit
e6e26b8a91
@ -211,8 +211,8 @@ static int msrle_decode_8_16_24_32(AVCodecContext *avctx, AVPicture *pic,
|
||||
switch(depth){
|
||||
case 8:
|
||||
pix[0] = bytestream2_get_byte(gb);
|
||||
for(i = 0; i < p1; i++)
|
||||
*output++ = pix[0];
|
||||
memset(output, pix[0], p1);
|
||||
output += p1;
|
||||
break;
|
||||
case 16:
|
||||
pix16 = bytestream2_get_le16(gb);
|
||||
|
Loading…
x
Reference in New Issue
Block a user