diff options
Diffstat (limited to 'lib/rbcodec/codecs/libopus/silk/shell_coder.c')
| -rw-r--r-- | lib/rbcodec/codecs/libopus/silk/shell_coder.c | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/lib/rbcodec/codecs/libopus/silk/shell_coder.c b/lib/rbcodec/codecs/libopus/silk/shell_coder.c index 1cc77fd..8308f3f 100644 --- a/lib/rbcodec/codecs/libopus/silk/shell_coder.c +++ b/lib/rbcodec/codecs/libopus/silk/shell_coder.c @@ -45,6 +45,7 @@ static inline void combine_pulses( } } +#if 0 static inline void encode_split( ec_enc *psRangeEnc, /* I/O compressor data structure */ const opus_int p_child1, /* I pulse amplitude of first child subframe */ @@ -56,6 +57,7 @@ static inline void encode_split( ec_enc_icdf( psRangeEnc, p_child1, &shell_table[ silk_shell_code_table_offsets[ p ] ], 8 ); } } +#endif static inline void decode_split( opus_int *p_child1, /* O pulse amplitude of first child subframe */ @@ -74,6 +76,7 @@ static inline void decode_split( } } +#if 0 /* Shell encoder, operates on one shell code frame of 16 pulses */ void silk_shell_encoder( ec_enc *psRangeEnc, /* I/O compressor data structure */ @@ -113,6 +116,7 @@ void silk_shell_encoder( encode_split( psRangeEnc, pulses0[ 12 ], pulses1[ 6 ], silk_shell_code_table0 ); encode_split( psRangeEnc, pulses0[ 14 ], pulses1[ 7 ], silk_shell_code_table0 ); } +#endif /* Shell decoder, operates on one shell code frame of 16 pulses */ |