diff options
author | thlo <smarttv640@gmail.com> | 2013-03-17 09:28:01 +0100 |
---|---|---|
committer | thlo <t.lohmar@gmx.de> | 2013-03-17 09:28:01 +0100 |
commit | d48d64273d5da9bf596b239bb0aec622086655f0 (patch) | |
tree | 928b8a3c945b858823eeb57304f25c48197e2aa2 /vdr-smarttvweb/stvw_cfg.h | |
parent | 65255cd25a87509c0a75c4e09ebd33977e54ed9c (diff) | |
download | vdr-plugin-smarttvweb-d48d64273d5da9bf596b239bb0aec622086655f0.tar.gz vdr-plugin-smarttvweb-d48d64273d5da9bf596b239bb0aec622086655f0.tar.bz2 |
v0.9.6. Use UrlEncoding for guid. Determine Bitrate from file size.
Diffstat (limited to 'vdr-smarttvweb/stvw_cfg.h')
-rwxr-xr-x | vdr-smarttvweb/stvw_cfg.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/vdr-smarttvweb/stvw_cfg.h b/vdr-smarttvweb/stvw_cfg.h index 84cbd07..d894820 100755 --- a/vdr-smarttvweb/stvw_cfg.h +++ b/vdr-smarttvweb/stvw_cfg.h @@ -49,7 +49,7 @@ class cSmartTvConfig { string mMediaFolder; unsigned int mSegmentDuration; int mHasMinBufferTime; - unsigned int mHasBitrate; + float mHasBitrateCorrection; int mLiveChannels; eGroupSep mGroupSep; @@ -66,7 +66,7 @@ class cSmartTvConfig { string getMediaFolder() { return mMediaFolder; }; unsigned int getSegmentDuration() {return mSegmentDuration; }; int getHasMinBufferTime() { return mHasMinBufferTime; }; - unsigned int getHasBitrate() {return mHasBitrate; }; + float getHasBitrateCorrection() { return mHasBitrateCorrection; }; int getLiveChannels() {return mLiveChannels; }; eGroupSep getGroupSep() { return mGroupSep; }; string getServerAddress() { return mServerAddress; }; |