Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/mpc-hc/FFmpeg.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorClément Bœsch <ubitux@gmail.com>2013-04-14 06:34:06 +0400
committerClément Bœsch <ubitux@gmail.com>2013-04-14 22:15:54 +0400
commit1e3104cd3cd12886f6054d56fab4b7bc1c31f594 (patch)
tree338861211d04010f75a4e9b64828b4a6a09cf21d /libavfilter/vf_mpdecimate.c
parentd4956b0bfbf92a4301529b35096a03f16f355a1b (diff)
Add avpriv_dsputil_init() and use it in lavfi where relevant.
dsputil_init() is deprecated and not meant to be exported. ff_dsputil_init() is internal to libavcodec and thus can not be used. avpriv_dsputil_init() is the version shared between libraries. This commit fixes 3 unjustified libavfilter deprecated warnings.
Diffstat (limited to 'libavfilter/vf_mpdecimate.c')
-rw-r--r--libavfilter/vf_mpdecimate.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/libavfilter/vf_mpdecimate.c b/libavfilter/vf_mpdecimate.c
index 55f0f27ae0..2e386f7df6 100644
--- a/libavfilter/vf_mpdecimate.c
+++ b/libavfilter/vf_mpdecimate.c
@@ -139,7 +139,7 @@ static av_cold int init(AVFilterContext *ctx)
decimate->avctx = avcodec_alloc_context3(NULL);
if (!decimate->avctx)
return AVERROR(ENOMEM);
- dsputil_init(&decimate->dspctx, decimate->avctx);
+ avpriv_dsputil_init(&decimate->dspctx, decimate->avctx);
return 0;
}