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

流媒体/Mpeg4/MP4

开发平台:

Visual C++

  1. /*
  2. This software module was originally developed by
  3. Heiko Purnhagen (University of Hannover)
  4. and edited by
  5. in the course of development of the
  6. MPEG-2 NBC/MPEG-4 Audio standard ISO/IEC 13818-7, 14496-1,2 and 3.
  7. This software module is an implementation of a part of one or more
  8. MPEG-2 NBC/MPEG-4 Audio tools as specified by the MPEG-2 NBC/MPEG-4 Audio
  9. standard. ISO/IEC  gives users of the MPEG-2 NBC/MPEG-4 Audio standards
  10. free license to this software module or modifications thereof for use in
  11. hardware or software products claiming conformance to the MPEG-2 NBC/
  12. MPEG-4 Audio  standards. Those intending to use this software module in
  13. hardware or software products are advised that this use may infringe
  14. existing patents. The original developer of this software module and
  15. his/her company, the subsequent editors and their companies, and ISO/IEC
  16. have no liability for use of this software module or modifications
  17. thereof in an implementation. Copyright is not released for non
  18. MPEG-2 NBC/MPEG-4 Audio conforming products. The original developer
  19. retains full right to use the code for his/her  own purpose, assign or
  20. donate the code to a third party and to inhibit third party from using
  21. the code for non MPEG-2 NBC/MPEG-4 Audio conforming products.
  22. This copyright notice must be included in all copies or derivative works.
  23. Copyright (c)1996.
  24. */
  25. /**********************************************************************
  26. MPEG-4 Audio VM
  27. Source file: lpc_common.h
  28. $Id: lpc_common.h,v 1.2 2002/05/13 15:54:11 mvillari Exp $
  29. Authors:
  30. HP    Heiko Purnhagen, Uni Hannover <purnhage@tnt.uni-hannover.de>
  31. Changes:
  32. 25-oct-96   HP    common BITSTREAM and MAX_N_LAG_CANDIDATES
  33. **********************************************************************/
  34. #ifndef _lpc_common_h_
  35. #define _lpc_common_h_
  36. #include "bitstreamHandle.h"     /* handler */
  37. /* see wdbxx.h and lpc_abscomp.ch */
  38. #define MAX_N_LAG_CANDIDATES  15
  39. #define MultiPulseExc  0
  40. #define RegularPulseExc 1
  41. typedef enum {
  42.          fs8kHz=  0,
  43.          fs16kHz= 1
  44. } LPC_FS_MODE;
  45. #define ScalarQuantizer 0
  46. #define VectorQuantizer 1
  47. #define Scalable_VQ 0
  48. #define Optimized_VQ 1
  49. #define OFF 0
  50. #define ON  1
  51. #define NO 0
  52. #define YES 1
  53. typedef struct {
  54.   int          frameNumSample;             /* out: num samples per frame       */
  55.   int          delayNumSample;
  56.   BsBitStream* p_bitstream;
  57.   BsBitBuffer* coreBitBuf;
  58.   float**      sampleBuf;
  59.   int          bitsPerFrame;
  60. } LPC_DATA;  
  61. #endif  /* #ifndef _lpc_common_h_ */
  62. /* end of lpc_common.h */