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.
This commit is contained in:
Clément Bœsch 2012-06-05 07:27:41 +02:00
parent 1b27b8bf6c
commit 44be67595d
1 changed files with 1 additions and 1 deletions

View File

@ -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;
}