summaryrefslogtreecommitdiffstats
path: root/video/filter
diff options
context:
space:
mode:
authorwm4 <wm4@nowhere>2014-05-15 16:59:26 +0200
committerwm4 <wm4@nowhere>2014-05-15 16:59:26 +0200
commit0128579542cf55023aa01d7d6aba8079203960ef (patch)
tree6c66677baea8d6afa603925da964b0b751de3ff7 /video/filter
parent97604ebcd23a2c3775dbd8ce3e4f2cf1cc499f5b (diff)
downloadmpv-0128579542cf55023aa01d7d6aba8079203960ef.tar.bz2
mpv-0128579542cf55023aa01d7d6aba8079203960ef.tar.xz
vf_vapoursynth: fix debug output
Diffstat (limited to 'video/filter')
-rw-r--r--video/filter/vf_vapoursynth.c5
1 files changed, 4 insertions, 1 deletions
diff --git a/video/filter/vf_vapoursynth.c b/video/filter/vf_vapoursynth.c
index d4c74cd16e..9d871c2173 100644
--- a/video/filter/vf_vapoursynth.c
+++ b/video/filter/vf_vapoursynth.c
@@ -434,7 +434,7 @@ static void destroy_vs(struct vf_instance *vf)
p->out_pts = MP_NOPTS_VALUE;
p->out_frameno = p->in_frameno = 0;
- MP_DBG(vf, "initialized.\n");
+ MP_DBG(vf, "uninitialized.\n");
}
static int reinit_vs(struct vf_instance *vf)
@@ -445,6 +445,8 @@ static int reinit_vs(struct vf_instance *vf)
destroy_vs(vf);
+ MP_DBG(vf, "initializing...\n");
+
// First load an empty script to get a VSScript, so that we get the vsapi
// and vscore.
if (vsscript_evaluateScript(&p->se, "", NULL, 0))
@@ -486,6 +488,7 @@ static int reinit_vs(struct vf_instance *vf)
goto error;
}
+ MP_DBG(vf, "initialized.\n");
res = 0;
error:
if (p->vsapi) {