aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJonathan Marshall <jmarshall@xbmc.org>2014-02-02 15:04:47 +1300
committerJonathan Marshall <jmarshall@xbmc.org>2014-02-02 22:38:04 +1300
commitb8705eee454452b033e9faef7822dfa6eac7fa89 (patch)
tree9943b088e35540224662930be63216ccd4292b36
parent9ef41221c19ac85d6c4ed6d1de697e347f426b73 (diff)
[activeae] fix compile warnings
-rw-r--r--xbmc/cores/AudioEngine/Engines/ActiveAE/ActiveAEStream.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/xbmc/cores/AudioEngine/Engines/ActiveAE/ActiveAEStream.cpp b/xbmc/cores/AudioEngine/Engines/ActiveAE/ActiveAEStream.cpp
index 1b7d67f842..99989b385c 100644
--- a/xbmc/cores/AudioEngine/Engines/ActiveAE/ActiveAEStream.cpp
+++ b/xbmc/cores/AudioEngine/Engines/ActiveAE/ActiveAEStream.cpp
@@ -118,7 +118,7 @@ void CActiveAEStream::InitRemapper()
for(unsigned int j=0; j<m_format.m_channelLayout.Count(); j++)
{
idx = m_remapper->GetAVChannelIndex(m_format.m_channelLayout[j], avLayout);
- if (idx == i)
+ if (idx == (int)i)
{
ffmpegLayout += m_format.m_channelLayout[j];
break;
@@ -134,7 +134,7 @@ void CActiveAEStream::InitRemapper()
for(unsigned int j=0; j<m_format.m_channelLayout.Count(); j++)
{
idx = m_remapper->GetAVChannelIndex(m_format.m_channelLayout[j], avLayout);
- if (idx == i)
+ if (idx == (int)i)
{
remapLayout += ffmpegLayout[j];
break;