123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300 |
- /*
- *****************************************************************************
- *
- * 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 : sp_dec.c
- * Purpose : Decoding and post filtering of one speech frame.
- *
- *****************************************************************************
- */
-
- /*
- *****************************************************************************
- * MODULE INCLUDE FILE AND VERSION ID
- *****************************************************************************
- */
- #include "sp_dec.h"
- const char sp_dec_id[] = "@(#)$Id $" sp_dec_h;
-
- /*
- *****************************************************************************
- * INCLUDE FILES
- *****************************************************************************
- */
- #include <stdlib.h>
- #include <stdio.h>
- #include "typedef.h"
- #include "basic_op.h"
- #include "count.h"
- #include "cnst.h"
- #include "set_zero.h"
- #include "dec_amr.h"
- #include "pstfilt.h"
- #include "bits2prm.h"
- #include "mode.h"
- #include "post_pro.h"
- #ifdef MMS_IO
- #include "bitno.tab"
- #endif
- /*
- *****************************************************************************
- * LOCAL VARIABLES AND TABLES
- *****************************************************************************
- */
- /*---------------------------------------------------------------*
- * Constants (defined in "cnst.h") *
- *---------------------------------------------------------------*
- * L_FRAME :
- * M :
- * PRM_SIZE :
- * AZ_SIZE :
- * SERIAL_SIZE :
- *---------------------------------------------------------------*/
- /*
- *****************************************************************************
- * PUBLIC PROGRAM CODE
- *****************************************************************************
- */
-
- /*************************************************************************
- *
- * Function: Speech_Decode_Frame_init
- * Purpose: Allocates memory for filter structure and initializes
- * state memory
- *
- **************************************************************************
- */
- int Speech_Decode_Frame_init (Speech_Decode_FrameState **state,
- char *id)
- {
- Speech_Decode_FrameState* s;
-
- if (state == (Speech_Decode_FrameState **) NULL){
- wfprintf(stderr, "Speech_Decode_Frame_init: invalid parameter\n");
- return -1;
- }
- *state = NULL;
-
- /* allocate memory */
- if ((s= (Speech_Decode_FrameState *)
- wmalloc(sizeof(Speech_Decode_FrameState))) == NULL) {
- wfprintf(stderr, "Speech_Decode_Frame_init: can not malloc state "
- "structure\n");
- return -1;
- }
- s->decoder_amrState = NULL;
- s->post_state = NULL;
- s->postHP_state = NULL;
- if (Decoder_amr_init(&s->decoder_amrState) ||
- Post_Filter_init(&s->post_state) ||
- Post_Process_init(&s->postHP_state) ) {
- Speech_Decode_Frame_exit(&s);
- return -1;
- }
- s->complexityCounter = getCounterId(id);
-
- Speech_Decode_Frame_reset(s);
- *state = s;
-
- return 0;
- }
-
- /*************************************************************************
- *
- * Function: Speech_Decode_Frame_reset
- * Purpose: Resetses state memory
- *
- **************************************************************************
- */
- int Speech_Decode_Frame_reset (Speech_Decode_FrameState *state)
- {
- if (state == (Speech_Decode_FrameState *) NULL){
- wfprintf(stderr, "Speech_Decode_Frame_reset: invalid parameter\n");
- return -1;
- }
-
- Decoder_amr_reset(state->decoder_amrState, (enum Mode)0);
- Post_Filter_reset(state->post_state);
- Post_Process_reset(state->postHP_state);
- state->prev_mode = (enum Mode)0;
- setCounter(state->complexityCounter);
- Init_WMOPS_counter();
- setCounter(0); /* set counter to global counter */
- return 0;
- }
-
- /*
- **************************************************************************
- *
- * Function: Speech_Decode_Frame_exit
- * Purpose: The memory used for state memory is freed
- *
- **************************************************************************
- */
- void Speech_Decode_Frame_exit (Speech_Decode_FrameState **state)
- {
- if (state == NULL || *state == NULL)
- return;
-
- Decoder_amr_exit(&(*state)->decoder_amrState);
- Post_Filter_exit(&(*state)->post_state);
- Post_Process_exit(&(*state)->postHP_state);
- setCounter((*state)->complexityCounter);
- WMOPS_output(0);
- setCounter(0); /* set counter to global counter */
-
- /* deallocate memory */
- wfree(*state);
- *state = NULL;
-
- return;
- }
-
- int Speech_Decode_Frame (
- Speech_Decode_FrameState *st, /* io: post filter states */
- enum Mode mode, /* i : AMR mode */
- Word16 *serial, /* i : serial bit stream */
- enum RXFrameType frame_type, /* i : Frame type */
- Word16 *synth /* o : synthesis speech (postfiltered */
- /* output) */
- )
- {
- Word16 parm[MAX_PRM_SIZE + 1]; /* Synthesis parameters */
- Word16 Az_dec[AZ_SIZE]; /* Decoded Az for post-filter */
- /* in 4 subframes */
- #if !defined(NO13BIT)
- Word16 i;
- #endif
- setCounter(st->complexityCounter);
- Reset_WMOPS_counter (); /* reset WMOPS counter for the new frame */
- /* Serial to parameters */
- test(); test(); sub_ex(0,0); sub_ex(0,0); logic16();
- if ((frame_type == RX_SID_BAD) ||
- (frame_type == RX_SID_UPDATE)) {
- /* Override mode to MRDTX */
- Bits2prm (MRDTX, serial, parm);
- } else {
- Bits2prm (mode, serial, parm);
- }
- /* Synthesis */
- Decoder_amr(st->decoder_amrState, mode, parm, frame_type,
- synth, Az_dec);
- Post_Filter(st->post_state, mode, synth, Az_dec); /* Post-filter */
- /* post HP filter, and 15->16 bits */
- Post_Process(st->postHP_state, synth, L_FRAME);
-
- #if !defined(NO13BIT)
- /* Truncate to 13 bits */
- for (i = 0; i < L_FRAME; i++)
- {
- synth[i] = synth[i] & 0xfff8; logic16 (); move16 ();
- }
- #endif
-
- fwc(); /* function worst case */
- setCounter(0); /* set counter to global counter */
- return 0;
- }
- #ifdef MMS_IO
- /*
- **************************************************************************
- *
- * Function : UnpackBits
- * Purpose : Unpack and re-arrange bits from file storage format to the
- * format required by speech decoder.
- *
- **************************************************************************
- */
- enum RXFrameType UnpackBits (
- Word8 q, /* i : Q-bit (i.e. BFI) */
- Word16 ft, /* i : frame type (i.e. mode) */
- UWord8 packed_bits[], /* i : sorted & packed bits */
- enum Mode *mode, /* o : mode information */
- Word16 bits[] /* o : serial bits */
- )
- {
- Word16 i, sid_type;
- UWord8 *pack_ptr, temp;
- pack_ptr = (UWord8*)packed_bits;
- /* real NO_DATA frame or unspecified frame type */
- if (ft == 15 || (ft > 8 && ft < 15))
- {
- *mode = (enum Mode)-1;
- return RX_NO_DATA;
- }
- temp = *pack_ptr;
- pack_ptr++;
- for (i = 1; i < unpacked_size[ft] + 1; i++)
- {
- if (temp & 0x80) bits[sort_ptr[ft][i-1]] = BIT_1;
- else bits[sort_ptr[ft][i-1]] = BIT_0;
- if (i % 8)
- {
- temp <<= 1;
- }
- else
- {
- temp = *pack_ptr;
- pack_ptr++;
- }
- }
- /* SID frame */
- if (ft == MRDTX)
- {
- if (temp & 0x80) sid_type = 1;
- else sid_type = 0;
- *mode = (enum Mode)((temp >> 4) & 0x07);
- *mode = ((*mode & 0x4) >> 2) | (*mode & 0x2) | ((*mode & 0x1) << 2);
- if (q)
- {
- if (sid_type) return RX_SID_UPDATE;
- else return RX_SID_FIRST;
- }
- else
- {
- return RX_SID_BAD;
- }
- }
- /* speech frame */
- else
- {
- *mode = (enum Mode)ft;
- if (q) return RX_SPEECH_GOOD;
- else return RX_SPEECH_BAD;
- }
- }
- #endif
- ��
|