X-Git-Url: https://git.cweiske.de/enigma2.git/blobdiff_plain/ced666c9fc8ae50d23b3836917fdf3cbf501383c..38b8a24b2034c387aa0762eb8a3d96b786fd581b:/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);