📄 dec_par.h
字号:
/**********************************************************************MPEG-4 Audio VMDeocoder cores (parametric, LPC-based, t/f-based)This software module was originally developed byHeiko Purnhagen (University of Hannover / ACTS-MoMuSys)and edited byAkira Inoue (Sony Corporation) andYuji Maeda (Sony Corporation)in the course of development of the MPEG-2 NBC/MPEG-4 Audio standardISO/IEC 13818-7, 14496-1,2 and 3. This software module is animplementation of a part of one or more MPEG-2 NBC/MPEG-4 Audio toolsas specified by the MPEG-2 NBC/MPEG-4 Audio standard. ISO/IEC givesusers of the MPEG-2 NBC/MPEG-4 Audio standards free license to thissoftware module or modifications thereof for use in hardware orsoftware products claiming conformance to the MPEG-2 NBC/ MPEG-4 Audiostandards. Those intending to use this software module in hardware orsoftware products are advised that this use may infringe existingpatents. The original developer of this software module and his/hercompany, the subsequent editors and their companies, and ISO/IEC haveno liability for use of this software module or modifications thereofin an implementation. Copyright is not released for non MPEG-2NBC/MPEG-4 Audio conforming products. The original developer retainsfull right to use the code for his/her own purpose, assign or donatethe code to a third party and to inhibit third party from using thecode for non MPEG-2 NBC/MPEG-4 Audio conforming products. Thiscopyright notice must be included in all copies or derivative works.Copyright (c) 1996.Header file: dec_par.h$Id: dec_par.h,v 1.3 1999/07/22 14:12:24 purnhage Exp $Authors:HP Heiko Purnhagen, Uni Hannover <purnhage@tnt.uni-hannover.de>BT Bodo Teichmann, FhG/IIS <tmn@iis.fhg.de>Changes:18-jun-96 HP first version24-jun-96 HP fixed comment15-aug-96 HP added DecXxxInfo(), DecXxxFree() changed DecXxxInit(), DecXxxFrame() interfaces to enable multichannel signals / float fSample, bitRate26-aug-96 HP CVS03-sep-96 HP added speed change & pitch change for parametric core19-feb-97 HP added include <stdio.h>04-apr-97 BT added DecG729Init() DecG729Frame()09-apr-99 HP added DecHvxcXxx() from dec_hvxc.h22-apr-99 HP created from dec.h**********************************************************************/#ifndef _dec_par_h_#define _dec_par_h_#include <stdio.h> /* typedef FILE */#include "bitstreamHandle.h" /* bit stream handle */#include "dec_hvxc.h"/* ---------- functions ---------- */#ifdef __cplusplusextern "C" {#endif/* DecHvxcInfo() *//* Get info about HVXC decoder core. */char *DecHvxcInfo ( FILE *helpStream); /* in: print decPara help text to helpStream */ /* if helpStream not NULL */ /* returns: core version string *//* DecHvxcInitNew() *//* Init HVXC decoder core for system interface(AI 990616) */HvxcDecStatus *DecHvxcInitNew ( char *decPara, /* in: decoder parameter string */ FRAME_DATA *fD, /* in: system interface */ int layer /* in: number of layer */); /* DecHvxcInit() *//* Init HVXC decoder core. */HvxcDecStatus *DecHvxcInit ( int numChannel, /* in: num audio channels */ float fSample, /* in: sampling frequency [Hz] */ float bitRate, /* in: total bit rate [bit/sec] */ char *decPara, /* in: decoder parameter string */ BsBitBuffer *bitHeader, /* in: header from bit stream */ int *frameMaxNumSample, /* out: max num samples per frame */ int *delayNumSample /* out: decoder delay (num samples) */ );/* DecHvxcFrame() *//* Decode one bit stream frame into one audio frame with *//* HVXC decoder core. */void DecHvxcFrame ( HvxcDecStatus *HDS, /* in: HVXC decoder status handle */ BsBitBuffer *bitBuf, /* in: bit stream frame */ float **sampleBuf, /* out: audio frame samples */ /* sampleBuf[numChannel][frameNumSample] */ int *usedNumBit, /* out: num bits used for this frame */ int *frameBufNumSample, /* out: num samples in sampleBuf[][] */ float speedFact, /* in: speed change factor(AI 990209) */ float pitchFact /* in: pitch change factor(AI 990209) */ );/* DecHvxcFree() *//* Free memory allocated by parametric decoder core. */void DecHvxcFree ( HvxcDecStatus *HDS /* in: HVXC decoder status handle */);/* DecParInfo() *//* Get info about parametric decoder core. */char *DecParInfo ( FILE *helpStream); /* in: print decPara help text to helpStream */ /* if helpStream not NULL */ /* returns: core version string *//* DecParInit() *//* Init parametric decoder core. */void DecParInit ( int numChannel, /* in: num audio channels */ float fSample, /* in: sampling frequency [Hz] */ float bitRate, /* in: total bit rate [bit/sec] */ char *decPara, /* in: decoder parameter string */ BsBitBuffer *bitHeader, /* in: header from bit stream */ int *frameMaxNumSample, /* out: max num samples per frame */ int *delayNumSample /* out: decoder delay (num samples) */ );/* DecParFrame() *//* Decode one bit stream frame into one audio frame with *//* parametric decoder core. */void DecParFrame ( BsBitBuffer *bitBuf, /* in: bit stream frame */ float **sampleBuf, /* out: audio frame samples */ /* sampleBuf[numChannel][frameNumSample] */ int *usedNumBit, /* out: num bits used for this frame */ int *frameBufNumSample, /* out: num samples in sampleBuf[][] */ float speedFact, /* in: speed change factor(AI 990209) */ float pitchFact /* in: pitch change factor(AI 990209) */ );/* DecParFree() *//* Free memory allocated by parametric decoder core. */void DecParFree (void);#ifdef __cplusplus}#endif#endif /* #ifndef _dec_par_h_ *//* end of dec_par.h */
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -