Commit b99d3613 authored by Michael Niedermayer's avatar Michael Niedermayer

avcodec/h263dec: use FF_CEIL_RSHIFT()

Signed-off-by: 's avatarMichael Niedermayer <michaelni@gmx.at>
parent 9a271a93
......@@ -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++)
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment