summaryrefslogtreecommitdiffstats
path: root/video/filter/vf.c
diff options
context:
space:
mode:
Diffstat (limited to 'video/filter/vf.c')
-rw-r--r--video/filter/vf.c15
1 files changed, 14 insertions, 1 deletions
diff --git a/video/filter/vf.c b/video/filter/vf.c
index 215bf0dc0e..94df76c0e1 100644
--- a/video/filter/vf.c
+++ b/video/filter/vf.c
@@ -487,13 +487,26 @@ vf_instance_t *append_filters(vf_instance_t *last,
//printf("Open filter %s\n",vf_settings[i].name);
vf = vf_open_filter(opts, last, vf_settings[i].name,
vf_settings[i].attribs);
- if (vf)
+ if (vf) {
+ if (vf_settings[i].label)
+ vf->label = talloc_strdup(vf, vf_settings[i].label);
last = vf;
+ }
}
}
return last;
}
+vf_instance_t *vf_find_by_label(vf_instance_t *chain, const char *label)
+{
+ while (chain) {
+ if (chain->label && label && strcmp(chain->label, label) == 0)
+ return chain;
+ chain = chain->next;
+ }
+ return NULL;
+}
+
//============================================================================
void vf_uninit_filter(vf_instance_t *vf)