summaryrefslogtreecommitdiff
path: root/lib/rbcodec/codecs/libopus/celt/arm/fixed_armv5e.h
diff options
context:
space:
mode:
Diffstat (limited to 'lib/rbcodec/codecs/libopus/celt/arm/fixed_armv5e.h')
-rw-r--r--lib/rbcodec/codecs/libopus/celt/arm/fixed_armv5e.h10
1 files changed, 5 insertions, 5 deletions
diff --git a/lib/rbcodec/codecs/libopus/celt/arm/fixed_armv5e.h b/lib/rbcodec/codecs/libopus/celt/arm/fixed_armv5e.h
index 80632c4a94..1194a7d3ec 100644
--- a/lib/rbcodec/codecs/libopus/celt/arm/fixed_armv5e.h
+++ b/lib/rbcodec/codecs/libopus/celt/arm/fixed_armv5e.h
@@ -34,7 +34,7 @@
34 34
35/** 16x32 multiplication, followed by a 16-bit shift right. Results fits in 32 bits */ 35/** 16x32 multiplication, followed by a 16-bit shift right. Results fits in 32 bits */
36#undef MULT16_32_Q16 36#undef MULT16_32_Q16
37static inline opus_val32 MULT16_32_Q16_armv5e(opus_val16 a, opus_val32 b) 37static OPUS_INLINE opus_val32 MULT16_32_Q16_armv5e(opus_val16 a, opus_val32 b)
38{ 38{
39 int res; 39 int res;
40 __asm__( 40 __asm__(
@@ -50,7 +50,7 @@ static inline opus_val32 MULT16_32_Q16_armv5e(opus_val16 a, opus_val32 b)
50 50
51/** 16x32 multiplication, followed by a 15-bit shift right. Results fits in 32 bits */ 51/** 16x32 multiplication, followed by a 15-bit shift right. Results fits in 32 bits */
52#undef MULT16_32_Q15 52#undef MULT16_32_Q15
53static inline opus_val32 MULT16_32_Q15_armv5e(opus_val16 a, opus_val32 b) 53static OPUS_INLINE opus_val32 MULT16_32_Q15_armv5e(opus_val16 a, opus_val32 b)
54{ 54{
55 int res; 55 int res;
56 __asm__( 56 __asm__(
@@ -68,7 +68,7 @@ static inline opus_val32 MULT16_32_Q15_armv5e(opus_val16 a, opus_val32 b)
68 b must fit in 31 bits. 68 b must fit in 31 bits.
69 Result fits in 32 bits. */ 69 Result fits in 32 bits. */
70#undef MAC16_32_Q15 70#undef MAC16_32_Q15
71static inline opus_val32 MAC16_32_Q15_armv5e(opus_val32 c, opus_val16 a, 71static OPUS_INLINE opus_val32 MAC16_32_Q15_armv5e(opus_val32 c, opus_val16 a,
72 opus_val32 b) 72 opus_val32 b)
73{ 73{
74 int res; 74 int res;
@@ -84,7 +84,7 @@ static inline opus_val32 MAC16_32_Q15_armv5e(opus_val32 c, opus_val16 a,
84 84
85/** 16x16 multiply-add where the result fits in 32 bits */ 85/** 16x16 multiply-add where the result fits in 32 bits */
86#undef MAC16_16 86#undef MAC16_16
87static inline opus_val32 MAC16_16_armv5e(opus_val32 c, opus_val16 a, 87static OPUS_INLINE opus_val32 MAC16_16_armv5e(opus_val32 c, opus_val16 a,
88 opus_val16 b) 88 opus_val16 b)
89{ 89{
90 int res; 90 int res;
@@ -100,7 +100,7 @@ static inline opus_val32 MAC16_16_armv5e(opus_val32 c, opus_val16 a,
100 100
101/** 16x16 multiplication where the result fits in 32 bits */ 101/** 16x16 multiplication where the result fits in 32 bits */
102#undef MULT16_16 102#undef MULT16_16
103static inline opus_val32 MULT16_16_armv5e(opus_val16 a, opus_val16 b) 103static OPUS_INLINE opus_val32 MULT16_16_armv5e(opus_val16 a, opus_val16 b)
104{ 104{
105 int res; 105 int res;
106 __asm__( 106 __asm__(