aboutsummaryrefslogtreecommitdiff
path: root/lib/components
diff options
context:
space:
mode:
authorAndreas Monzner <andreas.monzner@multimedia-labs.de>2008-08-11 22:02:24 +0000
committerAndreas Monzner <andreas.monzner@multimedia-labs.de>2008-08-11 22:02:24 +0000
commit67dbb2973f32ccf52c0e5f3e2b5848320a215062 (patch)
treec267cf3f246ec995a2b341aa5d9c782415584e85 /lib/components
parent1c6adfdbe104773d7a98377de6951da02ae1aac0 (diff)
downloadenigma2-67dbb2973f32ccf52c0e5f3e2b5848320a215062.tar.gz
enigma2-67dbb2973f32ccf52c0e5f3e2b5848320a215062.zip
some service scan improovements
- add a only free scan - the scan now finds also services not listed in SDT - add option "clear before scan" also for single transponder searches For the only free scan a change in the main lamedb transponder format was needed... i think this breaks some external settings editors To detect the service format now the service database file starts with "eDVB services /4/" .. the old format was "eDVB services /3/" .. e2 can read the old and the new format.. but it writes always the new format!
Diffstat (limited to 'lib/components')
-rw-r--r--lib/components/scan.h3
1 files changed, 2 insertions, 1 deletions
diff --git a/lib/components/scan.h b/lib/components/scan.h
index 3d8984e1..222158bc 100644
--- a/lib/components/scan.h
+++ b/lib/components/scan.h
@@ -44,7 +44,8 @@ public:
void addInitial(const eDVBFrontendParametersTerrestrial &p);
/* please keep the flags in sync with lib/dvb/scan.h ! */
- enum { scanNetworkSearch=1, scanRemoveServices=4, scanDontRemoveFeeds=8, clearToScanOnFirstNIT = 16 };
+ enum { scanNetworkSearch=1, scanRemoveServices=4, scanDontRemoveFeeds=8, scanDontRemoveUnscanned=16, clearToScanOnFirstNIT = 32, scanOnlyFree = 64 };
+
int start(int feid, int flags=0 );
SWIG_VOID(RESULT) getFrontend(ePtr<iDVBFrontend> &SWIG_OUTPUT);
SWIG_VOID(RESULT) getCurrentTransponder(ePtr<iDVBFrontendParameters> &SWIG_OUTPUT);