Add codec G.722 support.

git-svn-id: https://origsvn.digium.com/svn/asterisk/trunk@48661 65c4cc65-6c06-0410-ace0-fbb531ad65f3
This commit is contained in:
Matthew Fredrickson
2006-12-21 00:08:21 +00:00
parent 1546495afc
commit ba71665924
9 changed files with 1232 additions and 1 deletions

16
codecs/g722/Makefile Normal file
View File

@@ -0,0 +1,16 @@
LIB=libg722.a
CFLAGS+=-fPIC
include $(ASTTOPDIR)/Makefile.rules
OBJS=g722_encode.o g722_decode.o
all: $(LIB)
$(LIB): $(OBJS)
$(ECHO_PREFIX) echo " [AR] $^ -> $@"
$(CMD_PREFIX) $(AR) cr $@ $^
$(CMD_PREFIX) $(RANLIB) $@
clean:
rm -f $(LIB) *.o