diff options
author | Martin Storsjö <martin@martin.st> | 2012-02-15 12:10:21 +0200 |
---|---|---|
committer | Martin Storsjö <martin@martin.st> | 2012-02-15 22:06:38 +0200 |
commit | 3e2efacdd8a3ffb5d1c9004f112492b946284f9b (patch) | |
tree | 11532872d32b303c6654955f4b0a1355a17e22e9 /libavcodec/dsputil.c | |
parent | 9cf0841ef35239660fc313314778414e2828f025 (diff) | |
download | ffmpeg-3e2efacdd8a3ffb5d1c9004f112492b946284f9b.tar.gz |
libavcodec: Prefix fdct_ifast, fdct_ifast248
Signed-off-by: Martin Storsjö <martin@martin.st>
Diffstat (limited to 'libavcodec/dsputil.c')
-rw-r--r-- | libavcodec/dsputil.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/libavcodec/dsputil.c b/libavcodec/dsputil.c index d91885327d..3a84cce750 100644 --- a/libavcodec/dsputil.c +++ b/libavcodec/dsputil.c @@ -2796,8 +2796,8 @@ av_cold void ff_dsputil_init(DSPContext* c, AVCodecContext *avctx) c->fdct248 = ff_fdct248_islow_10; } else { if(avctx->dct_algo==FF_DCT_FASTINT) { - c->fdct = fdct_ifast; - c->fdct248 = fdct_ifast248; + c->fdct = ff_fdct_ifast; + c->fdct248 = ff_fdct_ifast248; } else if(avctx->dct_algo==FF_DCT_FAAN) { c->fdct = ff_faandct; |