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

📄 dec_g729_dmy.c

📁 语音压缩算法
💻 C
字号:
/**********************************************************************MPEG-4 Audio VMDecoder core (G729-based)This software module was originally developed bySebastien Etienne (University of Hannover)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.Source file: dec_g729_dmy.c$Id: dec_g729_dmy.c,v 1.7 1999/05/20 10:23:32 purnhage Exp $Required modules:common.o		common modulebitstream.o		bits stream moduleAuthors:CCETT    Sebastien Etienne, CCETT RennesChanges:26-mar-97   CCETT    g729 core**********************************************************************/#include <stdio.h>#include <stdlib.h>#include <string.h>#include "block.h"               /* handler, defines, enums */#include "buffersHandle.h"       /* handler, defines, enums */#include "concealmentHandle.h"   /* handler, defines, enums */#include "interface.h"           /* handler, defines, enums */#include "mod_bufHandle.h"       /* handler, defines, enums */#include "reorderspecHandle.h"   /* handler, defines, enums */#include "resilienceHandle.h"    /* handler, defines, enums */#include "tf_mainHandle.h"       /* handler, defines, enums */#include "nok_ltp_common.h"      /* structs */#include "obj_descr.h"           /* structs */#include "tf_mainStruct.h"       /* structs */#include "common_m4a.h"		/* common module */#include "bitstream.h"		/* bit stream module */#include "flex_mux.h"#include "lpc_common.h"#include "dec_g729.h"		/* decoder cores *//* ---------- declarations ---------- *//* ---------- functions ---------- */char *DecG729Info (  FILE *helpStream)		/* in: print encPara help text to helpStream */				/*     if helpStream not NULL */				/* returns: core version string */{  if (helpStream != NULL) {    fprintf(helpStream,	   "g729 decoder dummy module , g729 decoder not compiled in\n");  }  return "g729 decoder dummy module";}/* DecG729Init() *//* Init G729-based decoder core. */void DecG729Init (  int numChannel,		/* in: num audio channels */  float fSample,		/* in: sampling frequency [Hz] */  float bitRate,		/* in: total bit rate [bit/sec] */  int *frameNumSample,		/* out: num samples per frame */  int *delayNumSample)		/* out: decoder delay (num samples) */{  CommonExit(1,"DecG729Init: dummy module , g729 decoder not compiled in ");}/* DecG729Frame() *//* Decode one bit stream frame into one audio frame with *//* G729-based decoder core. */void DecG729Frame (  BsBitBuffer *bitBuf,		/* in: bit stream frame */  float **sampleBuf,		/* out: audio frame samples */				/*     sampleBuf[frameNumSample] */  int *usedNumBit,		/* out: num bits used for this frame */  int procMode){  CommonExit(1,"DecG729Frame: dummy module , g729 decoder not compiled in");}/* end of dec_g729_dmy.c */

⌨️ 快捷键说明

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