aboutsummaryrefslogtreecommitdiffstats
path: root/apps
diff options
context:
space:
mode:
authormarkster <markster@f38db490-d61c-443f-a65b-d21fe96a405b>2003-08-14 16:01:25 +0000
committermarkster <markster@f38db490-d61c-443f-a65b-d21fe96a405b>2003-08-14 16:01:25 +0000
commit8c5e6b7b8ccdbf6eca715b5ff19d0c2d5b693c46 (patch)
tree03fbd43a4f58f792c4a88c4756eabf993e05ceb3 /apps
parent18ecda6b7d2bee26173b9e04a854d7611562b0c6 (diff)
Oops
git-svn-id: http://svn.digium.com/svn/asterisk/trunk@1324 f38db490-d61c-443f-a65b-d21fe96a405b
Diffstat (limited to 'apps')
-rwxr-xr-xapps/app_festival.c10
1 files changed, 1 insertions, 9 deletions
diff --git a/apps/app_festival.c b/apps/app_festival.c
index 2c70487d7..23d7dc10f 100755
--- a/apps/app_festival.c
+++ b/apps/app_festival.c
@@ -128,21 +128,13 @@ static int send_waveform_to_channel(struct ast_channel *chan, char *waveform, in
int ms = -1;
int pid = -1;
int needed = 0;
- int us;
- int exception;
int owriteformat;
- struct timeval tv;
- struct timeval last;
struct ast_frame *f;
- int x;
- struct ast_frame *winner;
struct myframe {
struct ast_frame f;
char offset[AST_FRIENDLY_OFFSET];
char frdata[2048];
} myf;
- last.tv_usec = 0;
- last.tv_sec = 0;
if (pipe(fds)) {
ast_log(LOG_WARNING, "Unable to create pipe\n");
@@ -184,7 +176,7 @@ static int send_waveform_to_channel(struct ast_channel *chan, char *waveform, in
}
if (f->frametype == AST_FRAME_VOICE) {
/* Treat as a generator */
- needed = f->sample * 2;
+ needed = f->samples * 2;
if (needed > sizeof(myf.frdata)) {
ast_log(LOG_WARNING, "Only able to deliver %d of %d requested samples\n",
sizeof(myf.frdata) / 2, needed/2);