aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rwxr-xr-xapps/app_milliwatt.c2
-rwxr-xr-xindications.c2
-rwxr-xr-xres/res_musiconhold.c2
3 files changed, 6 insertions, 0 deletions
diff --git a/apps/app_milliwatt.c b/apps/app_milliwatt.c
index a2f92dcf6..78f0604ce 100755
--- a/apps/app_milliwatt.c
+++ b/apps/app_milliwatt.c
@@ -76,6 +76,8 @@ static int milliwatt_generate(struct ast_channel *chan, void *data, int len, int
wf.datalen = len;
wf.samples = wf.datalen;
wf.src = "app_milliwatt";
+ wf.delivery.tv_sec = 0;
+ wf.delivery.tv_usec = 0;
/* create a buffer containing the digital milliwatt pattern */
for(i = 0; i < len; i++)
{
diff --git a/indications.c b/indications.c
index fefec9153..1f8b55555 100755
--- a/indications.c
+++ b/indications.c
@@ -123,6 +123,8 @@ static int playtones_generator(struct ast_channel *chan, void *data, int len, in
ps->f.samples = samples;
ps->f.offset = AST_FRIENDLY_OFFSET;
ps->f.data = ps->data;
+ ps->f.delivery.tv_sec = 0;
+ ps->f.delivery.tv_usec = 0;
ast_write(chan, &ps->f);
ps->pos += x;
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;