[MPlayer-cvslog] r19843 - trunk/mplayer.c

nicodvb subversion at mplayerhq.hu
Fri Sep 15 19:26:30 CEST 2006


Author: nicodvb
Date: Fri Sep 15 19:26:30 2006
New Revision: 19843

Modified:
   trunk/mplayer.c

Log:
don't uninit the video_out when using -fixed-vo; patch by Jonas Jermann

Modified: trunk/mplayer.c
==============================================================================
--- trunk/mplayer.c	(original)
+++ trunk/mplayer.c	Fri Sep 15 19:26:30 2006
@@ -5138,7 +5138,7 @@
       if(stream->type != STREAMTYPE_DVDNAV) break;
 
       if(mp_dvdnav_handle_input(stream, cmd->args[0].v.i, &button)) {
-          uninit_player(INITED_ALL-(INITED_STREAM|INITED_INPUT));
+          uninit_player(INITED_ALL-(INITED_STREAM|INITED_INPUT|(fixed_vo ? INITED_VO : 0)));
           goto goto_enable_cache;
       } else if(button) set_osd_msg(OSD_MSG_TEXT, 1, osd_duration, "Selected button number %d", button);
       break;



More information about the MPlayer-cvslog mailing list