diff options
author | Diego Elio Pettenò <flameeyes@gmail.com> | 2011-01-24 23:36:10 +0000 |
---|---|---|
committer | Michael Niedermayer <michaelni@gmx.at> | 2011-01-26 03:43:29 +0100 |
commit | ee7fed27d452c7a7be2457d4230eafb084e010c5 (patch) | |
tree | e259f028b2bcd43a0f1d47d243d312979cb3139a /libavcodec/atrac1.c | |
parent | f7e5cc0a2cc736af8543c256fb761d26f3249d9e (diff) | |
download | ffmpeg-ee7fed27d452c7a7be2457d4230eafb084e010c5.tar.gz |
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 <mans@mansr.com>
(cherry picked from commit 82e1f217f276b4b3fda1f89a836126275a97ca9b)
Diffstat (limited to 'libavcodec/atrac1.c')
-rw-r--r-- | libavcodec/atrac1.c | 2 |
1 files changed, 1 insertions, 1 deletions
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 */ |