blob: 7bc922c4a70efa11dacebdfce3c8050d8e7bf5c6 [file] [log] [blame]
Andree Buschmann18f13b12008-05-17 21:26:34 +00001/***************************************************************************
2 * __________ __ ___.
3 * Open \______ \ ____ ____ | | _\_ |__ _______ ___
4 * Source | _// _ \_/ ___\| |/ /| __ \ / _ \ \/ /
5 * Jukebox | | ( <_> ) \___| < | \_\ ( <_> > < <
6 * Firmware |____|_ /\____/ \___ >__|_ \|___ /\____/__/\_ \
7 * \/ \/ \/ \/ \/
8 * $Id$
9 *
10 * Copyright (C) 2008 by Andree Buschmann
11 *
Daniel Stenberg2acc0ac2008-06-28 18:10:04 +000012 * 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.
Andree Buschmann18f13b12008-05-17 21:26:34 +000016 *
17 * This software is distributed on an "AS IS" basis, WITHOUT WARRANTY OF ANY
18 * KIND, either express or implied.
19 *
20 ****************************************************************************/
21
22#ifndef _mpc_config_h_
23#define _mpc_config_h_
24
25#include "config.h"
26
27/* choose fixed point or floating point */
28#define MPC_FIXED_POINT
29
30#ifndef MPC_FIXED_POINT
31#error FIXME, mpc will not with floating point now
32#endif
33
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)
Andree Buschmannf0087f02008-06-22 09:11:06 +000042 //#define OPTIMIZE_FOR_SPEED
Andree Buschmann18f13b12008-05-17 21:26:34 +000043 #else
44 #define OPTIMIZE_FOR_SPEED
45 #endif
46#else
47 // do nothing
48#endif
49
50#endif