summaryrefslogtreecommitdiff
path: root/hlsPlayerControl.cpp
diff options
context:
space:
mode:
authorChristian <zerov83@gmail.com>2016-03-08 22:14:49 +0100
committerChristian <zerov83@gmail.com>2016-03-08 22:14:49 +0100
commite63b1337cb98ddfa136de78628f5048b682276ff (patch)
treef164267d8b4171a21a8a264cc41226e53f4ef056 /hlsPlayerControl.cpp
parent662171f45281deacdf2db255909be11ec869122c (diff)
downloadvdr-plugin-plex-e63b1337cb98ddfa136de78628f5048b682276ff.tar.gz
vdr-plugin-plex-e63b1337cb98ddfa136de78628f5048b682276ff.tar.bz2
Skindesigner "DetailView" in development
Diffstat (limited to 'hlsPlayerControl.cpp')
-rw-r--r--hlsPlayerControl.cpp6
1 files changed, 3 insertions, 3 deletions
diff --git a/hlsPlayerControl.cpp b/hlsPlayerControl.cpp
index b7acd24..7a2467b 100644
--- a/hlsPlayerControl.cpp
+++ b/hlsPlayerControl.cpp
@@ -332,7 +332,7 @@ void cStreamSelectMenu::CreateMenu()
Add(new cOsdItem(tr("Audiostreams"), osUnknown, false));
for(std::vector<plexclient::Stream>::iterator it = streams.begin(); it != streams.end(); ++it) {
plexclient::Stream *pStream = &(*it);
- if(pStream->m_eStreamType == plexclient::sAUDIO) {
+ if(pStream->m_eStreamType == plexclient::StreamType::sAUDIO) {
// Audio
cString item = cString::sprintf(tr("%s%s - %s %d Channels"), pStream->m_bSelected ? "[*] ":"", pStream->m_sLanguage.c_str(), pStream->m_sCodecId.c_str(), pStream->m_iChannels);
Add(new cPlexOsdItem(item, pStream));
@@ -341,12 +341,12 @@ void cStreamSelectMenu::CreateMenu()
Add(new cOsdItem(tr("Subtitlestreams"), osUnknown, false));
plexclient::Stream stre;
- stre.m_eStreamType = plexclient::sSUBTITLE;
+ stre.m_eStreamType = plexclient::StreamType::sSUBTITLE;
stre.m_iID = -1;
Add(new cPlexOsdItem(tr("None"), &stre));
for(std::vector<plexclient::Stream>::iterator it = streams.begin(); it != streams.end(); ++it) {
plexclient::Stream *pStream = &(*it);
- if(pStream->m_eStreamType == plexclient::sSUBTITLE) {
+ if(pStream->m_eStreamType == plexclient::StreamType::sSUBTITLE) {
// Subtitle
cString item = cString::sprintf("%s%s", pStream->m_bSelected ? "[*] ":"", pStream->m_sLanguage.c_str());
Add(new cPlexOsdItem(item, pStream));