1
mirror of https://github.com/mpv-player/mpv synced 2024-10-02 16:25:33 +02:00

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
This commit is contained in:
ulion 2007-11-29 03:35:50 +00:00
parent 7252c0e78e
commit 09270628da

View File

@ -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];