mirror of
https://github.com/tuxbox-neutrino/neutrino.git
synced 2025-08-26 23:13:13 +02:00
zapit/channel.h: simplify ifdef ENABLE_PIP
Origin commit data
------------------
Commit: 2cffd27e1f
Author: vanhofen <vanhofen@gmx.de>
Date: 2024-01-02 (Tue, 02 Jan 2024)
Origin message was:
------------------
- zapit/channel.h: simplify ifdef ENABLE_PIP
This commit is contained in:
@@ -302,16 +302,18 @@ class CZapitChannel
|
||||
|
||||
void dumpServiceXml(FILE * fd, const char * action = NULL);
|
||||
void dumpBouquetXml(FILE * fd, bool bUser);
|
||||
|
||||
void setRecordDemux(uint8_t num) { record_demux = num; };
|
||||
int getRecordDemux() { return record_demux; };
|
||||
|
||||
#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
|
||||
|
||||
void setStreamDemux(uint8_t num) { stream_demux = num; };
|
||||
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)
|
||||
{
|
||||
|
Reference in New Issue
Block a user