From 54164096e326d32870b1ae4d5ffbf7a1e90325d8 Mon Sep 17 00:00:00 2001 From: Abramo Bagnara Date: Wed, 12 Jul 2000 16:25:21 +0000 Subject: [PATCH] Fixed timelimit use --- aplay/aplay.c | 8 +++++--- 1 file changed, 5 insertions(+), 3 deletions(-) diff --git a/aplay/aplay.c b/aplay/aplay.c index f33f87e..7b1f82c 100644 --- a/aplay/aplay.c +++ b/aplay/aplay.c @@ -733,7 +733,8 @@ static int test_wavefile(void *buffer, size_t size) } } - count = LE_INT(c->length); + if (LE_INT(c->length) < count) + count = LE_INT(c->length); check_new_format(&format); return (char *)c + sizeof(*c) - (char *) buffer; } @@ -1614,6 +1615,7 @@ static void playback(char *name) { int fd, ofs; + count = calc_count(); snd_pcm_flush(handle); if (!name || !strcmp(name, "-")) { fd = 0; @@ -1658,7 +1660,6 @@ static void playback(char *name) /* should be raw data */ check_new_format(&rformat); init_raw_data(); - count = calc_count(); playback_go(fd, 64, count, FORMAT_RAW, name); } __end: @@ -1681,7 +1682,8 @@ static void capture(char *name) exit(EXIT_FAILURE); } } - count = calc_count() & 0xFFFFFFFE; + count = calc_count(); + count += count % 2; /* WAVE-file should be even (I'm not sure), but wasting one byte isn't a problem (this can only be in 8 bit mono) */ if (fmt_rec_table[file_type].start)