qtrle: use memcpy()
Signed-off-by: Paul B Mahol <onemda@gmail.com>
This commit is contained in:
parent
d5f547389b
commit
5c9d44d66b
@ -147,8 +147,8 @@ static inline void qtrle_decode_2n4bpp(QtrleContext *s, int row_ptr,
|
|||||||
}
|
}
|
||||||
CHECK_PIXEL_PTR(rle_code * num_pixels);
|
CHECK_PIXEL_PTR(rle_code * num_pixels);
|
||||||
while (rle_code--) {
|
while (rle_code--) {
|
||||||
for (i = 0; i < num_pixels; i++)
|
memcpy(&rgb[pixel_ptr], &pi, num_pixels);
|
||||||
rgb[pixel_ptr++] = pi[i];
|
pixel_ptr += num_pixels;
|
||||||
}
|
}
|
||||||
} else {
|
} else {
|
||||||
/* copy the same pixel directly to output 4 times */
|
/* copy the same pixel directly to output 4 times */
|
||||||
|
Loading…
x
Reference in New Issue
Block a user