cosmetics: Move public function declarations together.

git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@25377 b3059339-0415-0410-9bf9-f77b7e298cf2
This commit is contained in:
diego 2007-12-12 08:45:05 +00:00
parent c927397b78
commit 946f71f3aa
1 changed files with 5 additions and 6 deletions

View File

@ -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 *, real *);
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!