mirror of
https://github.com/tuxbox-neutrino/neutrino.git
synced 2025-08-30 17:01:15 +02:00
zapit/include/zapit/channel.h: add demux num for PiP
This commit is contained in:
@@ -160,6 +160,7 @@ class CZapitChannel
|
|||||||
std::string ttx_language_code;
|
std::string ttx_language_code;
|
||||||
|
|
||||||
uint8_t record_demux;
|
uint8_t record_demux;
|
||||||
|
uint8_t pip_demux;
|
||||||
|
|
||||||
void Init();
|
void Init();
|
||||||
friend class CChannelList;
|
friend class CChannelList;
|
||||||
@@ -256,7 +257,9 @@ class CZapitChannel
|
|||||||
void dumpServiceXml(FILE * fd, const char * action = NULL);
|
void dumpServiceXml(FILE * fd, const char * action = NULL);
|
||||||
void dumpBouquetXml(FILE * fd);
|
void dumpBouquetXml(FILE * fd);
|
||||||
void setRecordDemux(int num) { record_demux = num; };
|
void setRecordDemux(int num) { record_demux = num; };
|
||||||
|
void setPipDemux(int num) { pip_demux = num; };
|
||||||
int getRecordDemux() { return record_demux; };
|
int getRecordDemux() { return record_demux; };
|
||||||
|
int getPipDemux() { return pip_demux; };
|
||||||
static t_channel_id makeChannelId(t_satellite_position sat, freq_id_t freq,
|
static t_channel_id makeChannelId(t_satellite_position sat, freq_id_t freq,
|
||||||
t_transport_stream_id tsid, t_original_network_id onid, t_service_id sid)
|
t_transport_stream_id tsid, t_original_network_id onid, t_service_id sid)
|
||||||
{
|
{
|
||||||
|
@@ -65,6 +65,7 @@ void CZapitChannel::Init()
|
|||||||
last_unlocked_time = 0;
|
last_unlocked_time = 0;
|
||||||
has_bouquet = false;
|
has_bouquet = false;
|
||||||
record_demux = 2;
|
record_demux = 2;
|
||||||
|
pip_demux = 2;
|
||||||
polarization = 0;
|
polarization = 0;
|
||||||
flags = 0;
|
flags = 0;
|
||||||
deltype = FE_QPSK;
|
deltype = FE_QPSK;
|
||||||
|
Reference in New Issue
Block a user