diff options
| author | ghost <andreas.monzner@multimedia-labs.de> | 2008-11-16 12:23:21 +0100 |
|---|---|---|
| committer | ghost <andreas.monzner@multimedia-labs.de> | 2008-11-16 12:57:27 +0100 |
| commit | 6347d817582886ab7c7535b44601538749d06d5b (patch) | |
| tree | c0b6512ac86822afd65e67ee828524713e4e9eb2 /lib/dvb/db.cpp | |
| parent | 369086956b791ab97d2e60e2c820f7045650c236 (diff) | |
| download | enigma2-6347d817582886ab7c7535b44601538749d06d5b.tar.gz enigma2-6347d817582886ab7c7535b44601538749d06d5b.zip | |
Add possibility to set Pilot also for DVB-S2 non 8PSK Transponders (i.e. the new Euro1080 Transponder on 7°E)
But this needs also new drivers!
Diffstat (limited to 'lib/dvb/db.cpp')
| -rw-r--r-- | lib/dvb/db.cpp | 9 |
1 files changed, 3 insertions, 6 deletions
diff --git a/lib/dvb/db.cpp b/lib/dvb/db.cpp index c6c2e855..1c332033 100644 --- a/lib/dvb/db.cpp +++ b/lib/dvb/db.cpp @@ -497,7 +497,7 @@ void eDVBDB::saveServicelist(const char *file) { if (sat.system == eDVBFrontendParametersSatellite::System::DVB_S2) { - fprintf(f, "\ts %d:%d:%d:%d:%d:%d:%d:%d:%d:%d", + fprintf(f, "\ts %d:%d:%d:%d:%d:%d:%d:%d:%d:%d:%d", sat.frequency, sat.symbol_rate, sat.polarisation, sat.fec, sat.orbital_position > 1800 ? sat.orbital_position - 3600 : sat.orbital_position, @@ -505,11 +505,8 @@ void eDVBDB::saveServicelist(const char *file) flags, sat.system, sat.modulation, - sat.rolloff); - if (sat.modulation == eDVBFrontendParametersSatellite::Modulation::M8PSK) - fprintf(f, ":%d\n", sat.pilot); - else - fprintf(f, "\n"); + sat.rolloff, + sat.pilot); } else { |
