From: Andre Noll Date: Sun, 4 Mar 2007 23:00:31 +0000 (+0100) Subject: ogg_afh.c: make vi_sampling_rate, vi_bitrate local X-Git-Tag: v0.2.16~54 X-Git-Url: http://git.tuebingen.mpg.de/?p=paraslash.git;a=commitdiff_plain;h=8acdb49e2b8595c69ebafe841ac5f678952b9e4c ogg_afh.c: make vi_sampling_rate, vi_bitrate local --- diff --git a/ogg_afh.c b/ogg_afh.c index f57e2ec4..ba9ef369 100644 --- a/ogg_afh.c +++ b/ogg_afh.c @@ -39,7 +39,6 @@ static int header_len; static char *header; static ssize_t *chunk_table, num_chunks; static struct audio_format_handler *af; -static long vi_sampling_rate, vi_bitrate; static int ogg_compute_header_len(FILE *file) { @@ -222,6 +221,7 @@ static int ogg_get_file_info(FILE *file, char *info_str, long unsigned *frames, double time_total; vorbis_info *vi; ogg_int64_t raw_total; + long vi_sampling_rate, vi_bitrate; if (!file) return -E_OGG_NO_FILE;