diff options
author | Michael Roitzsch <mroi@users.sourceforge.net> | 2002-08-09 22:33:10 +0000 |
---|---|---|
committer | Michael Roitzsch <mroi@users.sourceforge.net> | 2002-08-09 22:33:10 +0000 |
commit | 7ff5f35709afcd3dcbef2fa1b4f6c4b0ddf73817 (patch) | |
tree | 55d767ee45cdaf22e7e6f5f324026f7c3eb9aa7c | |
parent | f894627e3dce0f23b5a3eb8a3149bd3a51ef2d05 (diff) | |
download | xine-lib-7ff5f35709afcd3dcbef2fa1b4f6c4b0ddf73817.tar.gz xine-lib-7ff5f35709afcd3dcbef2fa1b4f6c4b0ddf73817.tar.bz2 |
sorry, my raw device patch was not meant to be committed
It only works with a patched version of libdvdcss
CVS patchset: 2419
CVS date: 2002/08/09 22:33:10
-rw-r--r-- | src/input/input_dvd.c | 14 |
1 files changed, 5 insertions, 9 deletions
diff --git a/src/input/input_dvd.c b/src/input/input_dvd.c index 6b4042878..f6f0c347b 100644 --- a/src/input/input_dvd.c +++ b/src/input/input_dvd.c @@ -18,7 +18,7 @@ * along with this program; if not, write to the Free Software * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA * - * $Id: input_dvd.c,v 1.57 2002/08/09 22:13:08 mroi Exp $ + * $Id: input_dvd.c,v 1.58 2002/08/09 22:33:10 mroi Exp $ * */ @@ -97,10 +97,8 @@ /* The default DVD device on Solaris is not /dev/dvd */ #if defined(__sun) #define DVD_PATH "/vol/dev/aliases/cdrom0" -#define RDVD_PATH NULL #else #define DVD_PATH "/dev/dvd" -#define RDVD_PATH "/dev/rdvd" #endif /* Some misc. defines */ @@ -1306,7 +1304,6 @@ check_solaris_vold_device(dvdnav_input_plugin_t *this) input_plugin_t *init_input_plugin (int iface, xine_t *xine) { dvdnav_input_plugin_t *this; config_values_t *config = xine->config; - char *raw_device; trace_print("Called\n"); @@ -1357,11 +1354,6 @@ input_plugin_t *init_input_plugin (int iface, xine_t *xine) { device_change_cb, (void *)this); this->current_dvd_device = this->dvd_device; - raw_device = config->register_string(config, "input.dvd_raw_device", - RDVD_PATH, "raw device set up for dvd access", - NULL, NULL, NULL); - if (raw_device) setenv("DVDCSS_RAW_DEVICE", raw_device, 0); - config->register_num(config, "input.dvd_region", 1, "Region that DVD player claims " @@ -1405,6 +1397,10 @@ input_plugin_t *init_input_plugin (int iface, xine_t *xine) { /* * $Log: input_dvd.c,v $ + * Revision 1.58 2002/08/09 22:33:10 mroi + * sorry, my raw device patch was not meant to be committed + * It only works with a patched version of libdvdcss + * * Revision 1.57 2002/08/09 22:13:08 mroi * make developers life easier: add possibility to use an existing shared * version of libdvdnav |