diff options
author | Martin Storsjö <martin@martin.st> | 2012-02-15 12:56:41 +0200 |
---|---|---|
committer | Martin Storsjö <martin@martin.st> | 2012-02-15 22:07:01 +0200 |
commit | 1fec055066b576ecb29806a95a044f5590e287c1 (patch) | |
tree | da3e74c870380724a096a8c33f9bf4e70ebec462 /libavcodec/vc1.c | |
parent | 35e02a3d0e49522d2810df76dab8cdac76ef804f (diff) | |
download | ffmpeg-1fec055066b576ecb29806a95a044f5590e287c1.tar.gz |
msmpeg4: Add ff_ prefixes to nonstatic symbols
Signed-off-by: Martin Storsjö <martin@martin.st>
Diffstat (limited to 'libavcodec/vc1.c')
-rw-r--r-- | libavcodec/vc1.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/libavcodec/vc1.c b/libavcodec/vc1.c index 1394f2cd4b..7bccaf4c7d 100644 --- a/libavcodec/vc1.c +++ b/libavcodec/vc1.c @@ -304,8 +304,8 @@ int vc1_decode_sequence_header(AVCodecContext *avctx, VC1Context *v, GetBitConte v->zz_4x8 = ff_vc1_adv_progressive_4x8_zz; return decode_sequence_header_adv(v, gb); } else { - v->zz_8x4 = wmv2_scantableA; - v->zz_4x8 = wmv2_scantableB; + v->zz_8x4 = ff_wmv2_scantableA; + v->zz_4x8 = ff_wmv2_scantableB; v->res_y411 = get_bits1(gb); v->res_sprite = get_bits1(gb); if (v->res_y411) { |