summaryrefslogtreecommitdiff
path: root/lib/rbcodec/codecs/libopus/silk/shell_coder.c
diff options
context:
space:
mode:
Diffstat (limited to 'lib/rbcodec/codecs/libopus/silk/shell_coder.c')
-rw-r--r--lib/rbcodec/codecs/libopus/silk/shell_coder.c8
1 files changed, 4 insertions, 4 deletions
diff --git a/lib/rbcodec/codecs/libopus/silk/shell_coder.c b/lib/rbcodec/codecs/libopus/silk/shell_coder.c
index f402cc4328..9d6e1bb366 100644
--- a/lib/rbcodec/codecs/libopus/silk/shell_coder.c
+++ b/lib/rbcodec/codecs/libopus/silk/shell_coder.c
@@ -8,7 +8,7 @@ this list of conditions and the following disclaimer.
8- Redistributions in binary form must reproduce the above copyright 8- Redistributions in binary form must reproduce the above copyright
9notice, this list of conditions and the following disclaimer in the 9notice, this list of conditions and the following disclaimer in the
10documentation and/or other materials provided with the distribution. 10documentation and/or other materials provided with the distribution.
11- Neither the name of Internet Society, IETF or IETF Trust, nor the 11- Neither the name of Internet Society, IETF or IETF Trust, nor the
12names of specific contributors, may be used to endorse or promote 12names of specific contributors, may be used to endorse or promote
13products derived from this software without specific prior written 13products derived from this software without specific prior written
14permission. 14permission.
@@ -33,7 +33,7 @@ POSSIBILITY OF SUCH DAMAGE.
33 33
34/* shell coder; pulse-subframe length is hardcoded */ 34/* shell coder; pulse-subframe length is hardcoded */
35 35
36static inline void combine_pulses( 36static OPUS_INLINE void combine_pulses(
37 opus_int *out, /* O combined pulses vector [len] */ 37 opus_int *out, /* O combined pulses vector [len] */
38 const opus_int *in, /* I input vector [2 * len] */ 38 const opus_int *in, /* I input vector [2 * len] */
39 const opus_int len /* I number of OUTPUT samples */ 39 const opus_int len /* I number of OUTPUT samples */
@@ -46,7 +46,7 @@ static inline void combine_pulses(
46} 46}
47 47
48#if 0 48#if 0
49static inline void encode_split( 49static OPUS_INLINE void encode_split(
50 ec_enc *psRangeEnc, /* I/O compressor data structure */ 50 ec_enc *psRangeEnc, /* I/O compressor data structure */
51 const opus_int p_child1, /* I pulse amplitude of first child subframe */ 51 const opus_int p_child1, /* I pulse amplitude of first child subframe */
52 const opus_int p, /* I pulse amplitude of current subframe */ 52 const opus_int p, /* I pulse amplitude of current subframe */
@@ -59,7 +59,7 @@ static inline void encode_split(
59} 59}
60#endif 60#endif
61 61
62static inline void decode_split( 62static OPUS_INLINE void decode_split(
63 opus_int *p_child1, /* O pulse amplitude of first child subframe */ 63 opus_int *p_child1, /* O pulse amplitude of first child subframe */
64 opus_int *p_child2, /* O pulse amplitude of second child subframe */ 64 opus_int *p_child2, /* O pulse amplitude of second child subframe */
65 ec_dec *psRangeDec, /* I/O Compressor data structure */ 65 ec_dec *psRangeDec, /* I/O Compressor data structure */