changeset 3666:faa8dc533ad3 libavcodec

remove redundant declarations
author mru
date Sat, 02 Sep 2006 23:10:28 +0000
parents 9d942506b1f2
children 56e60411527c
files bitstream.h dsputil.c h261.c i386/dsputil_mmx.c mpegaudiodec.c utils.c
diffstat 6 files changed, 0 insertions(+), 9 deletions(-) [+]
line wrap: on
line diff
--- a/bitstream.h	Sat Sep 02 04:58:51 2006 +0000
+++ b/bitstream.h	Sat Sep 02 23:10:28 2006 +0000
@@ -771,7 +771,6 @@
     if(n) skip_bits(s, n);
 }
 
-int check_marker(GetBitContext *s, const char *msg);
 int init_vlc(VLC *vlc, int nb_bits, int nb_codes,
              const void *bits, int bits_wrap, int bits_size,
              const void *codes, int codes_wrap, int codes_size,
--- a/dsputil.c	Sat Sep 02 04:58:51 2006 +0000
+++ b/dsputil.c	Sat Sep 02 23:10:28 2006 +0000
@@ -3540,8 +3540,6 @@
     return sum;
 }
 
-void simple_idct(DCTELEM *block); //FIXME
-
 static int quant_psnr8x8_c(/*MpegEncContext*/ void *c, uint8_t *src1, uint8_t *src2, int stride, int h){
     MpegEncContext * const s= (MpegEncContext *)c;
     DECLARE_ALIGNED_8 (uint64_t, aligned_temp[sizeof(DCTELEM)*64*2/8]);
--- a/h261.c	Sat Sep 02 04:58:51 2006 +0000
+++ b/h261.c	Sat Sep 02 23:10:28 2006 +0000
@@ -373,8 +373,6 @@
 static VLC h261_mv_vlc;
 static VLC h261_cbp_vlc;
 
-void init_vlc_rl(RLTable *rl, int use_static);
-
 static void h261_decode_init_vlc(H261Context *h){
     static int done = 0;
 
--- a/i386/dsputil_mmx.c	Sat Sep 02 04:58:51 2006 +0000
+++ b/i386/dsputil_mmx.c	Sat Sep 02 23:10:28 2006 +0000
@@ -29,7 +29,6 @@
 //#undef NDEBUG
 //#include <assert.h>
 
-extern const uint8_t ff_h263_loop_filter_strength[32];
 extern void ff_idct_xvid_mmx(short *block);
 extern void ff_idct_xvid_mmx2(short *block);
 
--- a/mpegaudiodec.c	Sat Sep 02 04:58:51 2006 +0000
+++ b/mpegaudiodec.c	Sat Sep 02 23:10:28 2006 +0000
@@ -197,7 +197,6 @@
     SCALE_GEN(4.0 / 9.0), /* 9 steps */
 };
 
-void ff_mpa_synth_init(MPA_INT *window);
 static MPA_INT window[512] __attribute__((aligned(16)));
 
 /* layer 1 unscaling */
--- a/utils.c	Sat Sep 02 04:58:51 2006 +0000
+++ b/utils.c	Sat Sep 02 23:10:28 2006 +0000
@@ -57,8 +57,6 @@
 
 static int volatile entangled_thread_counter=0;
 
-void avcodec_default_free_buffers(AVCodecContext *s);
-
 void *av_mallocz(unsigned int size)
 {
     void *ptr;