]> git.ipfire.org Git - thirdparty/asterisk.git/commitdiff
If we have the non standard G726-32 setting turned on we want to return G726-32 to...
authorJoshua Colp <jcolp@digium.com>
Tue, 21 Nov 2006 17:32:27 +0000 (17:32 +0000)
committerJoshua Colp <jcolp@digium.com>
Tue, 21 Nov 2006 17:32:27 +0000 (17:32 +0000)
git-svn-id: https://origsvn.digium.com/svn/asterisk/branches/1.4@47897 65c4cc65-6c06-0410-ace0-fbb531ad65f3

main/rtp.c

index cb73e745dca44d44987cd5eaa61f5d28e5bd8c68..ec1c47605b743f193aa5cf4d136b13df133d62f6 100644 (file)
@@ -1640,7 +1640,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;
                }