diff options
author | Martin Storsjö <martin@martin.st> | 2012-02-15 11:40:48 +0200 |
---|---|---|
committer | Martin Storsjö <martin@martin.st> | 2012-02-15 22:06:29 +0200 |
commit | 99560a4caab1a0a13504fe0897481d7c98b432fb (patch) | |
tree | c5bd0c639df75e3348ad16c3793dccb9ea08956d /libavcodec/atrac.c | |
parent | e96b4a53df101403c54e329abfadad2edddc47c4 (diff) | |
download | ffmpeg-99560a4caab1a0a13504fe0897481d7c98b432fb.tar.gz |
libavcodec: Add ff_ prefix to some nonstatic symbols
Prefix the functions atrac_generate_tables, atrac_iqmf, dct_quantize_c.
Signed-off-by: Martin Storsjö <martin@martin.st>
Diffstat (limited to 'libavcodec/atrac.c')
-rw-r--r-- | libavcodec/atrac.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/libavcodec/atrac.c b/libavcodec/atrac.c index da6cd305fb..b9b33aad48 100644 --- a/libavcodec/atrac.c +++ b/libavcodec/atrac.c @@ -48,7 +48,7 @@ static const float qmf_48tap_half[24] = { * Generate common tables */ -void atrac_generate_tables(void) +void ff_atrac_generate_tables(void) { int i; float s; @@ -79,7 +79,7 @@ void atrac_generate_tables(void) */ -void atrac_iqmf (float *inlo, float *inhi, unsigned int nIn, float *pOut, float *delayBuf, float *temp) +void ff_atrac_iqmf (float *inlo, float *inhi, unsigned int nIn, float *pOut, float *delayBuf, float *temp) { int i, j; float *p1, *p3; |