mirror of https://github.com/mpv-player/mpv
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:
parent
c927397b78
commit
946f71f3aa
11
mp3lib/sr1.c
11
mp3lib/sr1.c
|
@ -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!
|
||||
|
|
Loading…
Reference in New Issue