mirror of
https://github.com/tuxbox-neutrino/neutrino.git
synced 2025-08-26 23:13:13 +02:00
fix missing pip defs
Origin commit data
------------------
Commit: b902e6f55d
Author: BPanther <bpanther_ts@hotmail.com>
Date: 2023-10-05 (Thu, 05 Oct 2023)
This commit is contained in:
@@ -303,10 +303,14 @@ class CZapitChannel
|
||||
void dumpServiceXml(FILE * fd, const char * action = NULL);
|
||||
void dumpBouquetXml(FILE * fd, bool bUser);
|
||||
void setRecordDemux(uint8_t num) { record_demux = num; };
|
||||
#ifdef ENABLE_PIP
|
||||
void setPipDemux(uint8_t num) { pip_demux = num; };
|
||||
#endif
|
||||
void setStreamDemux(uint8_t num) { stream_demux = num; };
|
||||
int getRecordDemux() { return record_demux; };
|
||||
#ifdef ENABLE_PIP
|
||||
int getPipDemux() { return pip_demux; };
|
||||
#endif
|
||||
int getStreamDemux() { return stream_demux; };
|
||||
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)
|
||||
|
@@ -290,6 +290,7 @@ bool CCamManager::SetMode(t_channel_id channel_id, enum runmode mode, bool start
|
||||
#endif
|
||||
INFO("RECORD(%d): fe_num %d rec_dmx %d", mode, source, demux);
|
||||
break;
|
||||
#ifdef ENABLE_PIP
|
||||
case PIP:
|
||||
#if HAVE_ARM_HARDWARE || HAVE_MIPS_HARDWARE
|
||||
#ifdef DYNAMIC_DEMUX
|
||||
@@ -311,6 +312,7 @@ bool CCamManager::SetMode(t_channel_id channel_id, enum runmode mode, bool start
|
||||
#endif
|
||||
INFO("PIP: fe_num %d dmx_src %d", source, demux);
|
||||
break;
|
||||
#endif
|
||||
}
|
||||
|
||||
oldmask = cam->getCaMask();
|
||||
|
Reference in New Issue
Block a user