diff options
author | Diego Elio Pettenò <flameeyes@gmail.com> | 2011-01-24 23:36:10 +0000 |
---|---|---|
committer | Mans Rullgard <mans@mansr.com> | 2011-01-24 23:43:41 +0000 |
commit | 82e1f217f276b4b3fda1f89a836126275a97ca9b (patch) | |
tree | e3294afc6d3d682b7afd135adfa7c8ab8f255bb3 /libavcodec/atrac.h | |
parent | 53493f9a8176009fc514c386ee31cafcafc8539a (diff) | |
download | ffmpeg-82e1f217f276b4b3fda1f89a836126275a97ca9b.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>
Diffstat (limited to 'libavcodec/atrac.h')
-rw-r--r-- | libavcodec/atrac.h | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/libavcodec/atrac.h b/libavcodec/atrac.h index acaa4ce041..e126935e12 100644 --- a/libavcodec/atrac.h +++ b/libavcodec/atrac.h @@ -28,8 +28,7 @@ #ifndef AVCODEC_ATRAC_H #define AVCODEC_ATRAC_H - -extern float sf_table[64]; +extern float ff_atrac_sf_table[64]; void atrac_generate_tables(void); void atrac_iqmf (float *inlo, float *inhi, unsigned int nIn, float *pOut, float *delayBuf, float *temp); |