summaryrefslogtreecommitdiff
path: root/libavcodec/dsputil.c
diff options
context:
space:
mode:
authorMartin Storsjö <martin@martin.st>2012-02-15 13:46:40 +0200
committerMartin Storsjö <martin@martin.st>2012-02-15 22:07:11 +0200
commit27cfdc3e4fcf0ab490cce6bf961af9180b21ac6b (patch)
treecfb98fd06c46691674052c378bbc43b1668a4b85 /libavcodec/dsputil.c
parent04d382252456c6a03ddbabbf1abcd274f761e6cd (diff)
vorbis: Add ff_ prefix to nonstatic symbols
Signed-off-by: Martin Storsjö <martin@martin.st>
Diffstat (limited to 'libavcodec/dsputil.c')
-rw-r--r--libavcodec/dsputil.c2
1 files changed, 1 insertions, 1 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;