www.pudn.com > g729AnnexA.rar > DECODER.C


/* ITU-T G.729 Software Package Release 2 (November 2006) */ 
/* 
   ITU-T G.729A Speech Coder    ANSI-C Source Code 
   Version 1.1    Last modified: September 1996 
 
   Copyright (c) 1996, 
   AT&T, France Telecom, NTT, Universite de Sherbrooke 
   All rights reserved. 
*/ 
 
/*-----------------------------------------------------------------* 
 * Main program of the G.729a 8.0 kbit/s decoder.                  * 
 *                                                                 * 
 *    Usage : decoder  bitstream_file  synth_file                  * 
 *                                                                 * 
 *-----------------------------------------------------------------*/ 
 
#include  
#include  
 
#include "typedef.h" 
#include "basic_op.h" 
#include "ld8a.h" 
 
 Word16 bad_lsf;        /* bad LSF indicator   */ 
 
/* 
   This variable should be always set to zero unless transmission errors 
   in LSP indices are detected. 
   This variable is useful if the channel coding designer decides to 
   perform error checking on these important parameters. If an error is 
   detected on the  LSP indices, the corresponding flag is 
   set to 1 signalling to the decoder to perform parameter substitution. 
   (The flags should be set back to 0 for correct transmission). 
*/ 
 
/*-----------------------------------------------------------------* 
 *            Main decoder routine                                 * 
 *-----------------------------------------------------------------*/ 
 
int main(int argc, char *argv[] ) 
{ 
  Word16  synth_buf[L_FRAME+M], *synth; /* Synthesis                   */ 
  Word16  parm[PRM_SIZE+1];             /* Synthesis parameters        */ 
  Word16  serial[SERIAL_SIZE];          /* Serial stream               */ 
  Word16  Az_dec[MP1*2];                /* Decoded Az for post-filter  */ 
  Word16  T2[2];                        /* Pitch lag for 2 subframes   */ 
 
 
  Word16  i, frame; 
  FILE   *f_syn, *f_serial; 
 
  printf("\n"); 
  printf("************   G.729a 8.0 KBIT/S SPEECH DECODER  ************\n"); 
  printf("\n"); 
  printf("------------------- Fixed point C simulation ----------------\n"); 
  printf("\n"); 
  printf("------------ Version 1.1 (Release 2, November 2006) --------\n"); 
  printf("\n"); 
 
   /* Passed arguments */ 
 
   if ( argc != 3) 
     { 
        printf("Usage :%s bitstream_file  outputspeech_file\n",argv[0]); 
        printf("\n"); 
        printf("Format for bitstream_file:\n"); 
        printf("  One (2-byte) synchronization word \n"); 
        printf("  One (2-byte) size word,\n"); 
        printf("  80 words (2-byte) containing 80 bits.\n"); 
        printf("\n"); 
        printf("Format for outputspeech_file:\n"); 
        printf("  Synthesis is written to a binary file of 16 bits data.\n"); 
        exit( 1 ); 
     } 
 
   /* Open file for synthesis and packed serial stream */ 
 
   if( (f_serial = fopen(argv[1],"rb") ) == NULL ) 
     { 
        printf("%s - Error opening file  %s !!\n", argv[0], argv[1]); 
        exit(0); 
     } 
 
   if( (f_syn = fopen(argv[2], "wb") ) == NULL ) 
     { 
        printf("%s - Error opening file  %s !!\n", argv[0], argv[2]); 
        exit(0); 
     } 
 
   printf("Input bitstream file  :   %s\n",argv[1]); 
   printf("Synthesis speech file :   %s\n",argv[2]); 
 
/*-----------------------------------------------------------------* 
 *           Initialization of decoder                             * 
 *-----------------------------------------------------------------*/ 
 
  for (i=0; i