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

📄 enc_g723_dmy.c

📁 MPEG2/MPEG4编解码参考程序(实现了MPEG4的部分功能)
💻 C
字号:
/**********************************************************************MPEG-4 Audio VMCoder core (G723-based)This software module was originally developed bySebastien Etienne (CCETT)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) 1997.Source file: dec_g723_dmy.c$Id: enc_g723_dmy.c,v 1.6 1999/04/23 16:02:05 purnhage Exp $Required modules:common.o		common modulebitstream.o		bits stream moduleAuthors:SE    Sebastien Etienne, Jean Bernard Rault, CCETT <jbrault@ccett.fr>Changes:05-may-97   SE    g723 core13-may-97   SE   integration in the VM.**********************************************************************/#include <stdio.h>#include <stdlib.h>#include <string.h>#include "buffersHandle.h"       /* handler, defines, enums */#include "common_m4a.h"		/* common module */#include "bitstream.h"		/* bit stream module *//* HP 971110 */#include "enc_g723.h"		/* encoder cores */#define PROGVER "ITU-T G.723.1 Floating Point Speech Coder ANSI C Source Code. Version 5.1F"/* ---------- declarations ---------- *//* ---------- functions ---------- *//* EncG723Info() *//* Get info about G723-based encoder core. */char *EncG723Info (  FILE *helpStream)		/* in: print encPara help text to helpStream */				/*     if helpStream not NULL */				/* returns: core version string */{  if (helpStream != NULL)    fprintf(helpStream,	   "g723 encoder dummy module , g723 encoder not compiled in\n");  return "g723 encoder dummy module";}/* EncG723Init() *//* Init G723-based coder core. */void EncG723Init (  int numChannel,		/* in: num audio channels */  float fSample,		/* in: sampling frequency [Hz] */  float bitRate,		/* in: total bit rate [bit/sec] */  char *encPara,		/* in: coder parameter string */  long encNumSample,		/* in : number of samples to be encoded */  int *frameNumSample,		/* out: num samples per frame */  int *delayNumSample,		/* out: decoder delay (num samples) */  BsBitBuffer *bitHeader)	/* out: header from bit stream */{  CommonExit(1,"EncG723Init: dummy");}/* EncG723Frame() *//* Code one bit stream frame into one audio frame with *//* G723-based decoder core. */void EncG723Frame (  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                */  int numSample)	  /* in: number of sample red		       */{  CommonExit(1,"EncG723Frame: dummy");}/* end of enc_g723_dmy.c */

⌨️ 快捷键说明

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