summaryrefslogtreecommitdiffstats
path: root/video/filter
diff options
context:
space:
mode:
authorwm4 <wm4@nowhere>2014-10-13 14:35:03 +0200
committerwm4 <wm4@nowhere>2014-10-13 14:35:03 +0200
commitceba1d446a586c314bfc01ffd65ca7931dadc133 (patch)
tree3466a5660502af3de0a048d619486edb00fde721 /video/filter
parent7266ceeb8e0ad5f66991ebfa7caa0dff235481ef (diff)
downloadmpv-ceba1d446a586c314bfc01ffd65ca7931dadc133.tar.bz2
mpv-ceba1d446a586c314bfc01ffd65ca7931dadc133.tar.xz
vf_vapoursynth: add debug message when returning error from GetFrame
Some filters still (or will) behave badly on these errors, so explicitly log when it happens.
Diffstat (limited to 'video/filter')
-rw-r--r--video/filter/vf_vapoursynth.c1
1 files changed, 1 insertions, 0 deletions
diff --git a/video/filter/vf_vapoursynth.c b/video/filter/vf_vapoursynth.c
index c09563596d..ba630f8df1 100644
--- a/video/filter/vf_vapoursynth.c
+++ b/video/filter/vf_vapoursynth.c
@@ -417,6 +417,7 @@ static const VSFrameRef *VS_CC infiltGetFrame(int frameno, int activationReason,
while (1) {
if (p->shutdown) {
p->vsapi->setFilterError("EOF or filter reinit/uninit", frameCtx);
+ MP_DBG(vf, "returning error on EOF/reset\n");
break;
}
if (p->initializing) {