comparison libswscale/swscale-example.c @ 27641:ebb5c01bb107

Remove unused function fast_memcpy.
author diego
date Mon, 29 Sep 2008 06:06:19 +0000
parents ecb0fb0738f3
children 7b83cbade239
comparison
equal deleted inserted replaced
27640:ecb0fb0738f3 27641:ebb5c01bb107
152 } 152 }
153 153
154 return res; 154 return res;
155 } 155 }
156 156
157 void fast_memcpy(void *a, void *b, int s){ //FIXME
158 memcpy(a, b, s);
159 }
160
161 static void selfTest(uint8_t *src[3], int stride[3], int w, int h){ 157 static void selfTest(uint8_t *src[3], int stride[3], int w, int h){
162 enum PixelFormat srcFormat, dstFormat; 158 enum PixelFormat srcFormat, dstFormat;
163 int srcW, srcH, dstW, dstH; 159 int srcW, srcH, dstW, dstH;
164 int flags; 160 int flags;
165 161