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

github.com/FFmpeg/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>2012-06-05 09:27:41 +0400
committerClément Bœsch <ubitux@gmail.com>2012-06-05 09:29:00 +0400
commit44be67595db74340495eca4534faf56d54e2a028 (patch)
tree74c1c0359eaae0c13e6d97fb3cf5b3b175cd0ef6 /libavfilter
parent1b27b8bf6c7972622ca73c0bd1e3fa16018336e3 (diff)
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.c2
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;
}