[FFmpeg-cvslog] r11960 - trunk/libavcodec/imgconvert.c

vitor subversion
Fri Feb 15 21:19:46 CET 2008


Author: vitor
Date: Fri Feb 15 21:19:46 2008
New Revision: 11960

Log:
This should not be part of the public API

Modified:
   trunk/libavcodec/imgconvert.c

Modified: trunk/libavcodec/imgconvert.c
==============================================================================
--- trunk/libavcodec/imgconvert.c	(original)
+++ trunk/libavcodec/imgconvert.c	Fri Feb 15 21:19:46 2008
@@ -841,7 +841,7 @@ void ff_img_copy_plane(uint8_t *dst, int
     }
 }
 
-int av_get_plane_bytewidth(enum PixelFormat pix_fmt, int width, int plane)
+int ff_get_plane_bytewidth(enum PixelFormat pix_fmt, int width, int plane)
 {
     int bits;
     const PixFmtInfo *pf = &pix_fmt_info[pix_fmt];
@@ -894,7 +894,7 @@ void av_picture_copy(AVPicture *dst, con
     case FF_PIXEL_PLANAR:
         for(i = 0; i < pf->nb_channels; i++) {
             int w, h;
-            int bwidth = av_get_plane_bytewidth(pix_fmt, width, i);
+            int bwidth = ff_get_plane_bytewidth(pix_fmt, width, i);
             w = width;
             h = height;
             if (i == 1 || i == 2) {




More information about the ffmpeg-cvslog mailing list