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

Side by Side Diff: media/base/data_source.h

Issue 10689141: Revert 145937 - Merge 143765 - Ensure media's buffered ranges always have a range that includes cur… (Closed) Base URL: svn://svn.chromium.org/chrome/branches/1180/src/
Patch Set: Created 8 years, 5 months 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 unified diff | Download patch | Annotate | Revision Log
« no previous file with comments | « no previous file | media/base/demuxer_stream.h » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
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_DATA_SOURCE_H_ 5 #ifndef MEDIA_BASE_DATA_SOURCE_H_
6 #define MEDIA_BASE_DATA_SOURCE_H_ 6 #define MEDIA_BASE_DATA_SOURCE_H_
7 7
8 #include "base/callback.h" 8 #include "base/callback.h"
9 #include "base/memory/ref_counted.h" 9 #include "base/memory/ref_counted.h"
10 #include "base/time.h"
11 #include "media/base/media_export.h" 10 #include "media/base/media_export.h"
12 11
13 namespace media { 12 namespace media {
14 13
15 class MEDIA_EXPORT DataSourceHost { 14 class MEDIA_EXPORT DataSourceHost {
16 public: 15 public:
17 virtual ~DataSourceHost(); 16 virtual ~DataSourceHost();
18 17
19 // Set the total size of the media file. 18 // Set the total size of the media file.
20 virtual void SetTotalBytes(int64 total_bytes) = 0; 19 virtual void SetTotalBytes(int64 total_bytes) = 0;
21 20
22 // Notify the host that byte range [start,end] has been buffered. 21 // Notify the host that byte range [start,end] has been buffered.
23 // TODO(fischman): remove this method when demuxing is push-based instead of
24 // pull-based. http://crbug.com/131444
25 virtual void AddBufferedByteRange(int64 start, int64 end) = 0; 22 virtual void AddBufferedByteRange(int64 start, int64 end) = 0;
26
27 // Notify the host that time range [start,end] has been buffered.
28 virtual void AddBufferedTimeRange(base::TimeDelta start,
29 base::TimeDelta end) = 0;
30 }; 23 };
31 24
32 class MEDIA_EXPORT DataSource : public base::RefCountedThreadSafe<DataSource> { 25 class MEDIA_EXPORT DataSource : public base::RefCountedThreadSafe<DataSource> {
33 public: 26 public:
34 typedef base::Callback<void(int64, int64)> StatusCallback; 27 typedef base::Callback<void(int64, int64)> StatusCallback;
35 typedef base::Callback<void(int)> ReadCB; 28 typedef base::Callback<void(int)> ReadCB;
36 static const int kReadError; 29 static const int kReadError;
37 30
38 DataSource(); 31 DataSource();
39 32
(...skipping 33 matching lines...) Expand 10 before | Expand all | Expand 10 after
73 66
74 private: 67 private:
75 DataSourceHost* host_; 68 DataSourceHost* host_;
76 69
77 DISALLOW_COPY_AND_ASSIGN(DataSource); 70 DISALLOW_COPY_AND_ASSIGN(DataSource);
78 }; 71 };
79 72
80 } // namespace media 73 } // namespace media
81 74
82 #endif // MEDIA_BASE_DATA_SOURCE_H_ 75 #endif // MEDIA_BASE_DATA_SOURCE_H_
OLDNEW
« no previous file with comments | « no previous file | media/base/demuxer_stream.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698