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/intrax8.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/intrax8.c')
-rw-r--r-- | libavcodec/intrax8.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/libavcodec/intrax8.c b/libavcodec/intrax8.c index 0dc33e2596..c9551b4b30 100644 --- a/libavcodec/intrax8.c +++ b/libavcodec/intrax8.c @@ -696,9 +696,9 @@ av_cold void ff_intrax8_common_init(IntraX8Context * w, MpegEncContext * const s assert(s->mb_width>0); w->prediction_table=av_mallocz(s->mb_width*2*2);//two rows, 2 blocks per cannon mb - ff_init_scantable(s->dsp.idct_permutation, &w->scantable[0], wmv1_scantable[0]); - ff_init_scantable(s->dsp.idct_permutation, &w->scantable[1], wmv1_scantable[2]); - ff_init_scantable(s->dsp.idct_permutation, &w->scantable[2], wmv1_scantable[3]); + ff_init_scantable(s->dsp.idct_permutation, &w->scantable[0], ff_wmv1_scantable[0]); + ff_init_scantable(s->dsp.idct_permutation, &w->scantable[1], ff_wmv1_scantable[2]); + ff_init_scantable(s->dsp.idct_permutation, &w->scantable[2], ff_wmv1_scantable[3]); } /** |