diff options
author | Diego Biurrun <diego@biurrun.de> | 2009-12-30 13:48:03 +0000 |
---|---|---|
committer | Diego Biurrun <diego@biurrun.de> | 2009-12-30 13:48:03 +0000 |
commit | 941870cd35000fde07a261a7f913942b3592c7c0 (patch) | |
tree | e5f826ef8a55420fa9c58c9fba9551b6126afc95 | |
parent | 4052cbf161adce4635175206cdadc77e657d7903 (diff) | |
download | ffmpeg-941870cd35000fde07a261a7f913942b3592c7c0.tar.gz |
Remove unnecessary forward declaration for msmpeg4_memsetw().
Originally committed as revision 20976 to svn://svn.ffmpeg.org/ffmpeg/trunk
-rw-r--r-- | libavcodec/msmpeg4.c | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/libavcodec/msmpeg4.c b/libavcodec/msmpeg4.c index c94d2a2639..945efc5503 100644 --- a/libavcodec/msmpeg4.c +++ b/libavcodec/msmpeg4.c @@ -62,7 +62,6 @@ static uint32_t v2_dc_chroma_table[512][2]; static int msmpeg4_decode_dc(MpegEncContext * s, int n, int *dir_ptr); static void init_h263_dc_for_msmpeg4(void); -static inline void msmpeg4_memsetw(short *tab, int val, int n); #if CONFIG_ENCODERS static void msmpeg4v2_encode_motion(MpegEncContext * s, int val); static int get_size_of_code(MpegEncContext * s, RLTable *rl, int last, int run, int level, int intra); |