diff options
author | Martin Storsjö <martin@martin.st> | 2012-02-15 13:00:08 +0200 |
---|---|---|
committer | Martin Storsjö <martin@martin.st> | 2012-02-15 22:07:05 +0200 |
commit | 5f2c159c0faf406f19f7083137e6ea9d1133e360 (patch) | |
tree | ad61502c059045ea01968b095287df2d1dbec511 /libavcodec/msmpeg4.c | |
parent | 1fec055066b576ecb29806a95a044f5590e287c1 (diff) | |
download | ffmpeg-5f2c159c0faf406f19f7083137e6ea9d1133e360.tar.gz |
vc1: Add ff_ prefix to nonstatic symbols
Signed-off-by: Martin Storsjö <martin@martin.st>
Diffstat (limited to 'libavcodec/msmpeg4.c')
-rw-r--r-- | libavcodec/msmpeg4.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/libavcodec/msmpeg4.c b/libavcodec/msmpeg4.c index 67c38d0716..2b5693aa2d 100644 --- a/libavcodec/msmpeg4.c +++ b/libavcodec/msmpeg4.c @@ -60,7 +60,7 @@ static uint32_t v2_dc_lum_table[512][2]; static uint32_t v2_dc_chroma_table[512][2]; /* vc1 externs */ -extern const uint8_t wmv3_dc_scale_table[32]; +extern const uint8_t ff_wmv3_dc_scale_table[32]; #include "msmpeg4data.h" @@ -152,8 +152,8 @@ static av_cold void common_init(MpegEncContext * s) break; #if CONFIG_VC1_DECODER case 6: - s->y_dc_scale_table= wmv3_dc_scale_table; - s->c_dc_scale_table= wmv3_dc_scale_table; + s->y_dc_scale_table= ff_wmv3_dc_scale_table; + s->c_dc_scale_table= ff_wmv3_dc_scale_table; break; #endif |