From: Andre Noll Date: Mon, 30 Nov 2009 22:38:51 +0000 (+0100) Subject: wma: Use smaller chunks. X-Git-Tag: v0.4.1~15 X-Git-Url: http://git.tuebingen.mpg.de/?p=paraslash.git;a=commitdiff_plain;h=108fa92dea4be74a26e92d9804926abf1c0d4fd4 wma: Use smaller chunks. This avoids buffer underuns in case the stream is started in the middle of the file. --- diff --git a/wma_afh.c b/wma_afh.c index f0b73b29..9cf8e501 100644 --- a/wma_afh.c +++ b/wma_afh.c @@ -216,7 +216,7 @@ static int wma_make_chunk_table(char *buf, size_t buf_size, int block_align, goto fail; afhi->seconds_total = num_frames * 2048 /* FIXME */ / afhi->frequency; - frames_per_chunk = num_frames / num_superframes; + frames_per_chunk = num_frames / num_superframes / 2; PARA_INFO_LOG("%d frames per chunk\n", frames_per_chunk); j = 1; FOR_EACH_FRAME(f, start, buf_size, block_align) {