From f2312ef605c7280d0d061c7507fe51caa8fd7276 Mon Sep 17 00:00:00 2001 From: diego Date: Wed, 6 Apr 2005 07:58:30 +0000 Subject: [PATCH] Errors that cause MEncoder to exit should be MSGL_FATAL, not MSGL_ERR. git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@15057 b3059339-0415-0410-9bf9-f77b7e298cf2 --- mencoder.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/mencoder.c b/mencoder.c index 29693503b8..fad9a22239 100644 --- a/mencoder.c +++ b/mencoder.c @@ -555,8 +555,8 @@ if(stream->type==STREAMTYPE_DVD){ //demuxer=demux_open(stream,file_format,video_id,audio_id,dvdsub_id); demuxer=demux_open(stream,file_format,audio_id,video_id,dvdsub_id,filename); if(!demuxer){ - mp_msg(MSGT_DEMUXER,MSGL_ERR,MSGTR_FormatNotRecognized); - mp_msg(MSGT_DEMUXER, MSGL_ERR, MSGTR_CannotOpenDemuxer); //correct target/level? FIXME? + mp_msg(MSGT_DEMUXER, MSGL_FATAL, MSGTR_FormatNotRecognized); + mp_msg(MSGT_DEMUXER, MSGL_FATAL, MSGTR_CannotOpenDemuxer); mencoder_exit(1,NULL); }