mirror of
https://github.com/asterisk/asterisk.git
synced 2025-10-12 15:45:18 +00:00
Force the clock rate of G.722 to be 16000 when using the Google transports as it is 8000 elsewhere.
(closes issue ASTERISK-20105) Reported by: Malcolm Davenport git-svn-id: https://origsvn.digium.com/svn/asterisk/trunk@369838 65c4cc65-6c06-0410-ace0-fbb531ad65f3
This commit is contained in:
@@ -1142,8 +1142,13 @@ static int jingle_add_payloads_to_description(struct jingle_session *session, st
|
||||
iks_insert_attrib(payload, "id", tmp);
|
||||
iks_insert_attrib(payload, "name", ast_rtp_lookup_mime_subtype2(1, &format, 0, 0));
|
||||
iks_insert_attrib(payload, "channels", "1");
|
||||
snprintf(tmp, sizeof(tmp), "%d", ast_rtp_lookup_sample_rate2(1, &format, 0));
|
||||
iks_insert_attrib(payload, "clockrate", tmp);
|
||||
|
||||
if ((format.id == AST_FORMAT_G722) && ((session->transport == JINGLE_TRANSPORT_GOOGLE_V1) || (session->transport == JINGLE_TRANSPORT_GOOGLE_V2))) {
|
||||
iks_insert_attrib(payload, "clockrate", "16000");
|
||||
} else {
|
||||
snprintf(tmp, sizeof(tmp), "%d", ast_rtp_lookup_sample_rate2(1, &format, 0));
|
||||
iks_insert_attrib(payload, "clockrate", tmp);
|
||||
}
|
||||
|
||||
iks_insert_node(description, payload);
|
||||
payloads[i++] = payload;
|
||||
|
Reference in New Issue
Block a user