mirror of
https://github.com/asterisk/asterisk.git
synced 2025-10-13 00:04:53 +00:00
Don't send the same codec twice even if listed twice in allow section (bug #1691)
git-svn-id: https://origsvn.digium.com/svn/asterisk/trunk@3033 65c4cc65-6c06-0410-ace0-fbb531ad65f3
This commit is contained in:
@@ -3088,7 +3088,7 @@ static int add_sdp(struct sip_request *resp, struct sip_pvt *p, struct ast_rtp *
|
||||
/* Start by sending our preferred codecs */
|
||||
cur = prefs;
|
||||
while(cur) {
|
||||
if (p->jointcapability & cur->codec) {
|
||||
if ((p->jointcapability & cur->codec) && !(alreadysent & cur->codec)) {
|
||||
if (sip_debug_test_pvt(p))
|
||||
ast_verbose("Answering with preferred capability 0x%x(%s)\n", cur->codec, ast_getformatname(cur->codec));
|
||||
codec = ast_rtp_lookup_code(p->rtp, 1, cur->codec);
|
||||
|
Reference in New Issue
Block a user