mirror of
https://github.com/tuxbox-fork-migrations/recycled-ni-neutrino.git
synced 2025-08-30 17:01:08 +02:00
fix missing pip defs
Origin commit data
------------------
Branch: ni/coolstream
Commit: 9f491b6231
Author: BPanther <bpanther_ts@hotmail.com>
Date: 2024-01-02 (Tue, 02 Jan 2024)
------------------
No further description and justification available within origin commit message!
------------------
This commit was generated by Migit
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)
|
||||
|
@@ -289,6 +289,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
|
||||
@@ -310,6 +311,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