diff options
author | Martin Storsjö | 2012-02-15 12:06:44 +0200 |
---|---|---|
committer | Martin Storsjö | 2012-02-15 22:06:34 +0200 |
commit | 9cf0841ef35239660fc313314778414e2828f025 (patch) | |
tree | 97c8fcbdfacc747aca91ebc43843f52a17b12085 /libavcodec/jvdec.c | |
parent | 99560a4caab1a0a13504fe0897481d7c98b432fb (diff) |
dsputil: Add ff_ prefix to the dsputil*_init* functions
Signed-off-by: Martin Storsjö <martin@martin.st>
Diffstat (limited to 'libavcodec/jvdec.c')
-rw-r--r-- | libavcodec/jvdec.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libavcodec/jvdec.c b/libavcodec/jvdec.c index 5249764347..5d4fdea009 100644 --- a/libavcodec/jvdec.c +++ b/libavcodec/jvdec.c @@ -41,7 +41,7 @@ static av_cold int decode_init(AVCodecContext *avctx) { JvContext *s = avctx->priv_data; avctx->pix_fmt = PIX_FMT_PAL8; - dsputil_init(&s->dsp, avctx); + ff_dsputil_init(&s->dsp, avctx); return 0; } |