summaryrefslogtreecommitdiff
path: root/formats/Makefile
diff options
context:
space:
mode:
authorLuigi Rizzo <rizzo@icir.org>2006-04-04 12:59:25 +0000
committerLuigi Rizzo <rizzo@icir.org>2006-04-04 12:59:25 +0000
commit4beb6deeaa99b3908c3715c2dc70b5f0e3e21c44 (patch)
treec2ca953ad9722e235aa0205ca61e6b6a59c5e9e5 /formats/Makefile
parentec67c650adeb3437700c3ba547364530e6c7d090 (diff)
Largely simplify format handlers (for file copy etc.)
collecting common functions in a single place and removing them from the individual handlers. The full description is on mantis, http://bugs.digium.com/view.php?id=6375 and only the ogg_vorbis handler needs to be converted to the new structure. As a result of this change, format_au.c and format_pcm_alaw.c should go away (in a separate commit) as their functionality (trivial) has been merged in another file. git-svn-id: https://origsvn.digium.com/svn/asterisk/trunk@17243 65c4cc65-6c06-0410-ace0-fbb531ad65f3
Diffstat (limited to 'formats/Makefile')
-rw-r--r--formats/Makefile5
1 files changed, 5 insertions, 0 deletions
diff --git a/formats/Makefile b/formats/Makefile
index 80143e58f..8b47f8d2d 100644
--- a/formats/Makefile
+++ b/formats/Makefile
@@ -13,6 +13,11 @@
MODS:=$(patsubst %.c,%.so,$(wildcard format_*.c))
+MODS:=$(filter-out format_pcm_alaw.so,$(MODS))
+MODS:=$(filter-out format_au.so,$(MODS))
+
+# merged. format_pcm_alaw.so
+# merged. format_au.so
#
# OGG/Vorbis format
#