From 8e5659a7e8e2ac28808e959763e595f153a93a1b Mon Sep 17 00:00:00 2001 From: Mark Spencer Date: Thu, 14 Aug 2003 16:01:25 +0000 Subject: Oops git-svn-id: https://origsvn.digium.com/svn/asterisk/trunk@1324 65c4cc65-6c06-0410-ace0-fbb531ad65f3 --- apps/app_festival.c | 10 +--------- 1 file changed, 1 insertion(+), 9 deletions(-) (limited to 'apps') 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); -- cgit v1.2.3