melp_enc.c
上传用户:csczyc
上传日期:2021-02-19
资源大小:1051k
文件大小:8k
源码类别:

语音压缩

开发平台:

C/C++

  1. /*
  2. 2.4 kbps MELP Proposed Federal Standard speech coder
  3. Fixed-point C code, version 1.0
  4. Copyright (c) 1998, Texas Instruments, Inc.  
  5. Texas Instruments has intellectual property rights on the MELP
  6. algorithm.  The Texas Instruments contact for licensing issues for
  7. commercial and non-government use is William Gordon, Director,
  8. Government Contracts, Texas Instruments Incorporated, Semiconductor
  9. Group (phone 972 480 7442).
  10. The fixed-point version of the voice codec Mixed Excitation Linear
  11. Prediction (MELP) is based on specifications on the C-language software
  12. simulation contained in GSM 06.06 which is protected by copyright and
  13. is the property of the European Telecommunications Standards Institute
  14. (ETSI). This standard is available from the ETSI publication office
  15. tel. +33 (0)4 92 94 42 58. ETSI has granted a license to United States
  16. Department of Defense to use the C-language software simulation contained
  17. in GSM 06.06 for the purposes of the development of a fixed-point
  18. version of the voice codec Mixed Excitation Linear Prediction (MELP).
  19. Requests for authorization to make other use of the GSM 06.06 or
  20. otherwise distribute or modify them need to be addressed to the ETSI
  21. Secretariat fax: +33 493 65 47 16.
  22. */
  23. /*                                                                  */
  24. /*  melp.c: Mixed Excitation LPC speech coder                       */
  25. /*                                                                  */
  26. /*  compiler include files  */
  27. #include <stdio.h>
  28. #include <std.h> 
  29. #include "melp429cfg.h"
  30. #include "melp.h"
  31. #include "spbstd.h"
  32. #include "mat.h"
  33. /*  compiler constants */
  34. #define ANA_SYN 0
  35. #define ANALYSIS 1
  36. #define SYNTHESIS 2
  37. /* note: CHSIZE is shortest integer number of words in channel packet */
  38. #define CHSIZE 9
  39. #define NUM_CH_BITS 54
  40. /* global variables for fixed-point library */
  41. int saturation = 0;// complexity, mark del
  42. //int max_complexity = 0;
  43. /*  external memory */
  44. Shortword melpmode = ANA_SYN;
  45. char in_name[80], out_name[80];
  46. void main(int argc, char **argv)
  47. {
  48.     //void parse(int argc, char **argv);
  49.     Shortword i;
  50.     Longword length, frame;
  51.     Shortword eof_reached;
  52. //    Longword num_frames = 0;  //mark
  53.     Shortword speech_in[FRAME];
  54. //    Shortword speech_out[FRAME];//mark
  55.     static struct melp_param melp_par;      /* melp parameters */
  56.     unsigned char chbuf[7];//mark Ushortword CHSIZE -> unsigned char[7]  
  57.     unsigned char tempbuf[7];//mark unsigned int -> unsigned char CHSIZE
  58.     FILE *fp_in, *fp_out;                                                                 /*defined */
  59.     /* Print user message */
  60.    /*printf("n2.4 kb/s Federal Standard MELP speech codern");
  61.    printf("  Fixed-point C simulation, version 1.0nn");*/
  62.     /* Get input parameters from command line */                                           /*input?*/
  63.    //parse(argc, argv);
  64. sprintf(in_name,"F:\melp429\test.pcm"); sprintf(out_name,"F:\melp429\test_buffer");
  65. melpmode = ANALYSIS;//Mark
  66.     /* Open input, output, and parameter files */
  67.     if (( fp_in = fopen(in_name,"rb")) == NULL ) {
  68. printf("  ERROR: cannot read file %s.n",in_name);
  69. exit(1);
  70.     }
  71.     if (( fp_out = fopen(out_name,"wb")) == NULL ) {
  72. printf("  ERROR: cannot write file %s.n",out_name);
  73. exit(1);
  74.     }
  75.     /* Check length of channel input if needed */
  76.  //   if (melpmode == SYNTHESIS) {                                              /*melpmode=2*/
  77. //fseek(fp_in,0L,2);      /* go to end of input file */
  78. //length = ftell(fp_in);
  79. //rewind(fp_in);
  80. //num_frames = (Longword)(0.5 + length * (8.0/NUM_CH_BITS) * (6.0/32));
  81. //
  82.  //   }
  83.     /* Initialize MELP analysis and synthesis */
  84.    // if (melpmode != SYNTHESIS)                                               /*melpmode!=2*/
  85.       melp_ana_init();
  86.     //if (melpmode != ANALYSIS)                                                 /*melpmode!=1*/
  87.     //  melp_syn_init();
  88.     /* Run MELP coder on input signal */
  89.     frame = 0;
  90.     melp_par.chptr = chbuf;
  91.     melp_par.chbit = 0;
  92.     eof_reached = 0;
  93.     while (eof_reached == 0) {
  94. //#if (COMPLEXITY_COUNT)
  95. // complexity_reset();
  96. //#endif
  97. /* Perform MELP analysis */
  98. // if (melpmode != SYNTHESIS) {
  99.     /* read input speech */
  100.     length = readbl(speech_in,fp_in,FRAME);
  101.     if (length < FRAME) {
  102. v_zap(&speech_in[length],(Shortword)(FRAME-length));
  103. eof_reached = 1;
  104.     }
  105.     /* Run MELP analyzer */
  106. //     if (melpmode == ANA_SYN) {
  107. // /* reset pointers to short channel buffer */
  108. // melp_par.chptr = chbuf;
  109. // melp_par.chbit = 0;
  110. //     }
  111.     melp_ana(speech_in,&melp_par);
  112.  
  113.     /* Write channel output if needed */
  114.     if (melpmode == ANALYSIS && melp_par.chbit == 0) {
  115.         for (i = 0; i < 7; i++)//mark chsize -> 7
  116. //     tempbuf[i] = (int)chbuf[i];
  117.             tempbuf[i]=chbuf[i];    
  118. fwrite((void *) tempbuf,sizeof(char),
  119.        7,fp_out);//mark char->int   melp_par.chptr-chbuf->7
  120. /* reset pointer to short channel buffer */
  121. melp_par.chptr = chbuf;
  122.     }
  123.     if (melp_par.chptr >= &chbuf[7] && melp_par.chbit > 0) { //melp_par.chptr-chbuf->7
  124. printf("nERROR: Ran out of channel buffer memory.n");
  125. exit(1);
  126.     }
  127. // }          
  128. /* Perform MELP synthesis (skip first frame) */
  129. //if (melpmode != ANALYSIS) {
  130. //    if (melpmode == ANA_SYN) {
  131. // /* reset pointers to short channel buffer */
  132. // melp_par.chptr = chbuf;
  133. // melp_par.chbit = 0;
  134. //    }
  135. //    /* Read channel input if needed */
  136. //    if (melpmode == SYNTHESIS && melp_par.chbit == 0) {
  137. // fread((void *) tempbuf,sizeof(int),CHSIZE,fp_in);
  138. // for (i = 0; i <CHSIZE; i++)
  139. //   chbuf[i] = (Shortword)tempbuf[i];
  140. // /* reset pointer to short channel buffer */
  141. // melp_par.chptr = chbuf;
  142. //    }
  143. //    melp_syn(&melp_par,speech_out);
  144. //    if (frame > 0)
  145. //      writebl(speech_out,fp_out,FRAME);
  146. //}
  147. frame++; 
  148. /*if (melpmode == SYNTHESIS) {
  149.     if (frame >= num_frames)
  150.       eof_reached = 1;
  151. }*/
  152.     }
  153.  
  154.     /* Write channel output if needed */
  155. //    if (melpmode == ANALYSIS) {
  156. //      if (melp_par.chbit > 0) {
  157. //   for (i = 0; i < CHSIZE; i++)
  158. //       tempbuf[i] = (int)chbuf[i];
  159. //   fwrite((void *) tempbuf,sizeof(int),melp_par.chptr-chbuf+1,fp_out);
  160. //      }
  161. //      else {
  162. //   for (i = 0; i < CHSIZE; i++)
  163. //       tempbuf[i] = (int)chbuf[i];
  164. //   fwrite((void *) tempbuf,sizeof(int),melp_par.chptr-chbuf,fp_out);
  165. //      }
  166. //    }
  167. //#if (COMPLEXITY_COUNT)
  168. //    complexity_print();
  169. //#endif
  170.     fclose(fp_in);
  171.     fclose(fp_out);
  172. }
  173. //void parse(int argc,char **argv){
  174. //
  175. //    int error_flag;
  176. //
  177. //    error_flag = 0;
  178. //    if (argc < 2)
  179. //      error_flag = 1;
  180. //    melpmode = ANA_SYN;
  181. //    while ((--argc>0) && ((*++argv)[0] == '-')){
  182. // switch ((*argv)[1]){ 
  183. //   case 'a':
  184. //     melpmode=ANALYSIS; break;
  185. //   case 's':
  186. //     melpmode=SYNTHESIS; break;
  187. //   case 'i':
  188. //     sscanf(*++argv,"%s",in_name); --argc; break;
  189. //   case 'o':
  190. //     sscanf(*++argv,"%s",out_name); --argc; break;
  191. //   default:
  192. //     error_flag = 1;
  193. //     break;
  194. // }
  195. //    }
  196. //
  197. //    if (error_flag == 1) {
  198. // fprintf(stderr,"Usage:nn"); 
  199. // fprintf(stderr,"Analysis/synthesis: melp -i infile -o outfilen");
  200. // fprintf(stderr,"Analysis only:  melp -a -i infile  -o bitfilen"); 
  201. // fprintf(stderr,"Synthesis only: melp -s -i bitfile -o outfilen");
  202. //        exit(1);
  203. //    }
  204. //    if (melpmode == ANA_SYN)
  205. //      printf(" MELP analysis and synthesis n");
  206. //    else if (melpmode == ANALYSIS)
  207. //      printf(" MELP analysis n");
  208. //    else if (melpmode == SYNTHESIS)
  209. //      printf(" MELP synthesis n");
  210. //
  211. //    printf("   input from %sn   output to %s.n",in_name, out_name);
  212. //
  213. //}