pan_celp_proto.h
上传用户:sun1608
上传日期:2007-02-02
资源大小:6116k
文件大小:4k
源码类别:

流媒体/Mpeg4/MP4

开发平台:

Visual C++

  1. /*
  2. This software module was originally developed by
  3. Naoya Tanaka (Matsushita Communication Industrial Co., Ltd.)
  4. and edited by
  5. Heiko Purnhagen (University of Hannover),
  6. Kazuyuki Iijima (Sony Corporation) and
  7. Yuji Maeda (Sony Corporation)
  8. in the course of development of the
  9. MPEG-2 NBC/MPEG-4 Audio standard ISO/IEC 13818-7, 14496-1,2 and 3.
  10. This software module is an implementation of a part of one or more
  11. MPEG-2 NBC/MPEG-4 Audio tools as specified by the MPEG-2 NBC/MPEG-4 Audio
  12. standard. ISO/IEC  gives users of the MPEG-2 NBC/MPEG-4 Audio standards
  13. free license to this software module or modifications thereof for use in
  14. hardware or software products claiming conformance to the MPEG-2 NBC/
  15. MPEG-4 Audio  standards. Those intending to use this software module in
  16. hardware or software products are advised that this use may infringe
  17. existing patents. The original developer of this software module and
  18. his/her company, the subsequent editors and their companies, and ISO/IEC
  19. have no liability for use of this software module or modifications
  20. thereof in an implementation. Copyright is not released for non
  21. MPEG-2 NBC/MPEG-4 Audio conforming products. The original developer
  22. retains full right to use the code for his/her  own purpose, assign or
  23. donate the code to a third party and to inhibit third party from using
  24. the code for non MPEG-2 NBC/MPEG-4 Audio conforming products.
  25. This copyright notice must be included in all copies or derivative works.
  26. Copyright (c)1996.
  27. */
  28. /* Function prototype difinitions */
  29. /*  Last modified: 11/07/96  N.Tanaka */
  30. /*                 06/18/97  N.Tanaka */
  31. /* 12-nov-96   HP    moved pan_lspqtz2_dd() prototype to libLPC_pan.h */
  32. /* 06-feb-97   HP    removed #include "libLPC_pan.h" */
  33. /* 16-jun-99   YM    added pan_lspdecEP() prototype */
  34. #ifndef _pan_celp_proto_h_
  35. #define _pan_celp_proto_h_
  36. #include "lpc_common.h"
  37. #ifdef __cplusplus
  38. extern "C" {
  39. #endif 
  40. void pan_lspqtz2_dd(float in[], float out_p[], float out[], 
  41.     float weight[], float p_factor, float min_gap, 
  42.     long lpc_order, long num_dc, long idx[], 
  43.     float tbl[], float d_tbl[], float rd_tbl[], 
  44.     long dim_1[], long ncd_1[], long dim_2[], long ncd_2[], long flagStab);
  45. void pan_lspqtz2_ddVR(float in[], float out_p[], float out[],
  46.     float weight[], float p_factor, float min_gap,
  47.     long lpc_order, long num_dc, long idx[],
  48.     float tbl[], float d_tbl[], float rd_tbl[],
  49.     long dim_1[], long ncd_1[], long dim_2[], long ncd_2[], int level,
  50.     int qMode);
  51. void pan_v_qtz_w_dd(float in[], long code[], long cnum, float tbl[], long dim, 
  52.     float wt[], long nd);
  53. void pan_rd_qtz2_w(float in[], float out_p[], float out_v[], long *code, 
  54.     long cnum, float tbl[], long dim, float wt[], float p_factor);
  55. void pan_d_qtz_w(float in[], float out_v[], long *code, long cnum, float tbl[],
  56.     long dim, float wt[]);
  57. void pan_lspdec(float out_p[], float out[], 
  58.     float p_factor, float min_gap, long lpc_order, unsigned long idx[], 
  59.     float tbl[], float d_tbl[], float rd_tbl[], 
  60.     long dim_1[], long ncd_1[], long dim_2[], long ncd_2[], long flagStab, 
  61.     long flagPred);
  62. void pan_stab(float lsp[], float min_gap, long n);
  63. void pan_sort(float x[], long n);
  64. void pan_lsp_interpolation(float PrevLSPCoef[], float LSPCoef[], 
  65.     float IntLSPCoef[], long lpc_order, long n_subframes, long c_subframe);
  66. void pan_mv_cdata(char in[], char out[], long num);
  67. void pan_mv_sdata(short in[], short out[], long num);
  68. void pan_mv_ldata(long in[], long out[], long num);
  69. void pan_mv_fdata(float in[], float out[], long num);
  70. void pan_mv_ddata(double in[], double out[], long num);
  71. #ifdef __cplusplus
  72. }
  73. #endif
  74. #endif