Changed codec names to uppercase in siprtp, as they are not accepted by some UA

git-svn-id: https://svn.pjsip.org/repos/pjproject/trunk@494 74dad513-b988-da41-8d7b-12977e46ad98
This commit is contained in:
Benny Prijono 2006-06-07 21:21:57 +00:00
parent d9ed706c16
commit 97f2a3704d
1 changed files with 5 additions and 5 deletions

View File

@ -241,11 +241,11 @@ static pjsip_module mod_siprtp =
/* Codec constants */
struct codec audio_codecs[] =
{
{ 0, "pcmu", 8000, 64000, 20, "G.711 ULaw" },
{ 3, "gsm", 8000, 13200, 20, "GSM" },
{ 4, "g723", 8000, 6400, 30, "G.723.1" },
{ 8, "pcma", 8000, 64000, 20, "G.711 ALaw" },
{ 18, "g729", 8000, 8000, 20, "G.729" },
{ 0, "PCMU", 8000, 64000, 20, "G.711 ULaw" },
{ 3, "GSM", 8000, 13200, 20, "GSM" },
{ 4, "G723", 8000, 6400, 30, "G.723.1" },
{ 8, "PCMA", 8000, 64000, 20, "G.711 ALaw" },
{ 18, "G729", 8000, 8000, 20, "G.729" },
};