dect
/
asterisk
Archived
13
0
Fork 0

Merged revisions 47897 via svnmerge from

https://origsvn.digium.com/svn/asterisk/branches/1.4

........
r47897 | file | 2006-11-21 12:32:27 -0500 (Tue, 21 Nov 2006) | 2 lines

If we have the non standard G726-32 setting turned on we want to return G726-32 to the SDP, not our AAL2 string. (issue #8330 reported by voipgate)

........


git-svn-id: http://svn.digium.com/svn/asterisk/trunk@47898 f38db490-d61c-443f-a65b-d21fe96a405b
This commit is contained in:
file 2006-11-21 17:34:22 +00:00
parent 217a902c1c
commit f6bcd15af8
1 changed files with 1 additions and 1 deletions

View File

@ -1705,7 +1705,7 @@ const char *ast_rtp_lookup_mime_subtype(const int isAstFormat, const int code,
if (isAstFormat &&
(code == AST_FORMAT_G726_AAL2) &&
(options & AST_RTP_OPT_G726_NONSTANDARD))
return "AAL2-G726-32";
return "G726-32";
else
return mimeTypes[i].subtype;
}