From 44be67595db74340495eca4534faf56d54e2a028 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Cl=C3=A9ment=20B=C5=93sch?= Date: Tue, 5 Jun 2012 07:27:41 +0200 Subject: 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. --- libavfilter/vf_select.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'libavfilter') 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; } -- cgit v1.2.3