From fd7bbc0b3ca806126a3665cc5341b2f6091cec5d Mon Sep 17 00:00:00 2001 From: Mathieu Parent Date: Sat, 26 Feb 2011 11:45:19 +0100 Subject: [PATCH] Skinny: use IANA names for G729 codecs --- src/mod/endpoints/mod_skinny/skinny_protocol.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) 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: