return result;
}
-int ast_settimeout(struct ast_channel *c, int ms)
+int ast_settimeout(struct ast_channel *c, int samples, int (*func)(void *data), void *data)
{
int res = -1;
#ifdef ZAPTEL_OPTIMIZATIONS
if (c->timingfd > -1) {
- ms *= 8;
- res = ioctl(c->timingfd, ZT_TIMERCONFIG, &ms);
+ if (!func) {
+ samples = 0;
+ data = 0;
+ }
+ ast_log(LOG_DEBUG, "Scheduling timer at %d sample intervals\n", samples);
+ res = ioctl(c->timingfd, ZT_TIMERCONFIG, &samples);
+ c->timingfunc = func;
+ c->timingdata = data;
}
#endif
return res;
{
struct ast_frame *f = NULL;
int blah;
+#ifdef ZAPTEL_OPTIMIZATIONS
+ int (*func)(void *);
+ void *data;
+#endif
static struct ast_frame null_frame =
{
AST_FRAME_NULL,
chan->exception = 0;
blah = -1;
ioctl(chan->timingfd, ZT_TIMERACK, &blah);
- blah = 0;
- ioctl(chan->timingfd, ZT_TIMERCONFIG, &blah);
- f = &null_frame;
+ func = chan->timingfunc;
+ data = chan->timingdata;
pthread_mutex_unlock(&chan->lock);
+ if (func) {
+ func(data);
+ } else {
+ blah = 0;
+ pthread_mutex_lock(&chan->lock);
+ ioctl(chan->timingfd, ZT_TIMERCONFIG, &blah);
+ pthread_mutex_unlock(&chan->lock);
+ }
+ f = &null_frame;
return f;
}
#endif
if (ast_write(s->owner, fr)) {
ast_log(LOG_WARNING, "Failed to write frame\n");
s->owner->streamid = -1;
+#ifdef ZAPTEL_OPTIMIZATIONS
+ ast_settimeout(s->owner, 0, NULL, NULL);
+#endif
return 0;
}
} else {
/* Stream has finished */
s->owner->streamid = -1;
+#ifdef ZAPTEL_OPTIMIZATIONS
+ ast_settimeout(s->owner, 0, NULL, NULL);
+#endif
return 0;
}
}
if (whennext != s->lasttimeout) {
+#ifdef ZAPTEL_OPTIMIZATIONS
+ ast_settimeout(s->owner, whennext, ast_readaudio_callback, s);
+#else
s->owner->streamid = ast_sched_add(s->owner->sched, whennext/8, ast_readaudio_callback, s);
+#endif
s->lasttimeout = whennext;
return 0;
}
if (f->owner->streamid > -1)
ast_sched_del(f->owner->sched, f->owner->streamid);
f->owner->streamid = -1;
+#ifdef ZAPTEL_OPTIMIZATIONS
+ ast_settimeout(f->owner, 0, NULL, NULL);
+#endif
} else {
f->owner->vstream = NULL;
if (f->owner->vstreamid > -1)
struct ast_frame *fr;
while(c->stream) {
res = ast_sched_wait(c->sched);
- if (res < 0) {
+ if ((res < 0) && !c->timingfunc) {
if (c->stream)
ast_closestream(c->stream);
if (c->vstream)
ast_closestream(c->vstream);
break;
}
- /* Setup timeout if supported */
- ast_settimeout(c, res);
+ if (res < 0)
+ res = 1000;
res = ast_waitfor(c, res);
if (res < 0) {
ast_log(LOG_WARNING, "Select failed (%s)\n", strerror(errno));
ast_closestream(c->vstream);
break;
}
- ast_settimeout(c, res);
res = ast_waitfor(c, res);
if (res < 0) {
ast_log(LOG_WARNING, "Select failed (%s)\n", strerror(errno));
ast_closestream(c->vstream);
break;
}
- ast_settimeout(c, ms);
rchan = ast_waitfor_nandfds(&c, 1, &cmdfd, (cmdfd > -1) ? 1 : 0, NULL, &outfd, &ms);
if (!rchan && (outfd < 0) && (ms)) {
ast_log(LOG_WARNING, "Wait failed (%s)\n", strerror(errno));
/*! Timing fd */
int timingfd;
-
+ int (*timingfunc)(void *data);
+ void *timingdata;
/*! State of line -- Don't write directly, use ast_setstate */
int _state;
int ast_autoservice_stop(struct ast_channel *chan);
/* If built with zaptel optimizations, force a scheduled expiration on the
- timer fd */
-int ast_settimeout(struct ast_channel *c, int ms);
+ timer fd, at which point we call the callback function / data */
+int ast_settimeout(struct ast_channel *c, int samples, int (*func)(void *data), void *data);
/* Transfer a channel (if supported). Returns -1 on error, 0 if not supported
and 1 if supported and requested */