complex.c
上传用户:cxx_68
上传日期:2021-02-21
资源大小:161k
文件大小:3k
源码类别:

语音压缩

开发平台:

Visual 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. /* Complexity counting functions */
  24. #include <stdio.h>
  25. #include "spbstd.h"
  26. extern int complexity, saturation;
  27. #define MAX_CMPLX 50
  28. long cm_max[MAX_CMPLX];
  29. long max_complexity;
  30. long prev_complexity;
  31. long sat_cnt[MAX_CMPLX];
  32. long prev_saturation = 0;
  33. static long frame = 0;
  34. int cm_index;
  35. /* Complexity_count: update max counter for current index */
  36. int complexity_count()
  37. {
  38.     long temp;
  39.     /* Check maximum complexity for current index */
  40.     temp = complexity - prev_complexity;
  41.     if (temp > cm_max[cm_index])
  42. cm_max[cm_index] = temp;
  43.     /* Check for saturations */
  44.     temp = saturation - prev_saturation;
  45.     if (temp > 0) {
  46. sat_cnt[cm_index] += temp;
  47. printf("%d saturations in frame %d, index %dn",
  48.        (int) temp, (int) frame, (int) cm_index);
  49.     }
  50.     /* Increment index and previous value */
  51.     cm_index++;
  52.     prev_complexity = complexity;
  53.     prev_saturation = saturation;
  54.     /* Check overall total complexity */
  55.     if (complexity > max_complexity)
  56. max_complexity = complexity;
  57.     return(0);
  58. }
  59. /* Complexity_reset: reset counters */
  60. int complexity_reset()
  61. {
  62.     cm_index = 0;
  63.     complexity = 0;
  64.     prev_complexity = 0;
  65.     frame++;
  66.     return(0);
  67. }
  68. /* Complexity_print: print final complexity */
  69. #define C_MOPS ((1.0/1000000)*8000/180) /* convert complexity to WMOPS */
  70. int complexity_print()
  71. {
  72.     int i;
  73.     long cm_total = 0;
  74.     printf("Worst case total WMOPS = %6.2f, saturations = %dn",
  75.    max_complexity*C_MOPS, saturation);
  76.     printf("Individual cases:n");
  77.     for (i = 0; i < MAX_CMPLX; i++) {
  78. if (cm_max[i] == 0) {
  79.     printf("Sum of worst cases = %6.2fn",cm_total*C_MOPS);
  80.     break;
  81. }
  82. else 
  83.     printf("%6.2f  %dn",cm_max[i]*C_MOPS,(int) sat_cnt[i]);
  84. cm_total += cm_max[i];
  85.     }
  86.     return(0);
  87. }
  88.