diff options
author | chriszero <zerov83@gmail.com> | 2015-05-03 17:20:03 +0200 |
---|---|---|
committer | chriszero <zerov83@gmail.com> | 2015-05-03 17:20:03 +0200 |
commit | f7196f23bc0ed500dcf1f60b794caa9a9f76a751 (patch) | |
tree | 7fcab9a27a06ca43818e9cdd63977769753fb92f /Media.h | |
parent | 6708c32ab31bb90781bb5e3743cb81ae72748edd (diff) | |
download | vdr-plugin-plex-f7196f23bc0ed500dcf1f60b794caa9a9f76a751.tar.gz vdr-plugin-plex-f7196f23bc0ed500dcf1f60b794caa9a9f76a751.tar.bz2 |
- Playmarks for skindesigner
- More tokens (mediainfo, codes, etc)
- Updated translation
Diffstat (limited to 'Media.h')
-rw-r--r-- | Media.h | 8 |
1 files changed, 7 insertions, 1 deletions
@@ -14,10 +14,14 @@ #include <vector> #include <iostream> +#include <libskindesignerapi/osdelements.h> +#include <memory> #include "XmlObject.h" // Base class: model::XmlObject #include "Stream.h" + + using Poco::XML::DOMParser; using Poco::XML::Document; using Poco::XML::NodeIterator; @@ -47,7 +51,7 @@ public: std::string m_sAudioCodec; std::string m_sVideoCodec; std::string m_sContainer; - double m_VideoFrameRate; + std::string m_VideoFrameRate; std::string m_sPartKey; int m_iPartId; @@ -57,6 +61,8 @@ public: std::string m_sPartContainer; std::vector<Stream> m_vStreams; + + void AddTokens(std::shared_ptr<skindesignerapi::cOsdElement> grid); }; } |