diff mplayer.c @ 12681:6d815f12e3e5

rtc-device cmd option by James Noble
author alex
date Sat, 26 Jun 2004 10:51:44 +0000
parents 9709ce101949
children 0230544f52a1
line wrap: on
line diff
--- a/mplayer.c	Sat Jun 26 10:40:23 2004 +0000
+++ b/mplayer.c	Sat Jun 26 10:51:44 2004 +0000
@@ -343,6 +343,7 @@
 
 #ifdef HAVE_RTC
 static int nortc;
+static char* rtc_device;
 #endif
 
 #ifdef USE_EDL
@@ -1093,8 +1094,9 @@
   if(!nortc)
   {
     // seteuid(0); /* Can't hurt to try to get root here */
-    if ((rtc_fd = open("/dev/rtc", O_RDONLY)) < 0)
-	mp_msg(MSGT_CPLAYER, MSGL_WARN, "Failed to open /dev/rtc: %s (/dev/rtc should be readable by the user.)\n", strerror(errno));
+    if ((rtc_fd = open(rtc_device ? rtc_device : "/dev/rtc", O_RDONLY)) < 0)
+	mp_msg(MSGT_CPLAYER, MSGL_WARN, "Failed to open %s: %s (it should be readable by the user.)\n",
+	    rtc_device ? rtc_device : "/dev/rtc", strerror(errno));
      else {
 	unsigned long irqp = 1024; /* 512 seemed OK. 128 is jerky. */