From 509dbcc0b8bd5151fba80cc3e45d7e09cfa596a6 Mon Sep 17 00:00:00 2001 From: Josh Coalson Date: Tue, 5 Jun 2001 22:29:47 +0000 Subject: [PATCH] slow down stats printing --- src/flac/decode.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/flac/decode.c b/src/flac/decode.c index 1ff5429..336f716 100644 --- a/src/flac/decode.c +++ b/src/flac/decode.c @@ -349,7 +349,7 @@ FLAC__StreamDecoderWriteStatus write_callback(const FLAC__FileDecoder *decoder, stream_info->samples_processed += wide_samples; stream_info->frame_counter++; - if(stream_info->verbose && !(stream_info->frame_counter & 0x1f)) + if(stream_info->verbose && !(stream_info->frame_counter & 0x7f)) print_stats(stream_info); if(stream_info->analysis_mode) { -- 2.7.4