summaryrefslogtreecommitdiff
path: root/channel.c
diff options
context:
space:
mode:
authorMark Spencer <markster@digium.com>2003-11-04 02:40:09 +0000
committerMark Spencer <markster@digium.com>2003-11-04 02:40:09 +0000
commit1e95c3a4acfa127b90a02132826b00ab8ab3a3aa (patch)
treeac950750c9c1b65bb563df9c6506858c7f8f30c1 /channel.c
parent7ec16a6af753a1f51a62fbdcd417bbd2eca12a44 (diff)
Remove really broke MP3 stuff in favor of G.726 in the near future
git-svn-id: https://origsvn.digium.com/svn/asterisk/trunk@1689 65c4cc65-6c06-0410-ace0-fbb531ad65f3
Diffstat (limited to 'channel.c')
-rwxr-xr-xchannel.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/channel.c b/channel.c
index e6a543745..74b192c11 100755
--- a/channel.c
+++ b/channel.c
@@ -233,6 +233,8 @@ int ast_best_codec(int fmts)
AST_FORMAT_ALAW,
/* Okay, well, signed linear is easy to translate into other stuff */
AST_FORMAT_SLINEAR,
+ /* G.726 is standard ADPCM */
+ AST_FORMAT_G726,
/* ADPCM has great sound quality and is still pretty easy to translate */
AST_FORMAT_ADPCM,
/* Okay, we're down to vocoders now, so pick GSM because it's small and easier to
@@ -249,8 +251,6 @@ int ast_best_codec(int fmts)
AST_FORMAT_G729A,
/* Down to G.723.1 which is proprietary but at least designed for voice */
AST_FORMAT_G723_1,
- /* Last and least, MP3 which was of course never designed for real-time voice */
- AST_FORMAT_MP3,
};