summaryrefslogtreecommitdiff
path: root/stvw_cfg.h
diff options
context:
space:
mode:
authorthlo <smarttv640@gmail.com>2013-11-26 22:11:45 +0100
committerthlo <smarttv640@gmail.com>2013-11-26 22:11:45 +0100
commit802f35d8a1a7f06dd76068d30f429da6dad9f227 (patch)
treec6cee6003b66ce7097ffeaa139edb18340e7f5ed /stvw_cfg.h
parent3ac54dc3c1f6dd6d8b9adc4024e5003bd4532cae (diff)
downloadvdr-plugin-smarttvweb-802f35d8a1a7f06dd76068d30f429da6dad9f227.tar.gz
vdr-plugin-smarttvweb-802f35d8a1a7f06dd76068d30f429da6dad9f227.tar.bz2
first version of the built-in live solution
Diffstat (limited to 'stvw_cfg.h')
-rwxr-xr-xstvw_cfg.h9
1 files changed, 9 insertions, 0 deletions
diff --git a/stvw_cfg.h b/stvw_cfg.h
index a3fd01e..983a5f0 100755
--- a/stvw_cfg.h
+++ b/stvw_cfg.h
@@ -56,6 +56,10 @@ class cSmartTvConfig {
string mServerAddress;
int mServerPort;
bool mCmds;
+ bool mUseStreamDev4Live;
+ int mBuiltInLiveStartMode;
+ int mBuiltInLivePktBuf4Hd;
+ int mBuiltInLivePktBuf4Sd;
public:
cSmartTvConfig(string dir);
@@ -74,6 +78,11 @@ class cSmartTvConfig {
string getServerAddress() { return mServerAddress; };
int getServerPort() { return mServerPort; };
bool getCmds() { return mCmds; };
+ bool useStreamDev4Live() { return mUseStreamDev4Live; };
+ int getBuiltInLiveStartMode() {return mBuiltInLiveStartMode; };
+ int getBuiltInLivePktBuf4Hd() { return mBuiltInLivePktBuf4Hd; };
+ int getBuiltInLivePktBuf4Sd() { return mBuiltInLivePktBuf4Sd; };
+
};
#endif