From aec41edae4114dac4d6f697108d2829ad2d6e96f Mon Sep 17 00:00:00 2001 From: "[CST] Focus" Date: Wed, 16 Jan 2013 15:41:12 +0400 Subject: [PATCH] zapit/src/channel.cpp: add delivery type member Origin commit data ------------------ Branch: ni/coolstream Commit: https://github.com/neutrino-images/ni-neutrino/commit/c387a6c266f34acb32b4a0a420e843a0f7207156 Author: [CST] Focus Date: 2013-01-16 (Wed, 16 Jan 2013) ------------------ No further description and justification available within origin commit message! ------------------ This commit was generated by Migit --- src/zapit/include/zapit/channel.h | 1 + src/zapit/src/channel.cpp | 1 + 2 files changed, 2 insertions(+) diff --git a/src/zapit/include/zapit/channel.h b/src/zapit/include/zapit/channel.h index 41de92036..60d37f965 100644 --- a/src/zapit/include/zapit/channel.h +++ b/src/zapit/include/zapit/channel.h @@ -183,6 +183,7 @@ class CZapitChannel bool has_bouquet; uint8_t polarization; int flags; + int deltype; /* 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); diff --git a/src/zapit/src/channel.cpp b/src/zapit/src/channel.cpp index 72374d4ad..eb8cc9279 100644 --- a/src/zapit/src/channel.cpp +++ b/src/zapit/src/channel.cpp @@ -67,6 +67,7 @@ void CZapitChannel::Init() record_demux = 2; polarization = 0; flags = 0; + deltype = FE_QPSK; } CZapitChannel::~CZapitChannel(void)