Colour targets: Revert an optimisation from almost 18 months ago that actually turned...
[Rockbox.git] / apps / codecs / libmusepack / mpc_config.h
blob7bc922c4a70efa11dacebdfce3c8050d8e7bf5c6
1 /***************************************************************************
2 * __________ __ ___.
3 * Open \______ \ ____ ____ | | _\_ |__ _______ ___
4 * Source | _// _ \_/ ___\| |/ /| __ \ / _ \ \/ /
5 * Jukebox | | ( <_> ) \___| < | \_\ ( <_> > < <
6 * Firmware |____|_ /\____/ \___ >__|_ \|___ /\____/__/\_ \
7 * \/ \/ \/ \/ \/
8 * $Id$
10 * Copyright (C) 2008 by Andree Buschmann
12 * This program is free software; you can redistribute it and/or
13 * modify it under the terms of the GNU General Public License
14 * as published by the Free Software Foundation; either version 2
15 * of the License, or (at your option) any later version.
17 * This software is distributed on an "AS IS" basis, WITHOUT WARRANTY OF ANY
18 * KIND, either express or implied.
20 ****************************************************************************/
22 #ifndef _mpc_config_h_
23 #define _mpc_config_h_
25 #include "config.h"
27 /* choose fixed point or floating point */
28 #define MPC_FIXED_POINT
30 #ifndef MPC_FIXED_POINT
31 #error FIXME, mpc will not with floating point now
32 #endif
34 /* choose speed vs. accuracy for MPC_FIXED_POINT
35 * speed-setting will increase decoding speed on ARM only (+20%), loss of accuracy
36 * equals about 5 dB SNR (15bit output precision) to not use the speed-optimization
37 * -> comment OPTIMIZE_FOR_SPEED here for desired target */
38 #if defined(MPC_FIXED_POINT)
39 #if defined(CPU_COLDFIRE)
40 // do nothing
41 #elif defined(CPU_ARM)
42 //#define OPTIMIZE_FOR_SPEED
43 #else
44 #define OPTIMIZE_FOR_SPEED
45 #endif
46 #else
47 // do nothing
48 #endif
50 #endif