[MPlayer-cvslog] r23374 - trunk/mp3lib/decod386.c
zuxy
subversion at mplayerhq.hu
Tue May 22 15:44:14 CEST 2007
Author: zuxy
Date: Tue May 22 15:44:14 2007
New Revision: 23374
Log:
Remove unused synth_1to1_mono()
Modified:
trunk/mp3lib/decod386.c
Modified: trunk/mp3lib/decod386.c
==============================================================================
--- trunk/mp3lib/decod386.c (original)
+++ trunk/mp3lib/decod386.c Tue May 22 15:44:14 2007
@@ -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;
More information about the MPlayer-cvslog
mailing list