summaryrefslogtreecommitdiffstats
path: root/video
diff options
context:
space:
mode:
authorwm4 <wm4@nowhere>2014-04-30 22:20:08 +0200
committerwm4 <wm4@nowhere>2014-04-30 22:20:08 +0200
commitee574c67ead6457fc6fe0d49b2261f124349004a (patch)
treeecca29bd136edd0a78b6ce110746a205b9ff9c36 /video
parent3f0f666d143c9785dc679a7e36a801e952305a57 (diff)
downloadmpv-ee574c67ead6457fc6fe0d49b2261f124349004a.tar.bz2
mpv-ee574c67ead6457fc6fe0d49b2261f124349004a.tar.xz
video: improve error messages
Diffstat (limited to 'video')
-rw-r--r--video/decode/dec_video.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/video/decode/dec_video.c b/video/decode/dec_video.c
index cb541e6207..7ade93b577 100644
--- a/video/decode/dec_video.c
+++ b/video/decode/dec_video.c
@@ -432,7 +432,7 @@ int video_reconfig_filters(struct dec_video *d_video,
p.w, p.h, p.d_w, p.d_h, p.imgfmt);
if (vf_reconfig(d_video->vfilter, &p) < 0) {
- MP_WARN(d_video, "FATAL: Cannot initialize video driver.\n");
+ MP_FATAL(d_video, "Cannot initialize video filters.\n");
return -1;
}