mirror of
https://git.ffmpeg.org/ffmpeg.git
synced 2024-12-27 18:02:11 +00:00
avcodec/ivi: Factor width dereference out of the loops in ivi_output_plane()
396078 -> 268468 dezicycles Signed-off-by: Michael Niedermayer <michael@niedermayer.cc>
This commit is contained in:
parent
82920bf494
commit
bf97d11b08
@ -914,13 +914,14 @@ static void ivi_output_plane(IVIPlaneDesc *plane, uint8_t *dst, ptrdiff_t dst_pi
|
||||
|
||||
for (y = 0; y < plane->height; y++) {
|
||||
int m = 0;
|
||||
for (x = 0; x < plane->width; x++) {
|
||||
int w = plane->width;
|
||||
for (x = 0; x < w; x++) {
|
||||
int t = src[x] + 128;
|
||||
dst[x] = t;
|
||||
m |= t;
|
||||
}
|
||||
if (m & ~255)
|
||||
for (x = 0; x < plane->width; x++)
|
||||
for (x = 0; x < w; x++)
|
||||
dst[x] = av_clip_uint8(src[x] + 128);
|
||||
src += pitch;
|
||||
dst += dst_pitch;
|
||||
|
Loading…
Reference in New Issue
Block a user