# HG changeset patch # User mru # Date 1157238628 0 # Node ID faa8dc533ad3d7ff1dcb35bf027056126badbf01 # Parent 9d942506b1f21b83f8dedb95eb2f10e156a91079 remove redundant declarations diff -r 9d942506b1f2 -r faa8dc533ad3 bitstream.h --- 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, diff -r 9d942506b1f2 -r faa8dc533ad3 dsputil.c --- 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]); diff -r 9d942506b1f2 -r faa8dc533ad3 h261.c --- 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; diff -r 9d942506b1f2 -r faa8dc533ad3 i386/dsputil_mmx.c --- 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 -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); diff -r 9d942506b1f2 -r faa8dc533ad3 mpegaudiodec.c --- 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 */ diff -r 9d942506b1f2 -r faa8dc533ad3 utils.c --- 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;