summaryrefslogtreecommitdiffstats
path: root/mp3lib
diff options
context:
space:
mode:
authorzuxy <zuxy@b3059339-0415-0410-9bf9-f77b7e298cf2>2007-05-22 13:44:14 +0000
committerzuxy <zuxy@b3059339-0415-0410-9bf9-f77b7e298cf2>2007-05-22 13:44:14 +0000
commit6e13c348c3476d1c219eabef5560e8d794a935af (patch)
tree29ed63221c360d97bb893684c50372cf8d565ad7 /mp3lib
parent1c6ae61a3f9cedbef5cc6f9103168e58288d3f64 (diff)
downloadmpv-6e13c348c3476d1c219eabef5560e8d794a935af.tar.bz2
mpv-6e13c348c3476d1c219eabef5560e8d794a935af.tar.xz
Remove unused synth_1to1_mono()
git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@23374 b3059339-0415-0410-9bf9-f77b7e298cf2
Diffstat (limited to 'mp3lib')
-rw-r--r--mp3lib/decod386.c21
1 files changed, 0 insertions, 21 deletions
diff --git a/mp3lib/decod386.c b/mp3lib/decod386.c
index c8844cc7d7..61b891e130 100644
--- a/mp3lib/decod386.c
+++ b/mp3lib/decod386.c
@@ -85,27 +85,6 @@
static int synth_1to1(real *bandPtr,int channel,unsigned char *out,int *pnt);
-static int synth_1to1_mono(real *bandPtr,unsigned char *samples,int *pnt)
-{
- short samples_tmp[64];
- short *tmp1 = samples_tmp;
- int i,ret;
- int pnt1 = 0;
-
- ret = synth_1to1(bandPtr,0,(unsigned char *) samples_tmp,&pnt1);
- samples += *pnt;
-
- for(i=0;i<32;i++) {
- *( (short *) samples) = *tmp1;
- samples += 2;
- tmp1 += 2;
- }
- *pnt += 64;
-
- return ret;
-}
-
-
static int synth_1to1_mono2stereo(real *bandPtr,unsigned char *samples,int *pnt)
{
int i,ret;