You've already forked FFmpeg
mirror of
https://github.com/FFmpeg/FFmpeg.git
synced 2025-07-16 22:42:38 +02:00
avcodec/h263dec: use FF_CEIL_RSHIFT()
Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
This commit is contained in:
@ -762,8 +762,8 @@ intrax8_decoded:
|
|||||||
int x, y, p;
|
int x, y, p;
|
||||||
av_frame_make_writable(pict);
|
av_frame_make_writable(pict);
|
||||||
for (p=0; p<3; p++) {
|
for (p=0; p<3; p++) {
|
||||||
int w = -((-pict-> width)>>!!p);
|
int w = FF_CEIL_RSHIFT(pict-> width, !!p);
|
||||||
int h = -((-pict->height)>>!!p);
|
int h = FF_CEIL_RSHIFT(pict->height, !!p);
|
||||||
int linesize = pict->linesize[p];
|
int linesize = pict->linesize[p];
|
||||||
for (y=0; y<(h>>1); y++)
|
for (y=0; y<(h>>1); y++)
|
||||||
for (x=0; x<w; x++)
|
for (x=0; x<w; x++)
|
||||||
|
Reference in New Issue
Block a user