Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(24)

Unified Diff: Source/modules/mediasource/TrackDefaultList.cpp

Issue 702583002: MSE: Implement TrackDefaultList object (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@WIP_blink_trackdefaults_and_add_tracks_to_init_segment_processing
Patch Set: Rebased and addressed comments from PS2 Created 6 years ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
Index: Source/modules/mediasource/TrackDefaultList.cpp
diff --git a/Source/modules/mediasource/TrackDefaultList.cpp b/Source/modules/mediasource/TrackDefaultList.cpp
new file mode 100644
index 0000000000000000000000000000000000000000..e8b890c94e67f2756c34d6f68af6c75419222ae1
--- /dev/null
+++ b/Source/modules/mediasource/TrackDefaultList.cpp
@@ -0,0 +1,66 @@
+// Copyright 2014 The Chromium Authors. All rights reserved.
+// Use of this source code is governed by a BSD-style license that can be
+// found in the LICENSE file.
+
+#include "config.h"
+
+#include "modules/mediasource/TrackDefaultList.h"
+
+#include "bindings/core/v8/ExceptionState.h"
+#include "core/dom/ExceptionCode.h"
+
+namespace blink {
+
+TrackDefaultList* TrackDefaultList::create(const HeapVector<Member<TrackDefault>>& trackDefaults, ExceptionState& exceptionState)
+{
+ // Per 11 Dec 2014 Editor's Draft
+ // https://w3c.github.io/media-source/#trackdefaultlist
+ // When this method is invoked, the user agent must run the following steps:
+ // 1. If |trackDefaults| contains two or more TrackDefault objects with the
+ // same type and the same byteStreamTrackID, then throw an
+ // InvalidAccessError and abort these steps.
+ // Note: This also applies when byteStreamTrackID contains an empty
+ // string and ensures that there is only one "byteStreamTrackID
+ // independent" default for each TrackDefaultType value.
+ TypeAndIDToTrackDefaultMap typeAndIDToTrackDefaultMap;
sof 2014/12/12 09:37:00 How about inverting this and create the empty obje
wolenetz 2014/12/12 19:18:31 Haha :). Yeah, I noticed there was an extra copy o
philipj_slow 2014/12/12 20:25:21 typeAndIDToTrackDefaultMap ought to be possible to
wolenetz 2014/12/12 21:48:05 Done.
+ for (const auto& trackDefault : trackDefaults) {
+ TypeAndID key = TypeAndID(trackDefault->type(), trackDefault->byteStreamTrackID());
+ if (!typeAndIDToTrackDefaultMap.add(key, trackDefault).isNewEntry) {
+ exceptionState.throwDOMException(InvalidAccessError, "Duplicate TrackDefault type (" + key.first + ") and byteStreamTrackID (" + key.second + ")");
+ return nullptr;
+ }
+ }
+
+ // 2. Store a shallow copy of |trackDefaults| in this new object so the values can
+ // be returned by the accessor methods.
+ // This step is done in constructor initializer.
+ return new TrackDefaultList(trackDefaults, typeAndIDToTrackDefaultMap);
+}
+
+TrackDefault* TrackDefaultList::item(unsigned index) const
+{
+ // Per 11 Dec 2014 Editor's Draft
+ // https://w3c.github.io/media-source/#trackdefaultlist
+ // When this method is invoked, the user agent must run the following steps:
+ // 1. If |index| is greater than or equal to the length attribute then
+ // return undefined and abort these steps.
+ if (index >= m_trackDefaults.size())
+ return 0;
+
+ // 2. Return the |index|'th TrackDefault object in the list.
+ return m_trackDefaults[index].get();
+}
+
+TrackDefaultList::TrackDefaultList(const HeapVector<Member<TrackDefault>>& trackDefaults, const TypeAndIDToTrackDefaultMap& typeAndIDToTrackDefaultMap)
+ : m_trackDefaults(trackDefaults)
+ , m_typeAndIDToTrackDefaultMap(typeAndIDToTrackDefaultMap)
+{
+}
+
+void TrackDefaultList::trace(Visitor* visitor)
+{
+ visitor->trace(m_trackDefaults);
+ visitor->trace(m_typeAndIDToTrackDefaultMap);
+}
+
+} // namespace blink

Powered by Google App Engine
This is Rietveld 408576698