summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMark Spencer <markster@digium.com>2003-05-28 19:38:02 +0000
committerMark Spencer <markster@digium.com>2003-05-28 19:38:02 +0000
commit37d41292bb671f41a1d94cf6c2377bda5faf52f1 (patch)
tree64565a337acd37450d8cab0ebc7824694e1374ca
parentb27b9b09c651a39d04276f3b8577107083f81ee3 (diff)
Write to read monitor before translation
git-svn-id: https://origsvn.digium.com/svn/asterisk/trunk@1059 65c4cc65-6c06-0410-ace0-fbb531ad65f3
-rwxr-xr-xchannel.c21
1 files changed, 12 insertions, 9 deletions
diff --git a/channel.c b/channel.c
index fd684d489..7ceb7a78b 100755
--- a/channel.c
+++ b/channel.c
@@ -1064,10 +1064,17 @@ struct ast_frame *ast_read(struct ast_channel *chan)
ast_log(LOG_NOTICE, "Dropping incompatible voice frame on %s of format %d since our native format has changed to %d\n", chan->name, f->subclass, chan->nativeformats);
ast_frfree(f);
f = &null_frame;
- } else if (chan->pvt->readtrans) {
- f = ast_translate(chan->pvt->readtrans, f, 1);
- if (!f)
- f = &null_frame;
+ } else {
+ if (chan->monitor && chan->monitor->read_stream ) {
+ if( ast_writestream( chan->monitor->read_stream, f ) < 0 ) {
+ ast_log(LOG_WARNING, "Failed to write data to channel monitor read stream\n");
+ }
+ }
+ if (chan->pvt->readtrans) {
+ f = ast_translate(chan->pvt->readtrans, f, 1);
+ if (!f)
+ f = &null_frame;
+ }
}
}
@@ -1089,11 +1096,7 @@ struct ast_frame *ast_read(struct ast_channel *chan)
/* Answer the CDR */
ast_setstate(chan, AST_STATE_UP);
ast_cdr_answer(chan->cdr);
- } else if( ( f->frametype == AST_FRAME_VOICE ) && chan->monitor && chan->monitor->read_stream ) {
- if( ast_writestream( chan->monitor->read_stream, f ) < 0 ) {
- ast_log(LOG_WARNING, "Failed to write data to channel monitor read stream\n");
- }
- }
+ }
pthread_mutex_unlock(&chan->lock);
/* Run any generator sitting on the line */