/* * Copyright (C) 2013 Apple Inc. All rights reserved. * * Redistribution and use in source and binary forms, with or without * modification, are permitted provided that the following conditions * are met: * 1. Redistributions of source code must retain the above copyright * notice, this list of conditions and the following disclaimer. * 2. Redistributions in binary form must reproduce the above copyright * notice, this list of conditions and the following disclaimer in the * documentation and/or other materials provided with the distribution. * * THIS SOFTWARE IS PROVIDED BY APPLE INC. AND ITS CONTRIBUTORS ``AS IS'' * AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, * THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR * PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL APPLE INC. OR ITS CONTRIBUTORS * BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF * THE POSSIBILITY OF SUCH DAMAGE. */ #include "config.h" #include "SampleMap.h" #if ENABLE(MEDIA_SOURCE) #include "MediaSample.h" namespace WebCore { template class SampleIsLessThanMediaTimeComparator { public: typedef typename M::value_type value_type; bool operator()(const value_type& value, const MediaTime& time) { MediaTime presentationEndTime = value.second->presentationTime() + value.second->duration(); return presentationEndTime <= time; } bool operator()(const MediaTime& time, const value_type& value) { MediaTime presentationStartTime = value.second->presentationTime(); return time < presentationStartTime; } }; template class SampleIsGreaterThanMediaTimeComparator { public: typedef typename M::value_type value_type; bool operator()(const value_type& value, const MediaTime& time) { MediaTime presentationStartTime = value.second->presentationTime(); return presentationStartTime > time; } bool operator()(const MediaTime& time, const value_type& value) { MediaTime presentationEndTime = value.second->presentationTime() + value.second->duration(); return time >= presentationEndTime; } }; class SampleIsRandomAccess { public: bool operator()(DecodeOrderSampleMap::MapType::value_type& value) { return value.second->flags() == MediaSample::IsSync; } }; // SamplePresentationTimeIsInsideRangeComparator matches (range.first, range.second] struct SamplePresentationTimeIsInsideRangeComparator { bool operator()(std::pair range, const std::pair>& value) { return range.second < value.first; } bool operator()(const std::pair>& value, std::pair range) { return value.first <= range.first; } }; // SamplePresentationTimeIsWithinRangeComparator matches [range.first, range.second) struct SamplePresentationTimeIsWithinRangeComparator { bool operator()(std::pair range, const std::pair>& value) { return range.second <= value.first; } bool operator()(const std::pair>& value, std::pair range) { return value.first < range.first; } }; bool SampleMap::empty() const { return presentationOrder().m_samples.empty(); } void SampleMap::clear() { presentationOrder().m_samples.clear(); decodeOrder().m_samples.clear(); m_totalSize = 0; } void SampleMap::addSample(PassRefPtr prpSample) { RefPtr sample = prpSample; ASSERT(sample); MediaTime presentationTime = sample->presentationTime(); presentationOrder().m_samples.insert(PresentationOrderSampleMap::MapType::value_type(presentationTime, sample)); auto decodeKey = DecodeOrderSampleMap::KeyType(sample->decodeTime(), presentationTime); decodeOrder().m_samples.insert(DecodeOrderSampleMap::MapType::value_type(decodeKey, sample)); m_totalSize += sample->sizeInBytes(); } void SampleMap::removeSample(MediaSample* sample) { ASSERT(sample); MediaTime presentationTime = sample->presentationTime(); presentationOrder().m_samples.erase(presentationTime); auto decodeKey = DecodeOrderSampleMap::KeyType(sample->decodeTime(), presentationTime); decodeOrder().m_samples.erase(decodeKey); m_totalSize -= sample->sizeInBytes(); } PresentationOrderSampleMap::iterator PresentationOrderSampleMap::findSampleWithPresentationTime(const MediaTime& time) { auto range = m_samples.equal_range(time); if (range.first == range.second) return end(); return range.first; } PresentationOrderSampleMap::iterator PresentationOrderSampleMap::findSampleContainingPresentationTime(const MediaTime& time) { auto range = std::equal_range(begin(), end(), time, SampleIsLessThanMediaTimeComparator()); if (range.first == range.second) return end(); return range.first; } PresentationOrderSampleMap::iterator PresentationOrderSampleMap::findSampleOnOrAfterPresentationTime(const MediaTime& time) { return m_samples.lower_bound(time); } DecodeOrderSampleMap::iterator DecodeOrderSampleMap::findSampleWithDecodeKey(const KeyType& key) { return m_samples.find(key); } PresentationOrderSampleMap::reverse_iterator PresentationOrderSampleMap::reverseFindSampleContainingPresentationTime(const MediaTime& time) { auto range = std::equal_range(rbegin(), rend(), time, SampleIsGreaterThanMediaTimeComparator()); if (range.first == range.second) return rend(); return range.first; } PresentationOrderSampleMap::reverse_iterator PresentationOrderSampleMap::reverseFindSampleBeforePresentationTime(const MediaTime& time) { return std::lower_bound(rbegin(), rend(), time, SampleIsGreaterThanMediaTimeComparator()); } DecodeOrderSampleMap::reverse_iterator DecodeOrderSampleMap::reverseFindSampleWithDecodeKey(const KeyType& key) { DecodeOrderSampleMap::iterator found = findSampleWithDecodeKey(key); if (found == end()) return rend(); return --reverse_iterator(found); } DecodeOrderSampleMap::reverse_iterator DecodeOrderSampleMap::findSyncSamplePriorToPresentationTime(const MediaTime& time, const MediaTime& threshold) { PresentationOrderSampleMap::reverse_iterator reverseCurrentSamplePTS = m_presentationOrder.reverseFindSampleBeforePresentationTime(time); if (reverseCurrentSamplePTS == m_presentationOrder.rend()) return rend(); const RefPtr& sample = reverseCurrentSamplePTS->second; reverse_iterator reverseCurrentSampleDTS = reverseFindSampleWithDecodeKey(KeyType(sample->decodeTime(), sample->presentationTime())); reverse_iterator foundSample = findSyncSamplePriorToDecodeIterator(reverseCurrentSampleDTS); if (foundSample == rend()) return rend(); if (foundSample->second->presentationTime() < time - threshold) return rend(); return foundSample; } DecodeOrderSampleMap::reverse_iterator DecodeOrderSampleMap::findSyncSamplePriorToDecodeIterator(reverse_iterator iterator) { return std::find_if(iterator, rend(), SampleIsRandomAccess()); } DecodeOrderSampleMap::iterator DecodeOrderSampleMap::findSyncSampleAfterPresentationTime(const MediaTime& time, const MediaTime& threshold) { PresentationOrderSampleMap::iterator currentSamplePTS = m_presentationOrder.findSampleOnOrAfterPresentationTime(time); if (currentSamplePTS == m_presentationOrder.end()) return end(); const RefPtr& sample = currentSamplePTS->second; iterator currentSampleDTS = findSampleWithDecodeKey(KeyType(sample->decodeTime(), sample->presentationTime())); MediaTime upperBound = time + threshold; iterator foundSample = std::find_if(currentSampleDTS, end(), SampleIsRandomAccess()); if (foundSample == end()) return end(); if (foundSample->second->presentationTime() > upperBound) return end(); return foundSample; } DecodeOrderSampleMap::iterator DecodeOrderSampleMap::findSyncSampleAfterDecodeIterator(iterator currentSampleDTS) { if (currentSampleDTS == end()) return end(); return std::find_if(++currentSampleDTS, end(), SampleIsRandomAccess()); } PresentationOrderSampleMap::iterator_range PresentationOrderSampleMap::findSamplesBetweenPresentationTimes(const MediaTime& beginTime, const MediaTime& endTime) { std::pair range(beginTime, endTime); return std::equal_range(begin(), end(), range, SamplePresentationTimeIsInsideRangeComparator()); } PresentationOrderSampleMap::iterator_range PresentationOrderSampleMap::findSamplesWithinPresentationRange(const MediaTime& beginTime, const MediaTime& endTime) { std::pair range(beginTime, endTime); return std::equal_range(begin(), end(), range, SamplePresentationTimeIsWithinRangeComparator()); } PresentationOrderSampleMap::iterator_range PresentationOrderSampleMap::findSamplesWithinPresentationRangeFromEnd(const MediaTime& beginTime, const MediaTime& endTime) { reverse_iterator rangeEnd = std::find_if(rbegin(), rend(), [&beginTime] (PresentationOrderSampleMap::MapType::value_type value) { return value.second->presentationTime() <= beginTime; }); reverse_iterator rangeStart = std::find_if(rbegin(), rangeEnd, [&endTime] (PresentationOrderSampleMap::MapType::value_type value) { return value.second->presentationTime() <= endTime; }); return iterator_range(rangeEnd.base(), rangeStart.base()); } DecodeOrderSampleMap::reverse_iterator_range DecodeOrderSampleMap::findDependentSamples(MediaSample* sample) { ASSERT(sample); reverse_iterator currentDecodeIter = reverseFindSampleWithDecodeKey(KeyType(sample->decodeTime(), sample->presentationTime())); reverse_iterator nextSyncSample = findSyncSamplePriorToDecodeIterator(currentDecodeIter); return reverse_iterator_range(currentDecodeIter, nextSyncSample); } } #endif