Commit 66b9be11 authored by vitor's avatar vitor

My commit in r11942 broke compilation.

This fixes it.


git-svn-id: file:///var/local/repositories/ffmpeg/trunk@11959 9553f0bf-9b14-0410-a0b8-cfaf0461ba5b
parent a914ac58
...@@ -608,10 +608,10 @@ int avpicture_fill(AVPicture *picture, uint8_t *ptr, ...@@ -608,10 +608,10 @@ int avpicture_fill(AVPicture *picture, uint8_t *ptr,
if(avcodec_check_dimensions(NULL, width, height)) if(avcodec_check_dimensions(NULL, width, height))
return -1; return -1;
if (avpicture_fill_linesize(picture, pix_fmt, width)) if (ff_fill_linesize(picture, pix_fmt, width))
return -1; return -1;
return avpicture_fill_pointer(picture, ptr, pix_fmt, height); return ff_fill_pointer(picture, ptr, pix_fmt, height);
} }
int avpicture_layout(const AVPicture* src, int pix_fmt, int width, int height, int avpicture_layout(const AVPicture* src, int pix_fmt, int width, int height,
......
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