diff options
author | Michael Niedermayer <michaelni@gmx.at> | 2012-02-16 19:55:16 +0100 |
---|---|---|
committer | Michael Niedermayer <michaelni@gmx.at> | 2012-02-16 19:55:16 +0100 |
commit | 5a03a3d99822ff4ce8c1a7e3a1aa9c3c228995c4 (patch) | |
tree | 6a7fe4db78bc2844298a42a79a7e46083d6d4899 | |
parent | 67f17e72023195406993e6e644b93688751775d7 (diff) | |
download | ffmpeg-5a03a3d99822ff4ce8c1a7e3a1aa9c3c228995c4.tar.gz |
proresdec2: use ff_dsputil_init() avoid deprecated ff_ less variant.
Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
-rw-r--r-- | libavcodec/proresdec2.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libavcodec/proresdec2.c b/libavcodec/proresdec2.c index 6ffc7cee28..b48259a3cd 100644 --- a/libavcodec/proresdec2.c +++ b/libavcodec/proresdec2.c @@ -69,7 +69,7 @@ static av_cold int decode_init(AVCodecContext *avctx) avctx->bits_per_raw_sample = 10; - dsputil_init(&ctx->dsp, avctx); + ff_dsputil_init(&ctx->dsp, avctx); ff_proresdsp_init(&ctx->prodsp, avctx); avctx->coded_frame = &ctx->frame; |