Commit 7f59683c authored by Stéphane Borel's avatar Stéphane Borel

Added a 'dvdold' shortcut to force the use of the dvd plugin in case

another plugin with higher priority wants to use 'dvd' as shortcut.
parent 039cdf37
...@@ -2,7 +2,7 @@ ...@@ -2,7 +2,7 @@
* dvd.c : DVD input module for vlc * dvd.c : DVD input module for vlc
***************************************************************************** *****************************************************************************
* Copyright (C) 2000-2001 VideoLAN * Copyright (C) 2000-2001 VideoLAN
* $Id: dvd.c,v 1.32 2002/06/01 12:31:58 sam Exp $ * $Id: dvd.c,v 1.33 2002/07/17 21:28:19 stef Exp $
* *
* Authors: Samuel Hocevar <sam@zoy.org> * Authors: Samuel Hocevar <sam@zoy.org>
* *
...@@ -75,6 +75,7 @@ MODULE_INIT_START ...@@ -75,6 +75,7 @@ MODULE_INIT_START
SET_DESCRIPTION( _("DVD input module, uses libdvdcss") ) SET_DESCRIPTION( _("DVD input module, uses libdvdcss") )
ADD_CAPABILITY( ACCESS, 100 ) ADD_CAPABILITY( ACCESS, 100 )
#endif #endif
ADD_SHORTCUT( "dvdold" );
MODULE_INIT_STOP MODULE_INIT_STOP
MODULE_ACTIVATE_START MODULE_ACTIVATE_START
......
...@@ -8,7 +8,7 @@ ...@@ -8,7 +8,7 @@
* -dvd_udf to find files * -dvd_udf to find files
***************************************************************************** *****************************************************************************
* Copyright (C) 1998-2001 VideoLAN * Copyright (C) 1998-2001 VideoLAN
* $Id: dvd_access.c,v 1.20 2002/06/01 12:31:58 sam Exp $ * $Id: dvd_access.c,v 1.21 2002/07/17 21:28:19 stef Exp $
* *
* Author: Stphane Borel <stef@via.ecp.fr> * Author: Stphane Borel <stef@via.ecp.fr>
* *
...@@ -239,7 +239,7 @@ static int DVDOpen( input_thread_t *p_input ) ...@@ -239,7 +239,7 @@ static int DVDOpen( input_thread_t *p_input )
vlc_mutex_unlock( &p_input->stream.stream_lock ); vlc_mutex_unlock( &p_input->stream.stream_lock );
p_input->psz_demux = "dvd"; p_input->psz_demux = "dvdold";
return 0; return 0;
} }
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment