/*------------------------------------------------------------*/ void i_sbt16_dual(SAMPLEINT * sample, short *pcm, int n) { int i; for (i = 0; i < n; i++) { i_dct16_dual(sample, vbuf + vb_ptr); i_dct16_dual(sample + 1, vbuf2 + vb_ptr); i_window16_dual(vbuf, vb_ptr, pcm); i_window16_dual_right(vbuf2, vb_ptr, pcm + 1); sample += 64; vb_ptr = (vb_ptr - 16) & 255; pcm += 32; } }
/*------------------------------------------------------------*/ void i_sbt16_dual_left(SAMPLEINT * sample, short *pcm, int n) { int i; for (i = 0; i < n; i++) { i_dct16_dual(sample, vbuf + vb_ptr); i_window16(vbuf, vb_ptr, pcm); sample += 64; vb_ptr = (vb_ptr - 16) & 255; pcm += 16; } }
/*------------------------------------------------------------*/ void i_sbtB16_dual_right(SAMPLEINT * sample, unsigned char *pcm, int n) { int i; sample++; for (i = 0; i < n; i++) { i_dct16_dual(sample, vbuf + vb_ptr); i_windowB16(vbuf, vb_ptr, pcm); sample += 64; vb_ptr = (vb_ptr - 16) & 255; pcm += 16; } }