aboutsummaryrefslogtreecommitdiffstats
path: root/codecs/mp3/include/protos.h
diff options
context:
space:
mode:
authormarkster <markster@f38db490-d61c-443f-a65b-d21fe96a405b>2003-11-04 02:40:09 +0000
committermarkster <markster@f38db490-d61c-443f-a65b-d21fe96a405b>2003-11-04 02:40:09 +0000
commitf8c39a08f6ff651221ff896f8a174abf635f3a0a (patch)
treeac950750c9c1b65bb563df9c6506858c7f8f30c1 /codecs/mp3/include/protos.h
parentad46ab972ccf439d1dd3a533335b54089c53e431 (diff)
Remove really broke MP3 stuff in favor of G.726 in the near future
git-svn-id: http://svn.digium.com/svn/asterisk/trunk@1689 f38db490-d61c-443f-a65b-d21fe96a405b
Diffstat (limited to 'codecs/mp3/include/protos.h')
-rwxr-xr-xcodecs/mp3/include/protos.h52
1 files changed, 0 insertions, 52 deletions
diff --git a/codecs/mp3/include/protos.h b/codecs/mp3/include/protos.h
deleted file mode 100755
index c812e54cd..000000000
--- a/codecs/mp3/include/protos.h
+++ /dev/null
@@ -1,52 +0,0 @@
-/*====================================================================*/
-int hybrid(MPEG *m, void *xin, void *xprev, float *y,
- int btype, int nlong, int ntot, int nprev);
-int hybrid_sum(MPEG *m, void *xin, void *xin_left, float *y,
- int btype, int nlong, int ntot);
-void sum_f_bands(void *a, void *b, int n);
-void FreqInvert(float *y, int n);
-void antialias(MPEG *m, void *x, int n);
-void ms_process(void *x, int n); /* sum-difference stereo */
-void is_process_MPEG1(MPEG *m, void *x, /* intensity stereo */
- SCALEFACT * sf,
- CB_INFO cb_info[2], /* [ch] */
- int nsamp, int ms_mode);
-void is_process_MPEG2(MPEG *m, void *x, /* intensity stereo */
- SCALEFACT * sf,
- CB_INFO cb_info[2], /* [ch] */
- IS_SF_INFO * is_sf_info,
- int nsamp, int ms_mode);
-
-void unpack_huff(void *xy, int n, int ntable);
-int unpack_huff_quad(void *vwxy, int n, int nbits, int ntable);
-void dequant(MPEG *m, SAMPLE sample[], int *nsamp,
- SCALEFACT * sf,
- GR * gr,
- CB_INFO * cb_info, int ncbl_mixed);
-void unpack_sf_sub_MPEG1(SCALEFACT * scalefac, GR * gr,
- int scfsi, /* bit flag */
- int igr);
-void unpack_sf_sub_MPEG2(SCALEFACT sf[], /* return intensity scale */
- GR * grdat,
- int is_and_ch, IS_SF_INFO * is_sf_info);
-
-
-/*---------- quant ---------------------------------*/
-/* 8 bit lookup x = pow(2.0, 0.25*(global_gain-210)) */
-float *quant_init_global_addr(MPEG *m);
-
-
-/* x = pow(2.0, -0.5*(1+scalefact_scale)*scalefac + preemp) */
-typedef float LS[4][32];
-LS *quant_init_scale_addr(MPEG *m);
-
-
-float *quant_init_pow_addr(MPEG *m);
-float *quant_init_subblock_addr(MPEG *m);
-
-typedef int iARRAY22[22];
-iARRAY22 *quant_init_band_addr(MPEG *m);
-
-/*---------- antialias ---------------------------------*/
-typedef float PAIR[2];
-PAIR *alias_init_addr(MPEG *m);