[asterisk-commits] file: branch 1.4 r85023 - /branches/1.4/main/rtp.c
SVN commits to the Asterisk project
asterisk-commits at lists.digium.com
Mon Oct 8 10:37:47 CDT 2007
Author: file
Date: Mon Oct 8 10:37:46 2007
New Revision: 85023
URL: http://svn.digium.com/view/asterisk?view=rev&rev=85023
Log:
Update codec information as well as address when doing hold reinvites.
(issue #10868)
Reported by: mavince
Modified:
branches/1.4/main/rtp.c
Modified: branches/1.4/main/rtp.c
URL: http://svn.digium.com/view/asterisk/branches/1.4/main/rtp.c?view=diff&rev=85023&r1=85022&r2=85023
==============================================================================
--- branches/1.4/main/rtp.c (original)
+++ branches/1.4/main/rtp.c Mon Oct 8 10:37:46 2007
@@ -2949,6 +2949,11 @@
memcpy(&ac0, &t0, sizeof(ac0));
ast_rtp_get_peer(p1, &t1);
memcpy(&ac1, &t1, sizeof(ac1));
+ /* Update codec information */
+ if (pr0->get_codec)
+ oldcodec0 = codec0 = pr0->get_codec(c0);
+ if (pr1->get_codec)
+ oldcodec1 = codec1 = pr1->get_codec(c1);
ast_indicate_data(other, fr->subclass, fr->data, fr->datalen);
ast_frfree(fr);
} else {
More information about the asterisk-commits
mailing list