📄 dec_tf_dmy.c
字号:
/**********************************************************************MPEG-4 Audio VMDecoder core (t/f-based)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: dec_tf_dmy.c$Id: dec_tf_dmy.c,v 1.18 1999/05/20 18:55:51 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:24-jun-96 HP dummy core15-aug-96 HP adapted to new dec.h26-aug-96 HP CVS**********************************************************************/#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 "lpc_common.h" /* structs */#include "nok_ltp_common.h" /* structs */#include "obj_descr.h" /* structs */#include "tf_mainStruct.h" /* structs */#include "common_m4a.h" /* common module */#include "cmdline.h" /* command line module */#include "bitstream.h" /* bit stream module */#include "dec_tf.h" /* decoder cores *//* ---------- declarations ---------- */#define PROGVER "t/f-based decoder core dummy"/* ---------- functions ---------- *//* DecTfInfo() *//* Get info about t/f-based decoder core. */char *DecTfInfo ( FILE *helpStream) /* in: print decPara help text to helpStream */ /* if helpStream not NULL */ /* returns: core version string */{ if (helpStream != NULL) fprintf(helpStream,PROGVER "\n\n"); return PROGVER;}/* DecTfInit() *//* Init t/f-based decoder core. */void DecTfInit ( int numChannel, /* in: num audio channels */ float fSample, /* in: sampling frequancy [Hz] */ float bitRate, /* in: bit rate [bit/sec] */ char* decPara, /* in: decoder parameter string */ int profile, /* in: bitstream profile as indicated in the ADIF header */ BsBitBuffer* bitHeader, /* in: header from bit stream */ int* frameNumSample, /* out: num samples per frame */ int* delayNumSample, /* out: encoder delay (num samples) */ char* aacDebugStr, HANDLE_BUFFER* hVm, HANDLE_BUFFER* hHcrSpecData, FRAME_DATA* frameData, TF_DATA* tfData, ntt_DATA* nttData, int mainDebugLevel){ CommonExit(1,"DecTfInit: dummy");}void DecTfInitNew ( char* decPara, /* in: decoder parameter string */ char* aacDebugStr, HANDLE_BUFFER* hVm, HANDLE_BUFFER* hHcrSpecData, FRAME_DATA* frameData, TF_DATA* tfData, LPC_DATA* lpcData, ntt_DATA* nttData, int mainDebugLevel, int layer ){ CommonExit(1,"DecTfInitNew: dummy");}/* DecTfFrame() *//* Decode one bit stream frame into one audio frame with *//* t/f-based decoder core. */void DecTfFrame ( BsBitBuffer* bitBuf, /* in: bit stream frame */ float** sampleBuf, /* out: frameNumSample audio samples */ int* usedNumBit, /* out: num bits used for this frame */ int numChannels, int mainDebugLevel, HANDLE_FAULT_TOLERANT hFault, /**TM9902*/ HANDLE_RESILIENCE hResilience, /* in: handler for error resilience info */ HANDLE_BUFFER hVm, HANDLE_BUFFER hHcrSpecData, HANDLE_HCR hHcrInfo , FRAME_DATA* frameData, TF_DATA* tfData, ntt_DATA* nttData, HANDLE_EP_INFO hEpInfo, HANDLE_CONCEALMENT hConcealment){ CommonExit(1,"DecTfFrame: dummy");}void DecTfFrameNew( int numChannels, FRAME_DATA* fd, /* config data ,one bitstream buffer for each layer, obj descr. etc. */ TF_DATA* tfData, LPC_DATA* lpcData, ntt_DATA* nttData, HANDLE_FAULT_TOLERANT hFault, QC_MOD_SELECT qc_select ){ CommonExit(1,"DecTfFrameNew: dummy");}/* DecTfFree() *//* Free memory allocated by t/f-based decoder core. */void DecTfFree ( HANDLE_EP_INFO hEpInfo, HANDLE_RESILIENCE hResilience ){ CommonExit(1,"DecTfFree: dummy");}/* end of dec_tf_dmy.c */
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -