From 82e1f217f276b4b3fda1f89a836126275a97ca9b Mon Sep 17 00:00:00 2001 From: Diego Elio Pettenò Date: Mon, 24 Jan 2011 23:36:10 +0000 Subject: Rename sf_table in atrac.c unit to ff_atrac_sf_table. This ensures a locally-unique name as well as marks the symbol as FFmpeg-private at least by declaration. Signed-off-by: Mans Rullgard --- libavcodec/atrac1.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'libavcodec/atrac1.c') diff --git a/libavcodec/atrac1.c b/libavcodec/atrac1.c index 513ecc7d8b..c4404f6817 100644 --- a/libavcodec/atrac1.c +++ b/libavcodec/atrac1.c @@ -223,7 +223,7 @@ static int at1_unpack_dequant(GetBitContext* gb, AT1SUCtx* su, int num_specs = specs_per_bfu[bfu_num]; int word_len = !!idwls[bfu_num] + idwls[bfu_num]; - float scale_factor = sf_table[idsfs[bfu_num]]; + float scale_factor = ff_atrac_sf_table[idsfs[bfu_num]]; bits_used += word_len * num_specs; /* add number of bits consumed by current BFU */ /* check for bitstream overflow */ -- cgit v1.2.3