From 97c5b2b7d7f668333d6fcc3971b5c30de65839ce Mon Sep 17 00:00:00 2001 From: Mark Spencer <markster@digium.com> Date: Sun, 21 Mar 2004 07:35:40 +0000 Subject: [PATCH] Take out unnecessary setting of delivery times. git-svn-id: https://origsvn.digium.com/svn/asterisk/trunk@2510 65c4cc65-6c06-0410-ace0-fbb531ad65f3 --- indications.c | 2 -- res/res_musiconhold.c | 2 -- 2 files changed, 4 deletions(-) diff --git a/indications.c b/indications.c index 1f8b555558..fefec9153b 100755 --- a/indications.c +++ b/indications.c @@ -123,8 +123,6 @@ 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 7d8918f037..450442d4b0 100755 --- a/res/res_musiconhold.c +++ b/res/res_musiconhold.c @@ -461,8 +461,6 @@ 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; -- GitLab