aboutsummaryrefslogtreecommitdiffstats
path: root/MPD/MPDWrapper.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'MPD/MPDWrapper.cpp')
-rw-r--r--MPD/MPDWrapper.cpp6
1 files changed, 3 insertions, 3 deletions
diff --git a/MPD/MPDWrapper.cpp b/MPD/MPDWrapper.cpp
index 4c8baa6b..163ed19d 100644
--- a/MPD/MPDWrapper.cpp
+++ b/MPD/MPDWrapper.cpp
@@ -141,7 +141,7 @@ void MPDWrapper::findVideoRepresentation (IMPD* mpd)
}
this->videoRepresentation = representations.at(0);
this->initializeAdaptationSetStreamWithoutLock(viper::managers::StreamType::VIDEO, mpd);
- this->videoSegmentNumber = this->videoRepresentations->find(this->videoRepresentation)->second->getSegmentNumber(time);
+ this->videoSegmentNumber = 0;
}
else
{
@@ -162,7 +162,7 @@ void MPDWrapper::findAudioRepresentation (IMPD* mpd)
{
if(id == std::stoi(representations.at(i)->GetId()))
{
- this->videoRepresentation = representations.at(i);
+ this->audioRepresentation = representations.at(i);
this->destroyAdaptationSetStream(viper::managers::StreamType::AUDIO);
this->initializeAdaptationSetStreamWithoutLock(viper::managers::StreamType::AUDIO, mpd);
this->audioSegmentNumber = this->audioRepresentations->find(this->audioRepresentation)->second->getSegmentNumber(time);
@@ -173,7 +173,7 @@ void MPDWrapper::findAudioRepresentation (IMPD* mpd)
}
this->audioRepresentation = representations.at(0);
this->initializeAdaptationSetStreamWithoutLock(viper::managers::StreamType::AUDIO,mpd);
- this->audioSegmentNumber = this->audioRepresentations->find(this->audioRepresentation)->second->getSegmentNumber(time);
+ this->audioSegmentNumber = 0;
}
else
{