diff options
author | Martin Storsjö <martin@martin.st> | 2012-02-15 12:06:44 +0200 |
---|---|---|
committer | Martin Storsjö <martin@martin.st> | 2012-02-15 22:06:34 +0200 |
commit | 9cf0841ef35239660fc313314778414e2828f025 (patch) | |
tree | 97c8fcbdfacc747aca91ebc43843f52a17b12085 /libavcodec/imc.c | |
parent | 99560a4caab1a0a13504fe0897481d7c98b432fb (diff) | |
download | ffmpeg-9cf0841ef35239660fc313314778414e2828f025.tar.gz |
dsputil: Add ff_ prefix to the dsputil*_init* functions
Signed-off-by: Martin Storsjö <martin@martin.st>
Diffstat (limited to 'libavcodec/imc.c')
-rw-r--r-- | libavcodec/imc.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libavcodec/imc.c b/libavcodec/imc.c index ff8e31e9e6..cfed7c4712 100644 --- a/libavcodec/imc.c +++ b/libavcodec/imc.c @@ -166,7 +166,7 @@ static av_cold int imc_decode_init(AVCodecContext * avctx) av_log(avctx, AV_LOG_INFO, "FFT init failed\n"); return ret; } - dsputil_init(&q->dsp, avctx); + ff_dsputil_init(&q->dsp, avctx); avctx->sample_fmt = AV_SAMPLE_FMT_FLT; avctx->channel_layout = AV_CH_LAYOUT_MONO; |