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

📄 enc_par_dmy.c

📁 语音压缩算法
💻 C
字号:
/**********************************************************************MPEG-4 Audio VMEncoder core (parametric)This software module was originally developed byHeiko Purnhagen (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: enc_par_dmy.c$Id: enc_par_dmy.c,v 1.8 1999/07/22 14:12:27 purnhage Exp $Required modules:common.o		common modulecmdline.o		command line modulebitstream.o		bits stream moduleAuthors:HP    Heiko Purnhagen, Uni Hannover <purnhage@tnt.uni-hannover.de>Changes:20-jun-96   HP    dummy core14-aug-96   HP    added EncParInfo(), EncParFree()15-aug-96   HP    adapted to new enc.h26-aug-96   HP    CVS**********************************************************************/#include <stdio.h>#include <stdlib.h>#include <string.h>#include "common_m4a.h"		/* common module */#include "cmdline.h"		/* command line module */#include "bitstream.h"		/* bit stream module */#include "enc_par.h"		/* encoder cores *//* ---------- declarations ---------- */#define PROGVER "parametric encoder core dummy"/* ---------- functions ---------- *//* EncParInfo() *//* Get info about parametric encoder core. */char *EncParInfo (  FILE *helpStream)		/* in: print encPara help text to helpStream */				/*     if helpStream not NULL */				/* returns: core version string */{  if (helpStream != NULL)    fprintf(helpStream,PROGVER "\n\n");  return PROGVER;}/* EncParInit() *//* Init parametric encoder core. */void EncParInit (  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 *frameNumSample,		/* out: num samples per frame */  int *delayNumSample,		/* out: encoder delay (num samples) */  BsBitBuffer *bitHeader)	/* out: header for bit stream */{  CommonExit(1,"EncParInit: dummy");}/* EncParFrame() *//* Encode one audio frame into one bit stream frame with *//* parametric encoder core. */void EncParFrame (  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 */{  CommonExit(1,"EncParFrame: dummy");}/* EncParFree() *//* Free memory allocated by parametric encoder core. */void EncParFree (void){  CommonExit(1,"EncParFree: dummy");}/* EncHvxcInit() *//* Init HVXC encoder core. */void EncHvxcInit (  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 *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(AI 990616) */  ){  CommonExit(1,"EncHvxcInit: dummy");}/* EncHvxcFrame() *//* Encode one audio frame into one bit stream frame with *//* HVXC encoder core. */void EncHvxcFrame (  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 */  ENC_FRAME_DATA* frameData	/* in/out: system interface(AI 990616) */  ){  CommonExit(1,"EncHvxcFrame: dummy");}/* EncHvxcFree() *//* Free memory allocated by HVXC encoder core. */void EncHvxcFree (void){  CommonExit(1,"EncHvxcFree: dummy");}/* end of enc_par_dmy.c */

⌨️ 快捷键说明

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