X-Git-Url: https://git.cweiske.de/enigma2.git/blobdiff_plain/3e3832c8784e966dca29354c158ffb636f33c8cb..4e6bb28e14b621f0e818db84150522549dc7b6d4:/lib/dvb/frontendparms.h diff --git a/lib/dvb/frontendparms.h b/lib/dvb/frontendparms.h index b8f47f43..c963a251 100644 --- a/lib/dvb/frontendparms.h +++ b/lib/dvb/frontendparms.h @@ -37,14 +37,21 @@ struct eDVBFrontendParametersSatellite Auto, QPSK, M8PSK, QAM_16 }; }; - struct RollOff { // dvb-s2 + // dvb-s2 + struct RollOff { enum { - alpha_0_35, alpha_0_25, alpha_0_20, alpha_auto + alpha_0_35, alpha_0_25, alpha_0_20 + }; + }; + // only 8psk + struct Pilot { + enum { + Off, On, Unknown }; }; bool no_rotor_command_on_tune; unsigned int frequency, symbol_rate; - int polarisation, fec, inversion, orbital_position, system, modulation, roll_off; + int polarisation, fec, inversion, orbital_position, system, modulation, rolloff, pilot; }; SWIG_ALLOW_OUTPUT_SIMPLE(eDVBFrontendParametersSatellite);