From a54b775f80beb960889ce68122fb8416ebb0695f Mon Sep 17 00:00:00 2001 From: wm4 Date: Sat, 7 Dec 2013 19:31:33 +0100 Subject: vf: print error when creating filter fails Before that we relied on the filters printing their own error messages. --- video/filter/vf.c | 1 + 1 file changed, 1 insertion(+) (limited to 'video') diff --git a/video/filter/vf.c b/video/filter/vf.c index 562f6e8971..31ad340bae 100644 --- a/video/filter/vf.c +++ b/video/filter/vf.c @@ -258,6 +258,7 @@ static struct vf_instance *vf_open(struct MPOpts *opts, vf_instance_t *next, return vf; error: + mp_msg(MSGT_VFILTER, MSGL_ERR, "Creating filter '%s' failed.\n", name); talloc_free(vf); return NULL; } -- cgit v1.2.3