1
0
mirror of https://github.com/FFmpeg/FFmpeg.git synced 2024-12-23 12:43:46 +02:00

avcodec/h263dec: use FF_CEIL_RSHIFT()

Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
This commit is contained in:
Michael Niedermayer 2013-08-24 04:09:43 +02:00
parent 9a271a9368
commit b99d3613cf

View File

@ -762,8 +762,8 @@ intrax8_decoded:
int x, y, p;
av_frame_make_writable(pict);
for (p=0; p<3; p++) {
int w = -((-pict-> width)>>!!p);
int h = -((-pict->height)>>!!p);
int w = FF_CEIL_RSHIFT(pict-> width, !!p);
int h = FF_CEIL_RSHIFT(pict->height, !!p);
int linesize = pict->linesize[p];
for (y=0; y<(h>>1); y++)
for (x=0; x<w; x++)