aboutsummaryrefslogtreecommitdiff
path: root/lib/dvb/sec.cpp
diff options
context:
space:
mode:
authorAndreas Monzner <andreas.monzner@multimedia-labs.de>2008-09-08 11:09:35 +0000
committerAndreas Monzner <andreas.monzner@multimedia-labs.de>2008-09-08 11:09:35 +0000
commit75e290c3b464a082901ea3213fb6dc6e56d628c2 (patch)
tree89885d3fe3a75649a44f5254b1d623fd87274d10 /lib/dvb/sec.cpp
parente3a1855aa85d2e220f20b498b0f4086450b1916b (diff)
downloadenigma2-75e290c3b464a082901ea3213fb6dc6e56d628c2.tar.gz
enigma2-75e290c3b464a082901ea3213fb6dc6e56d628c2.zip
replace eFatal (which can occour during servicescan at some conditions) with
a debug message
Diffstat (limited to 'lib/dvb/sec.cpp')
-rw-r--r--lib/dvb/sec.cpp14
1 files changed, 10 insertions, 4 deletions
diff --git a/lib/dvb/sec.cpp b/lib/dvb/sec.cpp
index b1f421c0..d56024e1 100644
--- a/lib/dvb/sec.cpp
+++ b/lib/dvb/sec.cpp
@@ -851,10 +851,16 @@ RESULT eDVBSatelliteEquipmentControl::prepare(iDVBFrontend &frontend, FRONTENDPA
return 0;
}
}
- else
- eFatal("canTune failed in sec prepare!!! this should never ever happen!");
-
- eDebug("found no useable satellite configuration for orbital position (%d)", sat.orbital_position );
+ eDebug("found no useable satellite configuration for %s freq %d%s %s on orbital position (%d)",
+ sat.system ? "DVB-S2" : "DVB-S",
+ sat.frequency,
+ sat.polarisation == eDVBFrontendParametersSatellite::Polarisation::Horizontal ? "H" :
+ eDVBFrontendParametersSatellite::Polarisation::Vertical ? "V" :
+ eDVBFrontendParametersSatellite::Polarisation::CircularLeft ? "CL" : "CR",
+ sat.modulation == eDVBFrontendParametersSatellite::Modulation::Auto ? "AUTO" :
+ eDVBFrontendParametersSatellite::Modulation::QPSK ? "QPSK" :
+ eDVBFrontendParametersSatellite::Modulation::M8PSK ? "8PSK" : "QAM16",
+ sat.orbital_position );
return -1;
}