From: Mathieu Parent Date: Sat, 26 Feb 2011 10:45:19 +0000 (+0100) Subject: Skinny: use IANA names for G729 codecs X-Git-Tag: v1.2-rc1~181^2~50 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=fd7bbc0b3ca806126a3665cc5341b2f6091cec5d;p=thirdparty%2Ffreeswitch.git Skinny: use IANA names for G729 codecs --- diff --git a/src/mod/endpoints/mod_skinny/skinny_protocol.c b/src/mod/endpoints/mod_skinny/skinny_protocol.c index 743514d98c..4c09c70176 100644 --- a/src/mod/endpoints/mod_skinny/skinny_protocol.c +++ b/src/mod/endpoints/mod_skinny/skinny_protocol.c @@ -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: