diff options
author | Clément Bœsch <ubitux@gmail.com> | 2013-04-14 04:34:06 +0200 |
---|---|---|
committer | Clément Bœsch <ubitux@gmail.com> | 2013-04-14 20:15:54 +0200 |
commit | 1e3104cd3cd12886f6054d56fab4b7bc1c31f594 (patch) | |
tree | 338861211d04010f75a4e9b64828b4a6a09cf21d | |
parent | d4956b0bfbf92a4301529b35096a03f16f355a1b (diff) | |
download | ffmpeg-1e3104cd3cd12886f6054d56fab4b7bc1c31f594.tar.gz |
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.
-rw-r--r-- | libavcodec/dsputil.c | 5 | ||||
-rw-r--r-- | libavcodec/dsputil.h | 1 | ||||
-rw-r--r-- | libavfilter/f_select.c | 2 | ||||
-rw-r--r-- | libavfilter/vf_deshake.c | 2 | ||||
-rw-r--r-- | libavfilter/vf_mpdecimate.c | 2 |
5 files changed, 9 insertions, 3 deletions
diff --git a/libavcodec/dsputil.c b/libavcodec/dsputil.c index 7fd9203704..07d937619f 100644 --- a/libavcodec/dsputil.c +++ b/libavcodec/dsputil.c @@ -2928,3 +2928,8 @@ av_cold void dsputil_init(DSPContext* c, AVCodecContext *avctx) { ff_dsputil_init(c, avctx); } + +av_cold void avpriv_dsputil_init(DSPContext *c, AVCodecContext *avctx) +{ + ff_dsputil_init(c, avctx); +} diff --git a/libavcodec/dsputil.h b/libavcodec/dsputil.h index b4e2ad5f78..07a95aff30 100644 --- a/libavcodec/dsputil.h +++ b/libavcodec/dsputil.h @@ -315,6 +315,7 @@ typedef struct DSPContext { void ff_dsputil_static_init(void); void ff_dsputil_init(DSPContext* p, AVCodecContext *avctx); +void avpriv_dsputil_init(DSPContext* p, AVCodecContext *avctx); attribute_deprecated void dsputil_init(DSPContext* c, AVCodecContext *avctx); int ff_check_alignment(void); diff --git a/libavfilter/f_select.c b/libavfilter/f_select.c index acf713cb0e..9a5666f809 100644 --- a/libavfilter/f_select.c +++ b/libavfilter/f_select.c @@ -199,7 +199,7 @@ static int config_input(AVFilterLink *inlink) select->avctx = avcodec_alloc_context3(NULL); if (!select->avctx) return AVERROR(ENOMEM); - dsputil_init(&select->c, select->avctx); + avpriv_dsputil_init(&select->c, select->avctx); } #endif return 0; diff --git a/libavfilter/vf_deshake.c b/libavfilter/vf_deshake.c index 5eae5feb8d..d5f80b0e9f 100644 --- a/libavfilter/vf_deshake.c +++ b/libavfilter/vf_deshake.c @@ -407,7 +407,7 @@ static int config_props(AVFilterLink *link) deshake->last.zoom = 0; deshake->avctx = avcodec_alloc_context3(NULL); - dsputil_init(&deshake->c, deshake->avctx); + avpriv_dsputil_init(&deshake->c, deshake->avctx); return 0; } 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; } |