⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 enc_lpc.h

📁 MPEG2/MPEG4编解码参考程序(实现了MPEG4的部分功能)
💻 H
字号:
/**********************************************************************MPEG-4 Audio VMEncoder cores (parametric, LPC-based, t/f-based)This software module was originally developed byHeiko Purnhagen (University of Hannover / ACTS-MoMuSys)and edited byin 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: enc_lpc.h$Id: enc_lpc.h,v 1.3 1999/07/28 14:08:13 purnhage Exp $Authors:HP    Heiko Purnhagen, Uni Hannover <purnhage@tnt.uni-hannover.de>SE    Sebastien Etienne, Jean Bernard Rault CCETT <jbrault@ccett.fr>Changes:14-jun-96   HP    first version18-jun-96   HP    added bit reservoir handling04-jul-96   HP    joined with t/f code by BG (check "DISABLE_TF")09-aug-96   HP    added EncXxxInfo(), EncXxxFree()15-aug-96   HP    changed EncXxxInit(), EncXxxFrame() interfaces to                  enable multichannel signals / float fSample, bitRate26-aug-96   HP    CVS19-feb-97   HP    added include <stdio.h>08-apr-97   BT    added DEncG729Init() EncG729Frame()22-apr-99   HP    created from enc.h**********************************************************************/#ifndef _enc_lpc_h_#define _enc_lpc_h_#include <stdio.h>              /* typedef FILE */#include "bitstreamHandle.h"	/* bit stream handle */#include "obj_descr.h"/* ---------- functions ---------- */#ifdef __cplusplusextern "C" {#endif/* EncLpcInfo() *//* Get info about LPC-based encoder core. */char *EncLpcInfo (  FILE *helpStream);		/* in: print encPara help text to helpStream */				/*     if helpStream not NULL */				/* returns: core version string *//* EncLpcInit() *//* Init LPC-based encoder core. */void EncLpcInit (  int numChannel,		/* in: num audio channels */  float fSample,		/* in: sampling frequency [Hz] */  float bitRate,		/* in: total bit rate [bit/sec] */  char *encPara,		/* in: encoder parameter string */  int varBitRate,		/* in: variable bit rate       */  int *frameNumSample,		/* out: num samples per frame */  int *delayNumSample,		/* out: encoder delay (num samples) */  BsBitBuffer *bitHeader,	/* out: header for bit stream */  ENC_FRAME_DATA* frameData);	/* out: system interface *//* EncLpcFrame() *//* Encode one audio frame into one bit stream frame with *//* LPC-based encoder core. */void EncLpcFrame (  float **sampleBuf,		/* in: audio frame samples */				/*     sampleBuf[numChannel][frameNumSample] */  BsBitBuffer *bitBuf,		/* out: bit stream frame */				/*      or NULL during encoder start up */  int frameAvailNumBit,		/* in: total num bits available for */				/*     this frame (incl. bit reservoir) */  int frameNumBit,		/* in: average num bits per frame */  int frameMaxNumBit);		/* in: max num bits per frame *//* EncLpcFree() *//* Free memory allocated by LPC-based encoder core. */void EncLpcFree (void);#ifdef __cplusplus}#endif#endif	/* #ifndef _enc_lpc_h_ *//* end of enc_lpc.h */

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -