Remove unused function msmpeg4_memsetw().
authorDiego Biurrun <diego@biurrun.de>
Thu, 31 Dec 2009 01:27:47 +0000 (01:27 +0000)
committerDiego Biurrun <diego@biurrun.de>
Thu, 31 Dec 2009 01:27:47 +0000 (01:27 +0000)
It is an exact duplicate of memsetw() in h263.c.

Originally committed as revision 20986 to svn://svn.ffmpeg.org/ffmpeg/trunk

libavcodec/msmpeg4.c

index ec82c03..3d1f474 100644 (file)
@@ -1588,13 +1588,6 @@ int msmpeg4_decode_ext_header(MpegEncContext * s, int buf_size)
     return 0;
 }
 
-static inline void msmpeg4_memsetw(short *tab, int val, int n)
-{
-    int i;
-    for(i=0;i<n;i++)
-        tab[i] = val;
-}
-
 static int msmpeg4_decode_dc(MpegEncContext * s, int n, int *dir_ptr)
 {
     int level, pred;