OLD | NEW |
1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. |
2 // Use of this source code is governed by a BSD-style license that can be | 2 // Use of this source code is governed by a BSD-style license that can be |
3 // found in the LICENSE file. | 3 // found in the LICENSE file. |
4 | 4 |
5 #ifndef MEDIA_BASE_DEMUXER_H_ | 5 #ifndef MEDIA_BASE_DEMUXER_H_ |
6 #define MEDIA_BASE_DEMUXER_H_ | 6 #define MEDIA_BASE_DEMUXER_H_ |
7 | 7 |
8 #include <vector> | 8 #include <vector> |
9 | 9 |
10 #include "base/time/time.h" | 10 #include "base/time/time.h" |
11 #include "media/base/data_source.h" | 11 #include "media/base/data_source.h" |
12 #include "media/base/demuxer_stream.h" | 12 #include "media/base/demuxer_stream.h" |
13 #include "media/base/media_export.h" | 13 #include "media/base/media_export.h" |
14 #include "media/base/pipeline_status.h" | 14 #include "media/base/pipeline_status.h" |
15 | 15 |
16 namespace media { | 16 namespace media { |
17 | 17 |
18 class TextTrackConfig; | 18 class TextTrackConfig; |
19 | 19 |
20 class MEDIA_EXPORT DemuxerHost : public DataSourceHost { | 20 class MEDIA_EXPORT DemuxerHost { |
21 public: | 21 public: |
| 22 // Notify the host that time range [start,end] has been buffered. |
| 23 virtual void AddBufferedTimeRange(base::TimeDelta start, |
| 24 base::TimeDelta end) = 0; |
| 25 |
22 // Sets the duration of the media in microseconds. | 26 // Sets the duration of the media in microseconds. |
23 // Duration may be kInfiniteDuration() if the duration is not known. | 27 // Duration may be kInfiniteDuration() if the duration is not known. |
24 virtual void SetDuration(base::TimeDelta duration) = 0; | 28 virtual void SetDuration(base::TimeDelta duration) = 0; |
25 | 29 |
26 // Stops execution of the pipeline due to a fatal error. Do not call this | 30 // Stops execution of the pipeline due to a fatal error. Do not call this |
27 // method with PIPELINE_OK. | 31 // method with PIPELINE_OK. |
28 virtual void OnDemuxerError(PipelineStatus error) = 0; | 32 virtual void OnDemuxerError(PipelineStatus error) = 0; |
29 | 33 |
30 // Add |text_stream| to the collection managed by the text renderer. | 34 // Add |text_stream| to the collection managed by the text renderer. |
31 virtual void AddTextStream(DemuxerStream* text_stream, | 35 virtual void AddTextStream(DemuxerStream* text_stream, |
(...skipping 51 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
83 // Returns the starting time for the media file. | 87 // Returns the starting time for the media file. |
84 virtual base::TimeDelta GetStartTime() const = 0; | 88 virtual base::TimeDelta GetStartTime() const = 0; |
85 | 89 |
86 private: | 90 private: |
87 DISALLOW_COPY_AND_ASSIGN(Demuxer); | 91 DISALLOW_COPY_AND_ASSIGN(Demuxer); |
88 }; | 92 }; |
89 | 93 |
90 } // namespace media | 94 } // namespace media |
91 | 95 |
92 #endif // MEDIA_BASE_DEMUXER_H_ | 96 #endif // MEDIA_BASE_DEMUXER_H_ |
OLD | NEW |