aboutsummaryrefslogtreecommitdiffstats
path: root/rtp.c
diff options
context:
space:
mode:
authormarkster <markster@f38db490-d61c-443f-a65b-d21fe96a405b>2003-06-28 22:50:47 +0000
committermarkster <markster@f38db490-d61c-443f-a65b-d21fe96a405b>2003-06-28 22:50:47 +0000
commit3a0233e8edb056a24609732411d306608ffccece (patch)
tree902d5085d33fe26d1e4423a993e2443df2c20aa1 /rtp.c
parentfd42183b7866425be9ddc6359cb6daea866fd066 (diff)
Totally redo file formats
git-svn-id: http://svn.digium.com/svn/asterisk/trunk@1130 f38db490-d61c-443f-a65b-d21fe96a405b
Diffstat (limited to 'rtp.c')
-rwxr-xr-xrtp.c4
1 files changed, 3 insertions, 1 deletions
diff --git a/rtp.c b/rtp.c
index a60e9d538..99a20fc0e 100755
--- a/rtp.c
+++ b/rtp.c
@@ -1247,7 +1247,9 @@ int ast_rtp_bridge(struct ast_channel *c0, struct ast_channel *c1, int flags, st
/* That's all we needed */
return 0;
} else {
- if ((f->frametype == AST_FRAME_DTMF) || (f->frametype == AST_FRAME_VOICE)) {
+ if ((f->frametype == AST_FRAME_DTMF) ||
+ (f->frametype == AST_FRAME_VOICE) ||
+ (f->frametype == AST_FRAME_VIDEO)) {
/* Forward voice or DTMF frames if they happen upon us */
if (who == c0) {
ast_write(c1, f);