mirror of
https://github.com/tuxbox-fork-migrations/recycled-ni-neutrino.git
synced 2025-09-02 10:21:04 +02:00
zapit/src/channel.cpp: add channel flag field
Origin commit data
------------------
Commit: c793b78ca0
Author: [CST] Focus <focus.cst@gmail.com>
Date: 2012-03-29 (Thu, 29 Mar 2012)
This commit is contained in:
@@ -165,6 +165,11 @@ class CZapitChannel
|
|||||||
friend class CChannelList;
|
friend class CChannelList;
|
||||||
|
|
||||||
public:
|
public:
|
||||||
|
typedef enum channel_flags {
|
||||||
|
NEW = 0x01,
|
||||||
|
REMOVED = 0x02,
|
||||||
|
UPDATED = 0x03
|
||||||
|
} channel_flags_t;
|
||||||
casys_map_t camap;
|
casys_map_t camap;
|
||||||
|
|
||||||
bool bAlwaysLocked;
|
bool bAlwaysLocked;
|
||||||
@@ -177,6 +182,7 @@ class CZapitChannel
|
|||||||
char * pname;
|
char * pname;
|
||||||
bool has_bouquet;
|
bool has_bouquet;
|
||||||
uint8_t polarization;
|
uint8_t polarization;
|
||||||
|
int flags;
|
||||||
|
|
||||||
/* constructor, desctructor */
|
/* constructor, desctructor */
|
||||||
CZapitChannel(const std::string & p_name, t_service_id p_sid, t_transport_stream_id p_tsid, t_original_network_id p_onid, unsigned char p_service_type, t_satellite_position p_satellite_position, freq_id_t freq);
|
CZapitChannel(const std::string & p_name, t_service_id p_sid, t_transport_stream_id p_tsid, t_original_network_id p_onid, unsigned char p_service_type, t_satellite_position p_satellite_position, freq_id_t freq);
|
||||||
|
@@ -66,6 +66,7 @@ void CZapitChannel::Init()
|
|||||||
has_bouquet = false;
|
has_bouquet = false;
|
||||||
record_demux = 2;
|
record_demux = 2;
|
||||||
polarization = 0;
|
polarization = 0;
|
||||||
|
flags = 0;
|
||||||
}
|
}
|
||||||
|
|
||||||
CZapitChannel::~CZapitChannel(void)
|
CZapitChannel::~CZapitChannel(void)
|
||||||
|
Reference in New Issue
Block a user