Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/mpc-hc/mpc-hc.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorKacper Michajłow <kasper93@gmail.com>2014-11-02 19:39:01 +0300
committerKacper Michajłow <kasper93@gmail.com>2014-11-11 23:00:05 +0300
commitd62c3056a7cc13f09c1d5b8b20ad04895b82dd6e (patch)
treedc3fd0243c4048e5335f28390cb7fc46f4ca9168
parent645ab11f684963ec4a609f9f8788702e36e3dc78 (diff)
Explain fields of the DVBState struct.
-rw-r--r--src/mpc-hc/MainFrm.h14
1 files changed, 7 insertions, 7 deletions
diff --git a/src/mpc-hc/MainFrm.h b/src/mpc-hc/MainFrm.h
index aefc68619..8b5aadf0d 100644
--- a/src/mpc-hc/MainFrm.h
+++ b/src/mpc-hc/MainFrm.h
@@ -577,13 +577,13 @@ public:
bool bShowInfoBar = false;
};
- CString sChannelName;
- CDVBChannel* pChannel = nullptr;
- EventDescriptor NowNext;
- bool bActive = false;
- bool bSetChannelActive = false;
- bool bInfoActive = false;
- bool bAbortInfo = true;
+ CString sChannelName; // Current channel name
+ CDVBChannel* pChannel = nullptr; // Pointer to current channel object
+ EventDescriptor NowNext; // Current channel EIT
+ bool bActive = false; // True when channel is active
+ bool bSetChannelActive = false; // True when channel change is in progress
+ bool bInfoActive = false; // True when EIT data update is in progress
+ bool bAbortInfo = true; // True when aborting current EIT update
std::future<DVBState::EITData> infoData;
void Reset() {