~ubuntu-branches/ubuntu/lucid/mpg123/lucid

« back to all changes in this revision

Viewing changes to src/dct64_i486.c

Tags: upstream-0.66
ImportĀ upstreamĀ versionĀ 0.66

Show diffs side-by-side

added added

removed removed

Lines of Context:
2
2
        dct64_i486.c: DCT64, a plain C variant for i486
3
3
 
4
4
        copyright 1998-2006 by the mpg123 project - free software under the terms of the LGPL 2.1
5
 
        see COPYING and AUTHORS files in distribution or http://mpg123.de
 
5
        see COPYING and AUTHORS files in distribution or http://mpg123.org
6
6
        initially written by Fabrice Bellard
7
7
*/
8
8
 
318
318
 * the call via dct64 is a trick to force GCC to use
319
319
 * (new) registers for the b1,b2 pointer to the bufs[xx] field
320
320
 */
321
 
void dct64_486(int *a,int *b,real *samples)
 
321
void dct64_i486(int *a,int *b,real *samples)
322
322
{
323
323
  int bufs[64];
324
324
  int i;