/*------------------------------------------------------------*/ void sbt8_dual_left(MPEG *m, float *sample, short *pcm, int n) { int i; for (i = 0; i < n; i++) { fdct8_dual(m,sample, m->csbt.vbuf + m->csbt.vb_ptr); window8(m,m->csbt.vbuf, m->csbt.vb_ptr, pcm); sample += 64; m->csbt.vb_ptr = (m->csbt.vb_ptr - 8) & 127; pcm += 8; } }
void sbt8_dual_left(float *sample, short *pcm, int n) { int i; for (i = 0; i < n; i++) { fdct8_dual(sample, vbuf + vb_ptr); window8(vbuf, vb_ptr, pcm); sample += 64; vb_ptr = (vb_ptr - 8) & 127; pcm += 8; } }
/*------------------------------------------------------------*/ void sbt8_dual_left(float *sample, short *pcm, int n) { int i; for (i = 0; i < n; i++) { fdct8_dual(sample, pMP3Stream->vbuf + pMP3Stream->vb_ptr); window8(pMP3Stream->vbuf, pMP3Stream->vb_ptr, pcm); sample += 64; pMP3Stream->vb_ptr = (pMP3Stream->vb_ptr - 8) & 127; pcm += 8; } }
/*------------------------------------------------------------*/ void sbt8_mono_L3(float *sample, short *pcm, int ch) { int i; ch = 0; for (i = 0; i < 18; i++) { fdct8(sample, pMP3Stream->vbuf + pMP3Stream->vb_ptr); window8(pMP3Stream->vbuf, pMP3Stream->vb_ptr, pcm); sample += 32; pMP3Stream->vb_ptr = (pMP3Stream->vb_ptr - 8) & 127; pcm += 8; } }
void sbt8_mono_L3(float *sample, short *pcm, int ch) { int i; ch = 0; for (i = 0; i < 18; i++) { fdct8(sample, vbuf + vb_ptr); window8(vbuf, vb_ptr, pcm); sample += 32; vb_ptr = (vb_ptr - 8) & 127; pcm += 8; } }