summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorRichard Mudgett <rmudgett@digium.com>2011-02-05 02:55:50 +0000
committerRichard Mudgett <rmudgett@digium.com>2011-02-05 02:55:50 +0000
commit484f9bec0adc532a372e0c2ff0c2f1e2c0e970e7 (patch)
tree8237d53b75a19019927ad935ce202ea19d6372db
parent3d667d7c0faf05e6452a7a1658bf64efa312abf9 (diff)
Ignore voice frames in chan_dahdi native bridging. Hardware is handling them.
git-svn-id: https://origsvn.digium.com/svn/asterisk/trunk@306464 65c4cc65-6c06-0410-ace0-fbb531ad65f3
-rw-r--r--channels/chan_dahdi.c2
1 files changed, 2 insertions, 0 deletions
diff --git a/channels/chan_dahdi.c b/channels/chan_dahdi.c
index 5316dc538..80416e5a3 100644
--- a/channels/chan_dahdi.c
+++ b/channels/chan_dahdi.c
@@ -7359,6 +7359,8 @@ static enum ast_bridge_result dahdi_bridge(struct ast_channel *c0, struct ast_ch
ast_write(c0, f);
}
break;
+ case AST_FRAME_VOICE:
+ /* Native bridge handles voice frames in hardware. */
case AST_FRAME_NULL:
break;
default: