[asterisk-commits] rmudgett: trunk r306464 - /trunk/channels/chan_dahdi.c
SVN commits to the Asterisk project
asterisk-commits at lists.digium.com
Fri Feb 4 20:55:54 CST 2011
Author: rmudgett
Date: Fri Feb 4 20:55:50 2011
New Revision: 306464
URL: http://svnview.digium.com/svn/asterisk?view=rev&rev=306464
Log:
Ignore voice frames in chan_dahdi native bridging. Hardware is handling them.
Modified:
trunk/channels/chan_dahdi.c
Modified: trunk/channels/chan_dahdi.c
URL: http://svnview.digium.com/svn/asterisk/trunk/channels/chan_dahdi.c?view=diff&rev=306464&r1=306463&r2=306464
==============================================================================
--- trunk/channels/chan_dahdi.c (original)
+++ trunk/channels/chan_dahdi.c Fri Feb 4 20:55:50 2011
@@ -7359,6 +7359,8 @@
ast_write(c0, f);
}
break;
+ case AST_FRAME_VOICE:
+ /* Native bridge handles voice frames in hardware. */
case AST_FRAME_NULL:
break;
default:
More information about the asterisk-commits
mailing list