diff options
Diffstat (limited to 'apps/codecs/libspeex/nb_celp.c')
-rw-r--r-- | apps/codecs/libspeex/nb_celp.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/apps/codecs/libspeex/nb_celp.c b/apps/codecs/libspeex/nb_celp.c index 31eaa06b6b..90a5d1e991 100644 --- a/apps/codecs/libspeex/nb_celp.c +++ b/apps/codecs/libspeex/nb_celp.c | |||
@@ -1019,7 +1019,7 @@ void nb_decoder_destroy(void *state) | |||
1019 | */ | 1019 | */ |
1020 | } | 1020 | } |
1021 | 1021 | ||
1022 | #define median3(a, b, c) ((a) < (b) ? ((b) < (c) ? (b) : ((a) < (c) ? (c) : (a))) : ((c) < (b) ? (b) : ((c) < (a) ? (c) : (a)))) | 1022 | #define median3(a, b, c) ((a) < (b) ? ((b) < (c) ? (b) : ((a) < (c) ? (c) : (a))) : ((c) < (b) ? (b) : ((c) < (a) ? (c) : (a)))) |
1023 | 1023 | ||
1024 | #ifdef FIXED_POINT | 1024 | #ifdef FIXED_POINT |
1025 | const spx_word16_t attenuation[10] = {32767, 31483, 27923, 22861, 17278, 12055, 7764, 4616, 2533, 1283}; | 1025 | const spx_word16_t attenuation[10] = {32767, 31483, 27923, 22861, 17278, 12055, 7764, 4616, 2533, 1283}; |
@@ -1353,10 +1353,10 @@ int nb_decode(void *state, SpeexBits *bits, void *vout) | |||
1353 | */ | 1353 | */ |
1354 | pit_min = ol_pitch-margin+1; | 1354 | pit_min = ol_pitch-margin+1; |
1355 | if (pit_min < st->min_pitch) | 1355 | if (pit_min < st->min_pitch) |
1356 | pit_min = st->min_pitch; | 1356 | pit_min = st->min_pitch; |
1357 | pit_max = ol_pitch+margin; | 1357 | pit_max = ol_pitch+margin; |
1358 | if (pit_max > st->max_pitch) | 1358 | if (pit_max > st->max_pitch) |
1359 | pit_max = st->max_pitch; | 1359 | pit_max = st->max_pitch; |
1360 | } else { | 1360 | } else { |
1361 | pit_min = pit_max = ol_pitch; | 1361 | pit_min = pit_max = ol_pitch; |
1362 | } | 1362 | } |