Fix warning about missing newline at the EOF
[maemo-rb.git] / firmware / export / dsp-util.h
blob76962b527a82a071b98c159840d38fb3e7567c14
1 /***************************************************************************
2 * __________ __ ___.
3 * Open \______ \ ____ ____ | | _\_ |__ _______ ___
4 * Source | _// _ \_/ ___\| |/ /| __ \ / _ \ \/ /
5 * Jukebox | | ( <_> ) \___| < | \_\ ( <_> > < <
6 * Firmware |____|_ /\____/ \___ >__|_ \|___ /\____/__/\_ \
7 * \/ \/ \/ \/ \/
8 * $Id$
10 * Copyright (C) 2011 by Michael Sevakis
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 ****************************************************************************/
21 #ifndef DSP_HELPER_H
22 #define DSP_HELPER_H
24 /** Clip sample to signed 16 bit range **/
26 #ifdef CPU_ARM
27 #if ARM_ARCH >= 6
28 static FORCE_INLINE int32_t clip_sample_16(int32_t sample)
30 int32_t out;
31 asm ("ssat %0, #16, %1"
32 : "=r" (out) : "r"(sample));
33 return out;
35 #define CLIP_SAMPLE_16_DEFINED
36 #endif /* ARM_ARCH */
37 #endif /* CPU_ARM */
39 #ifndef CLIP_SAMPLE_16_DEFINED
40 /* Generic implementation */
41 static FORCE_INLINE int32_t clip_sample_16(int32_t sample)
43 if ((int16_t)sample != sample)
44 sample = 0x7fff ^ (sample >> 31);
45 return sample;
47 #endif /* CLIP_SAMPLE_16_DEFINED */
49 #undef CLIP_SAMPLE_16_DEFINED
51 #endif /* DSP_HELPER_H */