Commit 63186881 authored by diego's avatar diego

Remove unused function msmpeg4_memsetw().

It is an exact duplicate of memsetw() in h263.c.


git-svn-id: file:///var/local/repositories/ffmpeg/trunk@20986 9553f0bf-9b14-0410-a0b8-cfaf0461ba5b
parent ca24e953
......@@ -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;
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment