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

« back to all changes in this revision

Viewing changes to src/dct64_altivec.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_altivec.c: Discrete Cosine Tansform (DCT) for Altivec
3
3
 
4
4
        copyright ?-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 Michael Hipp
7
7
        altivec optimization by tmkk
8
8
*/
25
25
#include <altivec.h>
26
26
#endif
27
27
 
28
 
void dct64(real *out0,real *out1,real *samples)
 
28
void dct64_altivec(real *out0,real *out1,real *samples)
29
29
{
30
30
  real __attribute__ ((aligned (16))) bufs[64];
31
31