Ejemplo n.º 1
0
/*
 * the call via dct64 is a trick to force GCC to use
 * (new) registers for the b1,b2 pointer to the bufs[xx] field
 */
static void dct64(real *a,real *b,real *c)
{
  real bufs[0x40];
  dct64_1(a,b,bufs,bufs+0x20,c);
}
Ejemplo n.º 2
0
void mp3lib_dct64(real *a,real *b,real *c)
{
  real bufs[0x40];
  dct64_1(a,b,bufs,bufs+0x20,c);
}
Ejemplo n.º 3
0
/*
 * the call via dct64 is a trick to force GCC to use
 * (new) registers for the b1,b2 pointer to the bufs[xx] field
 */
void dct64(struct StaticData * psd, real *a,real *b,real *c)
{
  real bufs[0x40];
  dct64_1(psd, a,b,bufs,bufs+0x20,c);
}