blob: 578f37b63361a91c16c2654f25185de8427dcbb3 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
|
#ifndef NULLSOFT_MPEGUTILH
#define NULLSOFT_MPEGUTILH
extern float g_vis_table[2][2][32][18];
void do_layer3_vis(short *samples, float *xr, int nch, int ts);
void mp3Equalize(float *xr, int nch, int srate);
void mp2Equalize(float *xr, int nch, int srate, int nparts);
void mp3GiveVisData(float vistable[2][32][18],int gr, int nch);
#endif
|