aboutsummaryrefslogtreecommitdiff
path: root/lib/dvb/dvbtime.cpp
diff options
context:
space:
mode:
authorAndreas Monzner <andreas.monzner@multimedia-labs.de>2005-07-04 17:49:04 +0000
committerAndreas Monzner <andreas.monzner@multimedia-labs.de>2005-07-04 17:49:04 +0000
commit20f69c200ec5703e958a6b95abfcfd5a108e5939 (patch)
treea7f25f70a49c278048cfca2559e4682ba92211fa /lib/dvb/dvbtime.cpp
parenta8310a1a7345577916560e789cdb8c1712e620a9 (diff)
downloadenigma2-20f69c200ec5703e958a6b95abfcfd5a108e5939.tar.gz
enigma2-20f69c200ec5703e958a6b95abfcfd5a108e5939.zip
add epgcache
Diffstat (limited to 'lib/dvb/dvbtime.cpp')
-rw-r--r--lib/dvb/dvbtime.cpp9
1 files changed, 0 insertions, 9 deletions
diff --git a/lib/dvb/dvbtime.cpp b/lib/dvb/dvbtime.cpp
index 84a1ef4b..5167a01e 100644
--- a/lib/dvb/dvbtime.cpp
+++ b/lib/dvb/dvbtime.cpp
@@ -39,15 +39,6 @@ time_t getRTC()
return rtc_time != prev_time ? rtc_time : 0;
}
-int fromBCD(int bcd)
-{
- if ((bcd&0xF0)>=0xA0)
- return -1;
- if ((bcd&0xF)>=0xA)
- return -1;
- return ((bcd&0xF0)>>4)*10+(bcd&0xF);
-}
-
time_t parseDVBtime(__u8 t1, __u8 t2, __u8 t3, __u8 t4, __u8 t5)
{
tm t;