From 0b30e9845b60aae63e6d7e5b8e3a80bdfe4e4ad5 Mon Sep 17 00:00:00 2001 From: Andreas Monzner Date: Sun, 2 Apr 2006 16:00:29 +0000 Subject: much faster service change on same transponder (just FTA) add ability to "zapto" and "record" services and use just cached pids (no use of PMT) ( no playback yet !!!! ) this is implemented likewise to enigma1 Example entry in lamedb: 6dca:00c00000:044d:0001:1:0 Das Erste p:ARD,c:000065,c:010066,c:020068,c:030065,f:4 p: is the provider name c:XXPPPP: are cached pids 00 is the video pid 01 is the audio pid 02 is the text pid 03 is the pcr pid f: is a flag bitmask bit 3 (decimal 4) is used for disable use of the pmt (just use cached pids) --- lib/dvb/db.cpp | 4 ++++ 1 file changed, 4 insertions(+) (limited to 'lib/dvb/db.cpp') diff --git a/lib/dvb/db.cpp b/lib/dvb/db.cpp index 63e163eb..13b43ffe 100644 --- a/lib/dvb/db.cpp +++ b/lib/dvb/db.cpp @@ -476,6 +476,7 @@ void eDVBDB::saveServicelist() 0); fprintf(f, "%s\n", i->second->m_service_name.c_str()); + fprintf(f, "p:%s", i->second->m_provider_name.c_str()); // write cached pids @@ -488,6 +489,9 @@ void eDVBDB::saveServicelist() ca != i->second->m_ca.end(); ++ca) fprintf(f, ",C:%04x", *ca); + if (it->second->m_flags) + fprintf(f, ",f:%x", it->second->m_flags); + fprintf(f, "\n"); services++; } -- cgit v1.2.3