12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879 |
- /*
- ********************************************************************************
- *
- * 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 : d_gain_p.c
- *
- ********************************************************************************
- */
-
-
- /*
- ********************************************************************************
- * MODULE INCLUDE FILE AND VERSION ID
- ********************************************************************************
- */
- #include "d_gain_p.h"
- const char d_gain_p_id[] = "@(#)$Id $" d_gain_p_h;
-
- /*
- ********************************************************************************
- * INCLUDE FILES
- ********************************************************************************
- */
- #include <stdlib.h>
- #include <stdio.h>
- #include "typedef.h"
- #include "mode.h"
- #include "basic_op.h"
- #include "oper_32b.h"
- #include "count.h"
- #include "cnst.h"
- /*
- ********************************************************************************
- * LOCAL VARIABLES AND TABLES
- ********************************************************************************
- */
- #include "gains.tab"
-
- /*
- ********************************************************************************
- * PUBLIC PROGRAM CODE
- ********************************************************************************
- */
- /*
- **************************************************************************
- *
- * Function : d_gain_pitch
- * Purpose : Decodes the pitch gain using the received index.
- * output is in Q14
- *
- **************************************************************************
- */
- Word16 d_gain_pitch ( /* return value: gain (Q14) */
- enum Mode mode, /* i : AMR mode */
- Word16 index /* i : index of quantization */
- )
- {
- Word16 gain;
- test ();
- if (sub_ex(mode, MR122) == 0)
- {
- /* clear 2 LSBits */
- gain = shl_ex (shr_ex (qua_gain_pitch[index], 2), 2); move16 ();
- }
- else
- {
- gain = qua_gain_pitch[index]; move16 ();
- }
-
- return gain;
- }
|