initial bits of ilbc codec mod.

git-svn-id: http://svn.freeswitch.org/svn/freeswitch/trunk@452 d0543943-73ff-0310-b7d9-9358b9ac24b2
This commit is contained in:
Michael Jerris
2006-01-27 00:48:15 +00:00
parent 3bbfb94a22
commit 954fe31140
54 changed files with 467 additions and 5 deletions
+5 -5
View File
@@ -5,11 +5,11 @@ CFLAGS += -fPIC
endif
LIB=libilbc.a
OBJS= anaFilter.o iCBSearch.o packing.o \
constants.o gainquant.o iLBC_decode.o StateConstructW.o \
createCB.o getCBvec.o iLBC_encode.o StateSearchW.o doCPLC.o \
helpfun.o syntFilter.o enhancer.o hpInput.o LPCdecode.o \
filter.o hpOutput.o LPCencode.o FrameClassify.o iCBConstruct.o lsf.o
OBJS= src/anaFilter.o src/iCBSearch.o src/packing.o \
src/constants.o src/gainquant.o src/iLBC_decode.o src/StateConstructW.o \
src/createCB.o src/getCBvec.o src/iLBC_encode.o src/StateSearchW.o src/doCPLC.o \
src/helpfun.o src/syntFilter.o src/enhancer.o src/hpInput.o src/LPCdecode.o \
src/filter.o src/hpOutput.o src/LPCencode.o src/FrameClassify.o src/iCBConstruct.o src/lsf.o
all: $(LIB)
+25
View File
@@ -0,0 +1,25 @@
EXTRA_DIST =
SUBDIRS =
AUTOMAKE_OPTS= gnu
MAKE=gmake
NAME=libilbc
AM_CC=gcc
AM_CFLAGS = -Wall -O3 -funroll-loops
AM_CPPFLAGS = $(AM_CFLAGS)
lib_LTLIBRARIES = libilbc.la
libgsm_la_SOURCES = src/anaFilter.o src/iCBSearch.o src/packing.o \
src/constants.o src/gainquant.o src/iLBC_decode.o src/StateConstructW.o \
src/createCB.o src/getCBvec.o src/iLBC_encode.o src/StateSearchW.o src/doCPLC.o \
src/helpfun.o src/syntFilter.o src/enhancer.o src/hpInput.o src/LPCdecode.o \
src/filter.o src/hpOutput.o src/LPCencode.o src/FrameClassify.o src/iCBConstruct.o src/lsf.o
libgsm_la_CFLAGS = $(AM_CFLAGS)
libgsm_la_LDFLAGS =
+34
View File
@@ -0,0 +1,34 @@
# -*- Autoconf -*-
# Process this file with autoconf to produce a configure script.
AC_PREREQ(2.59)
AC_INIT(FULL-PACKAGE-NAME, VERSION, BUG-REPORT-ADDRESS)
AM_INIT_AUTOMAKE(libilbc,0.1)
AC_CONFIG_SRCDIR([src])
# Checks for programs.
AC_PROG_CC
AC_PROG_MAKE_SET
AC_PROG_LIBTOOL
AC_PROG_INSTALL
# Checks for header files.
AC_HEADER_DIRENT
AC_HEADER_STDC
# Checks for typedefs, structures, and compiler characteristics.
AC_C_CONST
AC_C_INLINE
AC_TYPE_SIZE_T
AC_HEADER_TIME
AC_STRUCT_TM
# Checks for library functions.
AC_PROG_GCC_TRADITIONAL
AC_FUNC_MALLOC
AC_TYPE_SIGNAL
AC_FUNC_STRFTIME
AC_CONFIG_FILES([Makefile])
AC_OUTPUT