| Index: third_party/WebKit/Source/modules/mediasource/SourceBuffer.h
|
| diff --git a/third_party/WebKit/Source/modules/mediasource/SourceBuffer.h b/third_party/WebKit/Source/modules/mediasource/SourceBuffer.h
|
| index 07404b03eff15caf0961bc2c13ff8e743c540806..b4a2807817902cae5f161374af860998f4d5d3ee 100644
|
| --- a/third_party/WebKit/Source/modules/mediasource/SourceBuffer.h
|
| +++ b/third_party/WebKit/Source/modules/mediasource/SourceBuffer.h
|
| @@ -134,6 +134,10 @@ private:
|
| void appendStreamDone(bool success);
|
| void clearAppendStreamState();
|
|
|
| + const TrackDefault* getTrackDefaultHelper(const AtomicString& trackType, const AtomicString& byteStreamTrackID) const;
|
| + AtomicString defaultTrackLabel(const AtomicString& trackType, const AtomicString& byteStreamTrackID) const;
|
| + AtomicString defaultTrackLanguage(const AtomicString& trackType, const AtomicString& byteStreamTrackID) const;
|
| +
|
| // FileReaderLoaderClient interface
|
| void didStartLoading() override;
|
| void didReceiveDataForClient(const char* data, unsigned dataLength) override;
|
| @@ -150,6 +154,7 @@ private:
|
| double m_timestampOffset;
|
| Member<AudioTrackList> m_audioTracks;
|
| Member<VideoTrackList> m_videoTracks;
|
| + bool m_activeTrack = false;
|
| double m_appendWindowStart;
|
| double m_appendWindowEnd;
|
| bool m_firstInitializationSegmentReceived;
|
|
|