diff options
author | Martin Storsjö <martin@martin.st> | 2012-02-15 13:46:40 +0200 |
---|---|---|
committer | Martin Storsjö <martin@martin.st> | 2012-02-15 22:07:11 +0200 |
commit | 27cfdc3e4fcf0ab490cce6bf961af9180b21ac6b (patch) | |
tree | cfb98fd06c46691674052c378bbc43b1668a4b85 | |
parent | 04d382252456c6a03ddbabbf1abcd274f761e6cd (diff) | |
download | ffmpeg-27cfdc3e4fcf0ab490cce6bf961af9180b21ac6b.tar.gz |
vorbis: Add ff_ prefix to nonstatic symbols
Signed-off-by: Martin Storsjö <martin@martin.st>
-rw-r--r-- | libavcodec/dsputil.c | 2 | ||||
-rw-r--r-- | libavcodec/vorbis.h | 2 | ||||
-rw-r--r-- | libavcodec/vorbisdec.c | 2 |
3 files changed, 3 insertions, 3 deletions
diff --git a/libavcodec/dsputil.c b/libavcodec/dsputil.c index 74b8fd7466..bd10054234 100644 --- a/libavcodec/dsputil.c +++ b/libavcodec/dsputil.c @@ -3016,7 +3016,7 @@ av_cold void ff_dsputil_init(DSPContext* c, AVCodecContext *avctx) c->add_8x8basis= add_8x8basis_c; #if CONFIG_VORBIS_DECODER - c->vorbis_inverse_coupling = vorbis_inverse_coupling; + c->vorbis_inverse_coupling = ff_vorbis_inverse_coupling; #endif #if CONFIG_AC3_DECODER c->ac3_downmix = ff_ac3_downmix_c; diff --git a/libavcodec/vorbis.h b/libavcodec/vorbis.h index a55523f17e..924ca800b2 100644 --- a/libavcodec/vorbis.h +++ b/libavcodec/vorbis.h @@ -42,7 +42,7 @@ int ff_vorbis_len2vlc(uint8_t *bits, uint32_t *codes, unsigned num); void ff_vorbis_floor1_render_list(vorbis_floor1_entry * list, int values, uint16_t *y_list, int *flag, int multiplier, float * out, int samples); -void vorbis_inverse_coupling(float *mag, float *ang, int blocksize); +void ff_vorbis_inverse_coupling(float *mag, float *ang, int blocksize); #define ilog(i) av_log2(2*(i)) diff --git a/libavcodec/vorbisdec.c b/libavcodec/vorbisdec.c index 158ee4db1b..11d6d76235 100644 --- a/libavcodec/vorbisdec.c +++ b/libavcodec/vorbisdec.c @@ -1447,7 +1447,7 @@ static inline int vorbis_residue_decode(vorbis_context *vc, vorbis_residue *vr, } } -void vorbis_inverse_coupling(float *mag, float *ang, int blocksize) +void ff_vorbis_inverse_coupling(float *mag, float *ang, int blocksize) { int i; for (i = 0; i < blocksize; i++) { |