summaryrefslogtreecommitdiff
path: root/res/res_musiconhold.c
diff options
context:
space:
mode:
authorMark Spencer <markster@digium.com>2004-03-20 23:31:40 +0000
committerMark Spencer <markster@digium.com>2004-03-20 23:31:40 +0000
commit7c35f68e29b2612e1884d94a5d2dcc356ec9f192 (patch)
tree2d3d45e27c80db7e8cadd3ab6eb45ff201e669bf /res/res_musiconhold.c
parent79668f062403f64aaf410ae49b7e73602a4624e5 (diff)
Fix milliwatt and musiconhold to know about delivery times
git-svn-id: https://origsvn.digium.com/svn/asterisk/trunk@2508 65c4cc65-6c06-0410-ace0-fbb531ad65f3
Diffstat (limited to 'res/res_musiconhold.c')
-rwxr-xr-xres/res_musiconhold.c2
1 files changed, 2 insertions, 0 deletions
diff --git a/res/res_musiconhold.c b/res/res_musiconhold.c
index 450442d4b..7d8918f03 100755
--- a/res/res_musiconhold.c
+++ b/res/res_musiconhold.c
@@ -461,6 +461,8 @@ static int moh_generate(struct ast_channel *chan, void *data, int len, int sampl
f.samples = res / 2;
f.data = buf + AST_FRIENDLY_OFFSET / 2;
f.offset = AST_FRIENDLY_OFFSET;
+ f.delivery.tv_sec = 0;
+ f.delivery.tv_usec = 0;
if (ast_write(chan, &f)< 0) {
ast_log(LOG_WARNING, "Failed to write frame to '%s': %s\n", chan->name, strerror(errno));
return -1;