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

📄 lpc_common.h

📁 语音压缩算法
💻 H
字号:
/*This software module was originally developed byHeiko Purnhagen (University of Hannover)and edited byin the course of development of theMPEG-2 NBC/MPEG-4 Audio standard ISO/IEC 13818-7, 14496-1,2 and 3.This software module is an implementation of a part of one or moreMPEG-2 NBC/MPEG-4 Audio tools as specified by the MPEG-2 NBC/MPEG-4 Audiostandard. ISO/IEC  gives users of the MPEG-2 NBC/MPEG-4 Audio standardsfree license to this software module or modifications thereof for use inhardware or software products claiming conformance to the MPEG-2 NBC/MPEG-4 Audio  standards. Those intending to use this software module inhardware or software products are advised that this use may infringeexisting patents. The original developer of this software module andhis/her company, the subsequent editors and their companies, and ISO/IEChave no liability for use of this software module or modificationsthereof in an implementation. Copyright is not released for nonMPEG-2 NBC/MPEG-4 Audio conforming products. The original developerretains full right to use the code for his/her  own purpose, assign ordonate the code to a third party and to inhibit third party from usingthe code for non MPEG-2 NBC/MPEG-4 Audio conforming products.This copyright notice must be included in all copies or derivative works.Copyright (c)1996.*//**********************************************************************MPEG-4 Audio VMSource file: lpc_common.h$Id: lpc_common.h,v 1.9 1999/04/22 16:22:24 purnhage Exp $Authors:HP    Heiko Purnhagen, Uni Hannover <purnhage@tnt.uni-hannover.de>Changes:25-oct-96   HP    common BITSTREAM and MAX_N_LAG_CANDIDATES**********************************************************************/#ifndef _lpc_common_h_#define _lpc_common_h_#include "bitstreamHandle.h"     /* handler *//* see wdbxx.h and lpc_abscomp.ch */#define MAX_N_LAG_CANDIDATES  15#define MultiPulseExc  0#define RegularPulseExc 1typedef enum {         fs8kHz=  0,         fs16kHz= 1} LPC_FS_MODE;#define ScalarQuantizer 0#define VectorQuantizer 1#define Scalable_VQ 0#define Optimized_VQ 1#define OFF 0#define ON  1#define NO 0#define YES 1typedef struct {  int          frameNumSample;             /* out: num samples per frame       */  int          delayNumSample;  BsBitStream* p_bitstream;  BsBitBuffer* coreBitBuf;  float**      sampleBuf;  int          bitsPerFrame;} LPC_DATA;  #endif  /* #ifndef _lpc_common_h_ *//* end of lpc_common.h */

⌨️ 快捷键说明

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