Added more audio formats.

git-svn-id: http://yate.null.ro/svn/yate/trunk@516 acf43c95-373e-0410-b603-e72c3f656dc1
This commit is contained in:
paulc 2005-09-16 10:44:10 +00:00
parent d1ca6930e7
commit 6edca09346
1 changed files with 8 additions and 1 deletions

View File

@ -42,11 +42,18 @@ extern "C" {
using namespace TelEngine;
static TokenDict dict_iaxformats[] = {
{ "slin", AST_FORMAT_SLINEAR },
// audio formats
{ "gsm", AST_FORMAT_GSM },
{ "ilbc", AST_FORMAT_ILBC },
{ "speex", AST_FORMAT_SPEEX },
{ "lpc10", AST_FORMAT_LPC10 },
{ "mulaw", AST_FORMAT_ULAW },
{ "alaw", AST_FORMAT_ALAW },
{ "g723", AST_FORMAT_G723_1 },
{ "g729", AST_FORMAT_G729A },
{ "adpcm", AST_FORMAT_ADPCM },
{ "mp3", AST_FORMAT_MP3 },
{ "slin", AST_FORMAT_SLINEAR },
{ 0, 0 }
};