]> git.ipfire.org Git - thirdparty/freeswitch.git/commitdiff
Skinny: use IANA names for G729 codecs
authorMathieu Parent <math.parent@gmail.com>
Sat, 26 Feb 2011 10:45:19 +0000 (11:45 +0100)
committerMathieu Parent <math.parent@gmail.com>
Sat, 26 Feb 2011 10:45:19 +0000 (11:45 +0100)
src/mod/endpoints/mod_skinny/skinny_protocol.c

index 743514d98ca2943af165fd3667e3781f30295616..4c09c70176f028f006f748ef99ed9cb8ab47ecb1 100644 (file)
@@ -43,10 +43,10 @@ char* skinny_codec2string(enum skinny_codecs skinnycodec)
        switch (skinnycodec) {
                case SKINNY_CODEC_ALAW_64K:
                case SKINNY_CODEC_ALAW_56K:
-                       return "ALAW";
+                       return "PCMA";
                case SKINNY_CODEC_ULAW_64K:
                case SKINNY_CODEC_ULAW_56K:
-                       return "ULAW";
+                       return "PCMU";
                case SKINNY_CODEC_G722_64K:
                case SKINNY_CODEC_G722_56K:
                case SKINNY_CODEC_G722_48K: