125332697

所属分类:语音压缩
开发工具:Visual C++
文件大小:112KB
下载次数:60
上传日期:2006-05-30 11:34:42
上 传 者lsn2000
说明:  G.729 coder and decoder, ANSI C, for windows, unix, DSP, etc.
(G.729 coder and decoder, ANSI C, for windows, unix, DSP, etc..)

文件列表:
125332697\acelp_co.c (27921, 2006-04-26)
125332697\basic_op.c (103911, 2000-11-04)
125332697\basic_op.h (3412, 2000-11-04)
125332697\bits.c (6602, 2000-11-04)
125332697\calcexc.c (9303, 2000-11-04)
125332697\coder.c (4942, 2006-05-08)
125332697\coder.mak (3695, 2000-11-03)
125332697\cod_ld8k.c (27877, 2000-11-04)
125332697\decoder.c (4797, 2000-11-04)
125332697\decoder.mak (3149, 2000-11-03)
125332697\decoder.ncb (33792, 2006-04-19)
125332697\decoder.opt (48640, 2006-04-19)
125332697\dec_gain.c (4884, 2000-11-04)
125332697\dec_lag3.c (2245, 2000-11-04)
125332697\dec_ld8k.c (12949, 2000-11-04)
125332697\dec_sid.c (5591, 2000-11-03)
125332697\de_acelp.c (1906, 2000-11-04)
125332697\dspfunc.c (8097, 2000-11-04)
125332697\dtx.c (12065, 2000-11-04)
125332697\dtx.h (4373, 2000-11-04)
125332697\filter.c (3836, 2000-11-04)
125332697\gainpred.c (7700, 2000-11-04)
125332697\ld8k.h (32456, 2000-11-04)
125332697\lpc.c (23559, 2000-11-04)
125332697\lpcfunc.c (11897, 2000-11-04)
125332697\lspdec.c (3423, 2000-11-04)
125332697\lspgetq.c (5822, 2000-11-04)
125332697\octet.h (678, 2000-11-04)
125332697\oper_32b.c (12441, 2000-11-04)
125332697\oper_32b.h (550, 2000-11-04)
125332697\pitch.c (21020, 2000-11-04)
125332697\post_pro.c (3055, 2000-11-04)
125332697\pred_lt3.c (1820, 2000-11-04)
125332697\pre_proc.c (3132, 2000-11-04)
125332697\pst.c (33293, 2000-11-04)
125332697\pwf.c (5999, 2000-11-04)
125332697\p_parity.c (1569, 2000-11-04)
125332697\qsidgain.c (3679, 2000-11-04)
125332697\qsidlsf.c (11324, 2000-11-04)
125332697\qua_gain.c (19880, 2000-11-04)
... ...

ITU-T G.729 Annex B ANSI-C Source Code Version 1.4 Last modified: November, 2000 */ TITLE ----- Fixed-point description of Recommendation G.729 with ANNEX B Coding of Speech at 8 kbit/s using Conjugate-Structure Algebraic-Code-Excited Linear-Prediction (CS-ACELP) with Voice Activity Decision(VAD), Discontinuous Transmission(DTX), and Comfort Noise Generation(CNG). SOFTWARE AND INTELLECTUAL PROPERTY ---------------------------------- This software package is provided as part of ITU-T Recommendation G.729B. Copyright (c) 1996, AT&T, France Telecom, Lucent Technologies, NTT, Rockwell International, Universite de Sherbrooke. All rights reserved. The copy of the source C code, version 1.4, is given under Copyright of the authors, only for the purpose of establishing the specification of a codec. VERSION ------- This is version 1.4. ---------------------------------------------------------------------------- Differences between Version 1.2 and Version 1.1 : In version 1.2, tab_dtx.h, tab_dtx.c, vad.c and calcexc.c were updated as per Corrigendum to annex B of G.729 published in COM 16-R20 of june 1997. ---------------------------------------------------------------------------- Differences between Version 1.3 and Version 1.2 : file : DEC_LD8K.C ***************** Version 1.2 lines 147 to 149 : ---------------------------------------------------------------------------- if(bfi == 1) if(past_ftyp == 1) ftyp = 1; else ftyp = 0; ---------------------------------------------------------------------------- replaced in Version 1.3 by lines 147 to 149 : ---------------------------------------------------------------------------- if(bfi == 1) { if(past_ftyp == 1) ftyp = 1; else ftyp = 0; *parm = ftyp; /* modification introduced in version V1.3 */ } file : BITS.C ************* function : read_frame() ---------------------------------------------------------------------------- Version 1.2 line 221-226 : ---------------------------------------------------------------------------- /* the hardware detects frame erasures by checking if all bits are set to zero */ parm[0] = 0; /* No frame erasure */ for (i=0; i < serial[1]; i++) if (serial[i+2] == 0 ) parm[0] = 1; /* frame erased */ ---------------------------------------------------------------------------- replaced in Version 1.3 by lines 219-230 : ---------------------------------------------------------------------------- /* This part was modified for version V1.3 */ /* for speech and SID frames, the hardware detects frame erasures by checking if all bits are set to zero */ /* for untransmitted frames, the hardware detects frame erasures by testing serial[0] */ parm[0] = 0; /* No frame erasure */ if(serial[1] != 0) { for (i=0; i < serial[1]; i++) if (serial[i+2] == 0 ) parm[0] = 1; /* frame erased */ } else if(serial[0] != SYNC_WORD) parm[0] = 1; ---------------------------------------------------------------------------- Differences between Version 1.4 and Version 1.3 : In Version 1.4 the initialization of lspSid in dec_sid.c has been updated according to the Corrigendum to Annex B of G.729 published in COM 16-R 60-E. In terms of functionality, only the file dec_sid.c has changed. For compilation purposes the two makefiles were changed, and the version number was changed in coder.c and decoder.c. The changes from Version 1.3 to Version 1.4 do not affect the test vectors. ---------------------------------------------------------------------------- DESCRIPTION ----------- This package includes the files needed to build the fixed point version of the G.729 codec with VAD/DTX/CNG as described in ANNEX B. It includes also the PC executable (coder.exe and decoder.exe), a batch file (test.bat), speech (test.inp) and data files (test.bit and test.syn) to verify the execution. The binary reference files are in PC format. SIMILARITIES AND DIFFERENCES WITH G.729 --------------------------------------- Common files with G.729 ~~~~~~~~~~~~~~~~~~~~~~~ acelp_co.c basic_op.c de_acelp.c dec_gain.c dec_lag3.c dspfunc.c filter.c gainpred.c lpcfunc.c lspgetq.c oper_32b.c p_parity.c pitch.c post_pro.c pre_proc.c pred_lt3.c pwf.c qua_gain.c basic_op.h oper_32b.h typedef.h File extracted from G.729 file ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ taming.c Files in G.729 but modified for ANNEX B ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ bits.c cod_ld8k.c coder.c dec_ld8k.c decoder.c lpc.c lspdec.c pst.c qua_lsp.c tab_ld8k.c util.c ld8k.h tab_ld8k.h Files only in ANNEX B ~~~~~~~~~~~~~~~~~~~~~ calcexc.c dec_sid.c dtx.c qsidgain.c qsidlsf.c tab_dtx.c vad.c dtx.h octet.h sid.h tab_dtx.h vad.h COMPILATION ----------- Edit the file typedef.h to comply to your target platform For UNIX systems the following makefiles are provided coder.mak decoder.mak Edit the makefiles coder.mak and decoder.mak to set the proper options for your system. The command to compile and link all code on a UNIX system is make -f coder.mak make -f decoder.mak For other platforms, the *.mak files can be used to work out the compilation procedures. This code has been successfully compiled and run on the following platforms: Platform Operating System Compiler ----------------------------------------------------------------------------- DEC ALPHA OSF/1 DEC OSF/1 cc SGI IRIX 5.2 cc SUN SUNOS 4.1.3 gcc PC DOS 6.2 Borland 4.02 Microsoft Quick C 2.5 Microsoft Visual C++ 1.51 Watcom 10.6 PC DOS 6.21 Borland 3.1 Microsoft 8 Watcom 9.6 USAGE ----- The following files are used or generated inputfile 8 kHz sampled data file 16 bit PCM (binary) outputfile 8 kHz sampled data file 16 bit PCM (binary) bitstreamfile binary file containing bitstream The following parameter is used for the encoder dtx_option = 1 : DTX enabled 0 : DTX disabled coder inputfile bitstreamfile dtx_option decoder bitstreamfile outputfile

近期下载者

相关文件


收藏者