Commit d4b9df3d authored by Matthias Keiser's avatar Matthias Keiser Committed by Rémi Denis-Courmont

transform: parse configuration argument

Signed-off-by: default avatarRémi Denis-Courmont <remi@remlab.net>
parent a50f7517
......@@ -315,6 +315,12 @@ static int Open(vlc_object_t *object)
sys->chroma = chroma;
static const char *const ppsz_filter_options[] = {
"type", NULL
};
config_ChainParse(filter, CFG_PREFIX, ppsz_filter_options,
filter->p_cfg);
char *type_name = var_InheritString(filter, CFG_PREFIX"type");
const transform_description_t *dsc = NULL;
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment