diff options
author | Diego Biurrun <diego@biurrun.de> | 2008-09-29 06:06:19 +0000 |
---|---|---|
committer | Diego Biurrun <diego@biurrun.de> | 2008-09-29 06:06:19 +0000 |
commit | 92ca91054283f3f3e95de8310733ca67735422fd (patch) | |
tree | ff385f6bbab0f4c79d91a521eb2b417b912987d9 | |
parent | ed2164f37e7c6370daed9a56ac931ceaa9c1a397 (diff) | |
download | ffmpeg-92ca91054283f3f3e95de8310733ca67735422fd.tar.gz |
Remove unused function fast_memcpy.
Originally committed as revision 27673 to svn://svn.mplayerhq.hu/mplayer/trunk/libswscale
-rw-r--r-- | libswscale/swscale-example.c | 4 |
1 files changed, 0 insertions, 4 deletions
diff --git a/libswscale/swscale-example.c b/libswscale/swscale-example.c index eae24425e4..b5f8d5e230 100644 --- a/libswscale/swscale-example.c +++ b/libswscale/swscale-example.c @@ -154,10 +154,6 @@ static int doTest(uint8_t *ref[3], int refStride[3], int w, int h, int srcFormat return res; } -void fast_memcpy(void *a, void *b, int s){ //FIXME - memcpy(a, b, s); -} - static void selfTest(uint8_t *src[3], int stride[3], int w, int h){ enum PixelFormat srcFormat, dstFormat; int srcW, srcH, dstW, dstH; |