diff options
author | wm4 <wm4@nowhere> | 2014-04-30 22:20:08 +0200 |
---|---|---|
committer | wm4 <wm4@nowhere> | 2014-04-30 22:20:08 +0200 |
commit | ee574c67ead6457fc6fe0d49b2261f124349004a (patch) | |
tree | ecca29bd136edd0a78b6ce110746a205b9ff9c36 /video/decode | |
parent | 3f0f666d143c9785dc679a7e36a801e952305a57 (diff) | |
download | mpv-ee574c67ead6457fc6fe0d49b2261f124349004a.tar.bz2 mpv-ee574c67ead6457fc6fe0d49b2261f124349004a.tar.xz |
video: improve error messages
Diffstat (limited to 'video/decode')
-rw-r--r-- | video/decode/dec_video.c | 2 |
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; } |