[FFmpeg-cvslog] r32106 - trunk/libswscale/swscale-test.c

ramiro subversion
Thu Sep 9 01:36:02 CEST 2010


Author: ramiro
Date: Thu Sep  9 01:36:02 2010
New Revision: 32106

Log:
av_fill_image_linesizes -> av_image_fill_linesizes

Modified:
   trunk/libswscale/swscale-test.c

Modified: trunk/libswscale/swscale-test.c
==============================================================================
--- trunk/libswscale/swscale-test.c	Wed Sep  8 22:10:54 2010	(r32105)
+++ trunk/libswscale/swscale-test.c	Thu Sep  9 01:36:02 2010	(r32106)
@@ -87,7 +87,7 @@ static int doTest(uint8_t *ref[4], int r
     uint32_t crc = 0;
     int res = 0;
 
-    av_fill_image_linesizes(dstStride, dstFormat, dstW);
+    av_image_fill_linesizes(dstStride, dstFormat, dstW);
     for (i=0; i<4; i++) {
         /* Image buffers passed into libswscale can be allocated any way you
          * prefer, as long as they're aligned enough for the architecture, and
@@ -205,7 +205,7 @@ static void selfTest(uint8_t *ref[4], in
                 uint8_t *src[4] = {0};
                 int srcStride[4];
                 int p;
-                av_fill_image_linesizes(srcStride, srcFormat, srcW);
+                av_image_fill_linesizes(srcStride, srcFormat, srcW);
                 for (p = 0; p < 4; p++) {
                     if (srcStride[p])
                         src[p] = av_mallocz(srcStride[p]*srcH+16);



More information about the ffmpeg-cvslog mailing list