From fba95d3c233260a6e2cc6db1f82fd2118545f79b Mon Sep 17 00:00:00 2001 From: Vitor Sessak Date: Fri, 15 Feb 2008 19:47:14 +0000 Subject: [PATCH] My commit in r11942 broke compilation. This fixes it. Originally committed as revision 11959 to svn://svn.ffmpeg.org/ffmpeg/trunk --- libavcodec/imgconvert.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/libavcodec/imgconvert.c b/libavcodec/imgconvert.c index 04bcc272b9..a6a5d6f0fc 100644 --- a/libavcodec/imgconvert.c +++ b/libavcodec/imgconvert.c @@ -608,10 +608,10 @@ int avpicture_fill(AVPicture *picture, uint8_t *ptr, if(avcodec_check_dimensions(NULL, width, height)) return -1; - if (avpicture_fill_linesize(picture, pix_fmt, width)) + if (ff_fill_linesize(picture, pix_fmt, width)) 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,