diff options
author | Martin Storsjö <martin@martin.st> | 2012-02-15 12:29:24 +0200 |
---|---|---|
committer | Martin Storsjö <martin@martin.st> | 2012-02-15 22:06:46 +0200 |
commit | c8e1b2fbc93eaf102994865d730691f5f16f4129 (patch) | |
tree | 81d86220c2ce167291518e5165451093e49fabc5 /libavcodec/dct-test.c | |
parent | 873c89e2a6825150edf036fd9993d53f25a0c6b8 (diff) | |
download | ffmpeg-c8e1b2fbc93eaf102994865d730691f5f16f4129.tar.gz |
libavcodec: Add ff_ prefix to j_rev_dct*
Signed-off-by: Martin Storsjö <martin@martin.st>
Diffstat (limited to 'libavcodec/dct-test.c')
-rw-r--r-- | libavcodec/dct-test.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libavcodec/dct-test.c b/libavcodec/dct-test.c index 7aa2292987..133fdbf0d5 100644 --- a/libavcodec/dct-test.c +++ b/libavcodec/dct-test.c @@ -110,7 +110,7 @@ static const struct algo fdct_tab[] = { static const struct algo idct_tab[] = { { "FAANI", ff_faanidct, NO_PERM }, { "REF-DBL", ff_ref_idct, NO_PERM }, - { "INT", j_rev_dct, MMX_PERM }, + { "INT", ff_j_rev_dct, MMX_PERM }, { "SIMPLE-C", ff_simple_idct_8, NO_PERM }, #if HAVE_MMX |