diff options
author | Clément Bœsch <ubitux@gmail.com> | 2012-06-05 07:27:41 +0200 |
---|---|---|
committer | Clément Bœsch <ubitux@gmail.com> | 2012-06-05 07:29:00 +0200 |
commit | 44be67595db74340495eca4534faf56d54e2a028 (patch) | |
tree | 74c1c0359eaae0c13e6d97fb3cf5b3b175cd0ef6 /libavfilter | |
parent | 1b27b8bf6c7972622ca73c0bd1e3fa16018336e3 (diff) | |
download | ffmpeg-44be67595db74340495eca4534faf56d54e2a028.tar.gz |
lavfi/select: use exported dsputil_init function.
This is the deprecated version of the function but it is exported, so it
should fix the shared FATE box.
Diffstat (limited to 'libavfilter')
-rw-r--r-- | libavfilter/vf_select.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libavfilter/vf_select.c b/libavfilter/vf_select.c index 0c1b5091e6..be0bfc9cf0 100644 --- a/libavfilter/vf_select.c +++ b/libavfilter/vf_select.c @@ -177,7 +177,7 @@ static int config_input(AVFilterLink *inlink) select->avctx = avcodec_alloc_context3(NULL); if (!select->avctx) return AVERROR(ENOMEM); - ff_dsputil_init(&select->c, select->avctx); + dsputil_init(&select->c, select->avctx); } return 0; } |