123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350 |
- /*
- *****************************************************************************
- *
- * GSM AMR-NB speech codec R98 Version 7.6.0 December 12, 2001
- * R99 Version 3.3.0
- * REL-4 Version 4.1.0
- *
- *****************************************************************************
- *
- * File : p_ol_wgh.c
- * Purpose : Compute the open loop pitch lag with weighting
- *
- *************************************************************************/
- /*
- ********************************************************************************
- * MODULE INCLUDE FILE AND VERSION ID
- ********************************************************************************
- */
- #include "p_ol_wgh.h"
- const char p_ol_wgh_id[] = "@(#)$Id $" p_ol_wgh_h;
- /*
- *****************************************************************************
- * INCLUDE FILES
- *****************************************************************************
- */
- #include <stdio.h>
- #include <stdlib.h>
- #include "typedef.h"
- #include "basic_op.h"
- #include "oper_32b.h"
- #include "count.h"
- #include "cnst.h"
- #include "corrwght.tab"
- #include "gmed_n.h"
- #include "inv_sqrt_ex.h"
- #include "vad.h"
- #include "calc_cor.h"
- #include "hp_max.h"
-
- /*
- *****************************************************************************
- * LOCAL VARIABLES AND TABLES
- *****************************************************************************
- */
- /*************************************************************************
- *
- * FUNCTION: Lag_max
- *
- * PURPOSE: Find the lag that has maximum correlation of scal_sig[] in a
- * given delay range.
- *
- * DESCRIPTION:
- * The correlation is given by
- * cor[t] = <scal_sig[n],scal_sig[n-t]>, t=lag_min,...,lag_max
- * The functions outputs the maximum correlation after normalization
- * and the corresponding lag.
- *
- *************************************************************************/
- static Word16 Lag_max ( /* o : lag found */
- vadState *vadSt, /* i/o : VAD state struct */
- Word32 corr[], /* i : correlation vector. */
- Word16 scal_sig[], /* i : scaled signal. */
- Word16 L_frame, /* i : length of frame to compute pitch */
- Word16 lag_max, /* i : maximum lag */
- Word16 lag_min, /* i : minimum lag */
- Word16 old_lag, /* i : old open-loop lag */
- Word16 *cor_max, /* o : normalized correlation of selected lag */
- Word16 wght_flg, /* i : is weighting function used */
- Word16 *gain_flg, /* o : open-loop flag */
- Flag dtx /* i : dtx flag; use dtx=1, do not use dtx=0 */
- )
- {
- Word16 i, j;
- Word16 *p, *p1;
- Word32 max, t0;
- Word16 t0_h, t0_l;
- Word16 p_max;
- const Word16 *ww, *we;
- Word32 t1;
-
- ww = &corrweight[250]; move16 ();
- we = &corrweight[123 + lag_max - old_lag]; move16 ();
- max = MIN_32; move32 ();
- p_max = lag_max; move16 ();
- for (i = lag_max; i >= lag_min; i--)
- {
- t0 = corr[-i]; move32 ();
-
- /* Weighting of the correlation function. */
- L_Extract (corr[-i], &t0_h, &t0_l);
- t0 = Mpy_32_16 (t0_h, t0_l, *ww);
- ww--; move16();
- test ();
- if (wght_flg > 0) {
- /* Weight the neighbourhood of the old lag. */
- L_Extract (t0, &t0_h, &t0_l);
- t0 = Mpy_32_16 (t0_h, t0_l, *we);
- we--; move16();
- }
-
- test ();
- if (L_sub_ex (t0, max) >= 0)
- {
- max = t0; move32 ();
- p_max = i; move16 ();
- }
- }
-
- p = &scal_sig[0]; move16 ();
- p1 = &scal_sig[-p_max]; move16 ();
- t0 = 0; move32 ();
- t1 = 0; move32 ();
-
- for (j = 0; j < L_frame; j++, p++, p1++)
- {
- t0 = L_mac_ex (t0, *p, *p1);
- t1 = L_mac_ex (t1, *p1, *p1);
- }
- if (dtx)
- { /* no test() call since this if is only in simulation env */
- #ifdef VAD2
- vadSt->L_Rmax = L_add_ex(vadSt->L_Rmax, t0); /* Save max correlation */
- vadSt->L_R0 = L_add_ex(vadSt->L_R0, t1); /* Save max energy */
- #else
- /* update and detect tone */
- vad_tone_detection_update (vadSt, 0);
- vad_tone_detection (vadSt, t0, t1);
- #endif
- }
-
- /* gain flag is set according to the open_loop gain */
- /* is t2/t1 > 0.4 ? */
- *gain_flg = round_ex(L_msu_ex(t0, round_ex(t1), 13107)); move16();
-
- *cor_max = 0; move16 ();
- return (p_max);
- }
- /*
- *****************************************************************************
- * PUBLIC PROGRAM CODE
- *****************************************************************************
- */
- /*************************************************************************
- *
- * Function: p_ol_wgh_init
- * Purpose: Allocates state memory and initializes state memory
- *
- **************************************************************************
- */
- int p_ol_wgh_init (pitchOLWghtState **state)
- {
- pitchOLWghtState* s;
-
- if (state == (pitchOLWghtState **) NULL){
- wfprintf(stderr, "p_ol_wgh_init: invalid parameter\n");
- return -1;
- }
- *state = NULL;
-
- /* allocate memory */
- if ((s= (pitchOLWghtState *) wmalloc(sizeof(pitchOLWghtState))) == NULL){
- wfprintf(stderr, "p_ol_wgh_init: can not malloc state structure\n");
- return -1;
- }
- p_ol_wgh_reset(s);
-
- *state = s;
-
- return 0;
- }
-
- /*************************************************************************
- *
- * Function: p_ol_wgh_reset
- * Purpose: Initializes state memory to zero
- *
- **************************************************************************
- */
- int p_ol_wgh_reset (pitchOLWghtState *st)
- {
- if (st == (pitchOLWghtState *) NULL){
- wfprintf(stderr, "p_ol_wgh_reset: invalid parameter\n");
- return -1;
- }
-
- /* Reset pitch search states */
- st->old_T0_med = 40;
- st->ada_w = 0;
- st->wght_flg = 0;
-
- return 0;
- }
-
- /*************************************************************************
- *
- * Function: p_ol_wgh_exit
- * Purpose: The memory used for state memory is freed
- *
- **************************************************************************
- */
- void p_ol_wgh_exit (pitchOLWghtState **state)
- {
- if (state == NULL || *state == NULL)
- return;
-
- /* deallocate memory */
- wfree(*state);
- *state = NULL;
-
- return;
- }
-
- /*************************************************************************
- *
- * Function: p_ol_wgh
- * Purpose: open-loop pitch search with weighting
- *
- **************************************************************************
- */
- Word16 Pitch_ol_wgh ( /* o : open loop pitch lag */
- pitchOLWghtState *st, /* i/o : State struct */
- vadState *vadSt, /* i/o : VAD state struct */
- Word16 signal[], /* i : signal used to compute the open loop pitch */
- /* signal[-pit_max] to signal[-1] should be known */
- Word16 pit_min, /* i : minimum pitch lag */
- Word16 pit_max, /* i : maximum pitch lag */
- Word16 L_frame, /* i : length of frame to compute pitch */
- Word16 old_lags[], /* i : history with old stored Cl lags */
- Word16 ol_gain_flg[], /* i : OL gain flag */
- Word16 idx, /* i : index */
- Flag dtx /* i : dtx flag; use dtx=1, do not use dtx=0 */
- )
- {
- Word16 i;
- Word16 max1;
- Word16 p_max1;
- Word32 t0;
- #ifndef VAD2
- Word16 corr_hp_max;
- #endif
- Word32 corr[PIT_MAX+1], *corr_ptr;
- /* Scaled signal */
- Word16 scaled_signal[PIT_MAX + L_FRAME];
- Word16 *scal_sig;
- scal_sig = &scaled_signal[pit_max]; move16 ();
- t0 = 0L; move32 ();
- for (i = -pit_max; i < L_frame; i++)
- {
- t0 = L_mac_ex (t0, signal[i], signal[i]);
- }
- /*--------------------------------------------------------*
- * Scaling of input signal. *
- * *
- * if Overflow -> scal_sig[i] = signal[i]>>2 *
- * else if t0 < 1^22 -> scal_sig[i] = signal[i]<<2 *
- * else -> scal_sig[i] = signal[i] *
- *--------------------------------------------------------*/
- /*--------------------------------------------------------*
- * Verification for risk of overflow. *
- *--------------------------------------------------------*/
- test (); test ();
- if (L_sub_ex (t0, MAX_32) == 0L) /* Test for overflow */
- {
- for (i = -pit_max; i < L_frame; i++)
- {
- scal_sig[i] = shr_ex (signal[i], 3); move16 ();
- }
- }
- else if (L_sub_ex (t0, (Word32) 1048576L) < (Word32) 0)
- {
- for (i = -pit_max; i < L_frame; i++)
- {
- scal_sig[i] = shl_ex (signal[i], 3); move16 ();
- }
- }
- else
- {
- for (i = -pit_max; i < L_frame; i++)
- {
- scal_sig[i] = signal[i]; move16 ();
- }
- }
- /* calculate all coreelations of scal_sig, from pit_min to pit_max */
- corr_ptr = &corr[pit_max]; move32 ();
- comp_corr (scal_sig, L_frame, pit_max, pit_min, corr_ptr);
- p_max1 = Lag_max (vadSt, corr_ptr, scal_sig, L_frame, pit_max, pit_min,
- st->old_T0_med, &max1, st->wght_flg, &ol_gain_flg[idx],
- dtx);
- move16 ();
- test (); move16 ();
- if (ol_gain_flg[idx] > 0)
- {
- /* Calculate 5-point median of previous lags */
- for (i = 4; i > 0; i--) /* Shift buffer */
- {
- old_lags[i] = old_lags[i-1]; move16 ();
- }
- old_lags[0] = p_max1; move16 ();
- st->old_T0_med = gmed_n (old_lags, 5); move16 ();
- st->ada_w = 32767; move16 (); /* Q15 = 1.0 */
- }
- else
- {
- st->old_T0_med = p_max1; move16 ();
- st->ada_w = mult_ex(st->ada_w, 29491); /* = ada_w = ada_w * 0.9 */
- }
-
- test ();
- if (sub_ex(st->ada_w, 9830) < 0) /* ada_w - 0.3 */
- {
- st->wght_flg = 0; move16 ();
- }
- else
- {
- st->wght_flg = 1; move16 ();
- }
- #ifndef VAD2
- if (dtx)
- { /* no test() call since this if is only in simulation env */
- test ();
- if (sub_ex(idx, 1) == 0)
- {
- /* calculate max high-passed filtered correlation of all lags */
- hp_max (corr_ptr, scal_sig, L_frame, pit_max, pit_min, &corr_hp_max);
-
- /* update complex background detector */
- vad_complex_detection_update(vadSt, corr_hp_max);
- }
- }
- #endif
-
- return (p_max1);
- }
|