summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorulion <ulion@b3059339-0415-0410-9bf9-f77b7e298cf2>2007-11-29 03:35:50 +0000
committerulion <ulion@b3059339-0415-0410-9bf9-f77b7e298cf2>2007-11-29 03:35:50 +0000
commit09270628da5d014eb00f217518b2c7227fb0774f (patch)
tree13af9ac434a7ecef94cab5896a9ccc340b4a9c7f
parent7252c0e78e29587cb40aa36da4d888da987be9a5 (diff)
downloadmpv-09270628da5d014eb00f217518b2c7227fb0774f.tar.bz2
mpv-09270628da5d014eb00f217518b2c7227fb0774f.tar.xz
Even when vobsub is forced, .ifo file is still not necessary,
so change the log level from error to warning. git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@25197 b3059339-0415-0410-9bf9-f77b7e298cf2
-rw-r--r--vobsub.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/vobsub.c b/vobsub.c
index 45eee2789b..76ff71b37f 100644
--- a/vobsub.c
+++ b/vobsub.c
@@ -991,7 +991,7 @@ vobsub_parse_ifo(void* this, const char *const name, unsigned int *palette, unsi
rar_stream_t *fd = rar_open(name, "rb");
if (fd == NULL) {
if (force)
- mp_msg(MSGT_VOBSUB,MSGL_ERR, "VobSub: Can't open IFO file\n");
+ mp_msg(MSGT_VOBSUB,MSGL_WARN, "VobSub: Can't open IFO file\n");
} else {
// parse IFO header
unsigned char block[0x800];