aboutsummaryrefslogtreecommitdiff
path: root/xbmc/utils/StreamDetails.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'xbmc/utils/StreamDetails.cpp')
-rw-r--r--xbmc/utils/StreamDetails.cpp18
1 files changed, 9 insertions, 9 deletions
diff --git a/xbmc/utils/StreamDetails.cpp b/xbmc/utils/StreamDetails.cpp
index 974d4ae472..6314d40b48 100644
--- a/xbmc/utils/StreamDetails.cpp
+++ b/xbmc/utils/StreamDetails.cpp
@@ -154,7 +154,7 @@ CStreamDetails& CStreamDetails::operator=(const CStreamDetails &that)
std::vector<CStreamDetail *>::const_iterator iter;
for (iter = that.m_vecItems.begin(); iter != that.m_vecItems.end(); iter++)
{
- switch ((*iter)->m_eType)
+ switch ((*iter)->m_eType)
{
case CStreamDetail::VIDEO:
AddStream(new CStreamDetailVideo((const CStreamDetailVideo &)(**iter)));
@@ -167,7 +167,7 @@ CStreamDetails& CStreamDetails::operator=(const CStreamDetails &that)
break;
}
}
-
+
DetermineBestStreams();
} /* if this != that */
@@ -251,13 +251,13 @@ const CStreamDetail* CStreamDetails::GetNthStream(CStreamDetail::StreamType type
switch (type)
{
case CStreamDetail::VIDEO:
- return m_pBestVideo;
+ return m_pBestVideo;
break;
case CStreamDetail::AUDIO:
- return m_pBestAudio;
+ return m_pBestAudio;
break;
case CStreamDetail::SUBTITLE:
- return m_pBestSubtitle;
+ return m_pBestSubtitle;
break;
default:
return NULL;
@@ -398,13 +398,13 @@ void CStreamDetails::DetermineBestStreams(void)
switch ((*iter)->m_eType)
{
case CStreamDetail::VIDEO:
- champion = (CStreamDetail **)&m_pBestVideo;
+ champion = (CStreamDetail **)&m_pBestVideo;
break;
case CStreamDetail::AUDIO:
- champion = (CStreamDetail **)&m_pBestAudio;
+ champion = (CStreamDetail **)&m_pBestAudio;
break;
case CStreamDetail::SUBTITLE:
- champion = (CStreamDetail **)&m_pBestSubtitle;
+ champion = (CStreamDetail **)&m_pBestSubtitle;
break;
default:
champion = NULL;
@@ -434,7 +434,7 @@ CStdString CStreamDetails::VideoWidthToResolutionDescription(int iWidth)
else if (iWidth < 1281)
return "720";
// 1920x1080
- else
+ else
return "1080";
}