diff options
author | methodus <methodus@web.de> | 2012-10-12 13:38:12 +0200 |
---|---|---|
committer | methodus <methodus@web.de> | 2012-10-12 13:38:12 +0200 |
commit | 9b199c2d95141de43fac33412ec3e9fc1f543e71 (patch) | |
tree | cd62f387aad28bc8216774e52eda0582ebbcc526 /media/pluginManager.cpp | |
parent | e3ce4d1e7e47af0efe5bc1015ba38598e68a149d (diff) | |
download | vdr-plugin-upnp-9b199c2d95141de43fac33412ec3e9fc1f543e71.tar.gz vdr-plugin-upnp-9b199c2d95141de43fac33412ec3e9fc1f543e71.tar.bz2 |
Continued DVBProfiler for recordings and Live-TV channels
Diffstat (limited to 'media/pluginManager.cpp')
-rw-r--r-- | media/pluginManager.cpp | 14 |
1 files changed, 14 insertions, 0 deletions
diff --git a/media/pluginManager.cpp b/media/pluginManager.cpp index baacbc2..ea7f82a 100644 --- a/media/pluginManager.cpp +++ b/media/pluginManager.cpp @@ -180,6 +180,20 @@ string cMetadata::Property::GetKey() const { return key; } +cMetadata::Resource::Resource() +: resourceUri(string()) +, protocolInfo(string()) +, duration(string()) +, resolution(string()) +, bitrate(0) +, size(0) +, sampleFrequency(0) +, bitsPerSample(0) +, nrAudioChannels(0) +, colorDepth(0) +{ +} + bool cMetadata::Resource::SetResourceUri(string resourceUri){ this->resourceUri = resourceUri; return true; |