summaryrefslogtreecommitdiff
path: root/libavcodec/msmpeg4.c
diff options
context:
space:
mode:
authorDiego Biurrun <diego@biurrun.de>2009-12-31 01:27:47 +0000
committerDiego Biurrun <diego@biurrun.de>2009-12-31 01:27:47 +0000
commitf9310cbb2fcfcd9e41cafb3789c3b7ae3b90dbf4 (patch)
treefd9d1217cda638a874ece7d3400622060b180727 /libavcodec/msmpeg4.c
parentf27fd362313dc2f968f98db8666e335c4112fcc7 (diff)
Remove unused function msmpeg4_memsetw().
It is an exact duplicate of memsetw() in h263.c. Originally committed as revision 20986 to svn://svn.ffmpeg.org/ffmpeg/trunk
Diffstat (limited to 'libavcodec/msmpeg4.c')
-rw-r--r--libavcodec/msmpeg4.c7
1 files changed, 0 insertions, 7 deletions
diff --git a/libavcodec/msmpeg4.c b/libavcodec/msmpeg4.c
index ec82c03008..3d1f4740c3 100644
--- a/libavcodec/msmpeg4.c
+++ b/libavcodec/msmpeg4.c
@@ -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;