forked from len0rd/rockbox
Remove extraneous semicolons, and fix a comment.
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@19268 a1c6a512-1295-4272-9138-f99709370657
This commit is contained in:
parent
b153133682
commit
89a6fe7ae4
1 changed files with 2 additions and 2 deletions
|
@ -95,12 +95,12 @@ struct filter_t {
|
||||||
/* Convert from (32-FRACBITS).FRACBITS fixed-point format to an
|
/* Convert from (32-FRACBITS).FRACBITS fixed-point format to an
|
||||||
integer (rounding to nearest). */
|
integer (rounding to nearest). */
|
||||||
#define FP_HALF (1 << (FRACBITS - 1)) /* 0.5 in fixed-point format. */
|
#define FP_HALF (1 << (FRACBITS - 1)) /* 0.5 in fixed-point format. */
|
||||||
#define FP_TO_INT(x) ((x + FP_HALF) >> FRACBITS); /* round(x) */
|
#define FP_TO_INT(x) ((x + FP_HALF) >> FRACBITS) /* round(x) */
|
||||||
|
|
||||||
#if defined(CPU_ARM) && (ARM_ARCH >= 6)
|
#if defined(CPU_ARM) && (ARM_ARCH >= 6)
|
||||||
#define SATURATE(x) ({int __res; asm("ssat %0, #16, %1" : "=r"(__res) : "r"(x)); __res; })
|
#define SATURATE(x) ({int __res; asm("ssat %0, #16, %1" : "=r"(__res) : "r"(x)); __res; })
|
||||||
#else
|
#else
|
||||||
#define SATURATE(x) (LIKELY((x) == (int16_t)(x)) ? (x) : ((x) >> 31) ^ 0x7FFF);
|
#define SATURATE(x) (LIKELY((x) == (int16_t)(x)) ? (x) : ((x) >> 31) ^ 0x7FFF)
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
/* Apply the filter with state f to count entries in data[] */
|
/* Apply the filter with state f to count entries in data[] */
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue