r25377 - trunk/mp3lib/sr1.c
Author: diego Date: Wed Dec 12 09:45:05 2007 New Revision: 25377 Log: cosmetics: Move public function declarations together. Modified: trunk/mp3lib/sr1.c Modified: trunk/mp3lib/sr1.c ============================================================================== --- trunk/mp3lib/sr1.c (original) +++ trunk/mp3lib/sr1.c Wed Dec 12 09:45:05 2007 @@ -386,12 +386,6 @@ retry1: static int _has_mmx = 0; // used by layer2.c, layer3.c to pre-scale coeffs -extern void dct64_altivec(real *, real *, real *); - -#include "layer2.c" -#include "layer3.c" -#include "layer1.c" - /******************************************************************************/ /* PUBLIC FUNCTIONS */ /******************************************************************************/ @@ -401,8 +395,13 @@ extern void dct64_MMX(short *, short *, extern void dct64_MMX_3dnow(short *, short *, real *); extern void dct64_MMX_3dnowex(short *, short *, real *); extern void dct64_sse(short *, short *, real *); +extern void dct64_altivec(real *, real *, real *); void (*dct64_MMX_func)(short *, short *, real *); +#include "layer2.c" +#include "layer3.c" +#include "layer1.c" + #include "cpudetect.h" // Init decoder tables. Call first, once!
participants (1)
-
diego