Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/FFmpeg/FFmpeg.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'libavcodec/h263dec.c')
-rw-r--r--libavcodec/h263dec.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/libavcodec/h263dec.c b/libavcodec/h263dec.c
index ca7e5ebe9b..628546bb86 100644
--- a/libavcodec/h263dec.c
+++ b/libavcodec/h263dec.c
@@ -699,8 +699,8 @@ frame_end:
int x, y, p;
av_frame_make_writable(pict);
for (p=0; p<3; p++) {
- int w = FF_CEIL_RSHIFT(pict-> width, !!p);
- int h = FF_CEIL_RSHIFT(pict->height, !!p);
+ int w = AV_CEIL_RSHIFT(pict-> width, !!p);
+ int h = AV_CEIL_RSHIFT(pict->height, !!p);
int linesize = pict->linesize[p];
for (y=0; y<(h>>1); y++)
for (x=0; x<w; x++)