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

流媒体/Mpeg4/MP4

开发平台:

Visual C++

  1. /**********************************************************************
  2. MPEG-4 Audio VM
  3. Deocoder cores (parametric, LPC-based, t/f-based)
  4. This software module was originally developed by
  5. Heiko Purnhagen (University of Hannover / ACTS-MoMuSys)
  6. and edited by
  7. in the course of development of the MPEG-2 NBC/MPEG-4 Audio standard
  8. ISO/IEC 13818-7, 14496-1,2 and 3. This software module is an
  9. implementation of a part of one or more MPEG-2 NBC/MPEG-4 Audio tools
  10. as specified by the MPEG-2 NBC/MPEG-4 Audio standard. ISO/IEC gives
  11. users of the MPEG-2 NBC/MPEG-4 Audio standards free license to this
  12. software module or modifications thereof for use in hardware or
  13. software products claiming conformance to the MPEG-2 NBC/ MPEG-4 Audio
  14. standards. Those intending to use this software module in hardware or
  15. software products are advised that this use may infringe existing
  16. patents. The original developer of this software module and his/her
  17. company, the subsequent editors and their companies, and ISO/IEC have
  18. no liability for use of this software module or modifications thereof
  19. in an implementation. Copyright is not released for non MPEG-2
  20. NBC/MPEG-4 Audio conforming products. The original developer retains
  21. full right to use the code for his/her own purpose, assign or donate
  22. the code to a third party and to inhibit third party from using the
  23. code for non MPEG-2 NBC/MPEG-4 Audio conforming products. This
  24. copyright notice must be included in all copies or derivative works.
  25. Copyright (c) 1996.
  26. Header file: dec.h
  27. $Id: dec_lpc.h,v 1.2 2002/05/13 15:54:11 mvillari Exp $
  28. Authors:
  29. HP    Heiko Purnhagen, Uni Hannover <purnhage@tnt.uni-hannover.de>
  30. BT    Bodo Teichmann, FhG/IIS <tmn@iis.fhg.de>
  31. Changes:
  32. 18-jun-96   HP    first version
  33. 24-jun-96   HP    fixed comment
  34. 15-aug-96   HP    added DecXxxInfo(), DecXxxFree()
  35.                   changed DecXxxInit(), DecXxxFrame() interfaces to
  36.                   enable multichannel signals / float fSample, bitRate
  37. 26-aug-96   HP    CVS
  38. 03-sep-96   HP    added speed change & pitch change for parametric core
  39. 19-feb-97   HP    added include <stdio.h>
  40. 04-apr-97   BT    added DecG729Init() DecG729Frame()
  41. 09-apr-99   HP    added DecHvxcXxx() from dec_hvxc.h
  42. 22-apr-99   HP    created from dec.h
  43. **********************************************************************/
  44. #ifndef _dec_lpc_h_
  45. #define _dec_lpc_h_
  46. #include <stdio.h>              /* typedef FILE */
  47. #include "bitstreamHandle.h" /* bit stream handle */
  48. #include "obj_descr.h"
  49. #include "lpc_common.h"         /* TDS */
  50. /* ---------- functions ---------- */
  51. #ifdef __cplusplus
  52. extern "C" {
  53. #endif
  54. /* DecLpcInfo() */
  55. /* Get info about LPC-based decoder core. */
  56. char *DecLpcInfo (
  57.   FILE *helpStream); /* in: print decPara help text to helpStream */
  58. /*     if helpStream not NULL */
  59. /* returns: core version string */
  60. /* DecLpcInit() */
  61. /* Init LPC-based decoder core. */
  62. void DecLpcInit (
  63.   int numChannel, /* in: num audio channels */
  64.   float fSample, /* in: sampling frequency [Hz] */
  65.   float bitRate, /* in: total bit rate [bit/sec] */
  66.   char *decPara, /* in: decoder parameter string */
  67.   BsBitBuffer *bitHeader, /* in: header from bit stream */
  68.   int *frameNumSample, /* out: num samples per frame */
  69.   int *delayNumSample); /* out: decoder delay (num samples) */
  70. void DecLpcInitNew (
  71.   char *decPara,                   /* in: decoder parameter string     */
  72.   FRAME_DATA*  frameData,
  73.   LPC_DATA*    lpcData,
  74.   int layer
  75.   ) ;            /* out: decoder delay (num samples) */
  76. /* DecLpcFrame() */
  77. /* Decode one bit stream frame into one audio frame with */
  78. /* LPC-based decoder core. */
  79. void DecLpcFrame (
  80.   BsBitBuffer *bitBuf, /* in: bit stream frame */
  81.   float **sampleBuf, /* out: audio frame samples */
  82. /*     sampleBuf[numChannel][frameNumSample] */
  83.   int *usedNumBit); /* out: num bits used for this frame */
  84. void DecLpcFrameNew (
  85.   BsBitBuffer *bitBuf,    /* in: bit stream frame                      */
  86.   float **sampleBuf,      /* out: audio frame samples                  */
  87.                           /*     sampleBuf[numChannel][frameNumSample] */
  88.   LPC_DATA*    lpcData,
  89.   int *usedNumBit);        /* out: num bits used for this frame         */
  90. /* DecLpcFree() */
  91. /* Free memory allocated by LPC-based decoder core. */
  92. void DecLpcFree (void);
  93. int lpcframelength( CELP_SPECIFIC_CONFIG *celpConf );
  94. #ifdef __cplusplus
  95. }
  96. #endif
  97. #endif /* #ifndef _dec_lpc_h_ */
  98. /* end of dec_lpc.h */