Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/mumble-voip/speexdsp.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'libspeex/cb_search.c')
-rw-r--r--libspeex/cb_search.c4
1 files changed, 4 insertions, 0 deletions
diff --git a/libspeex/cb_search.c b/libspeex/cb_search.c
index fa96dac..26c2329 100644
--- a/libspeex/cb_search.c
+++ b/libspeex/cb_search.c
@@ -158,9 +158,11 @@ int update_target
{
spx_word16_t *x=t+subvect_size*i;
/*Find new n-best based on previous n-best j*/
+#ifndef DISABLE_WIDEBAND
if (have_sign)
vq_nbest_sign(x, resp2, subvect_size, shape_cb_size, E, 1, &best_index, &best_dist, stack);
else
+#endif /* DISABLE_WIDEBAND */
vq_nbest(x, resp2, subvect_size, shape_cb_size, E, 1, &best_index, &best_dist, stack);
speex_bits_pack(bits,best_index,params->shape_bits+have_sign);
@@ -379,9 +381,11 @@ int update_target
tener *= .5;
#endif
/*Find new n-best based on previous n-best j*/
+#ifndef DISABLE_WIDEBAND
if (have_sign)
vq_nbest_sign(x, resp2, subvect_size, shape_cb_size, E, N, best_index, best_dist, stack);
else
+#endif /* DISABLE_WIDEBAND */
vq_nbest(x, resp2, subvect_size, shape_cb_size, E, N, best_index, best_dist, stack);
/*For all new n-bests*/