OLD | NEW |
1 // Copyright (c) 2011 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2011 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 // Defines various types of timestamped media buffers used for transporting | 5 // Defines various types of timestamped media buffers used for transporting |
6 // data between filters. Every buffer contains a timestamp in microseconds | 6 // data between filters. Every buffer contains a timestamp in microseconds |
7 // describing the relative position of the buffer within the media stream, and | 7 // describing the relative position of the buffer within the media stream, and |
8 // the duration in microseconds for the length of time the buffer will be | 8 // the duration in microseconds for the length of time the buffer will be |
9 // rendered. | 9 // rendered. |
10 // | 10 // |
(...skipping 12 matching lines...) Expand all Loading... |
23 // Duration*: 40000us 40000us 40000us ... 40000us | 23 // Duration*: 40000us 40000us 40000us ... 40000us |
24 // | 24 // |
25 // *25fps = 0.04s per frame = 40000us per frame | 25 // *25fps = 0.04s per frame = 40000us per frame |
26 | 26 |
27 #ifndef MEDIA_BASE_BUFFERS_H_ | 27 #ifndef MEDIA_BASE_BUFFERS_H_ |
28 #define MEDIA_BASE_BUFFERS_H_ | 28 #define MEDIA_BASE_BUFFERS_H_ |
29 | 29 |
30 #include "base/basictypes.h" | 30 #include "base/basictypes.h" |
31 #include "base/memory/ref_counted.h" | 31 #include "base/memory/ref_counted.h" |
32 #include "base/time.h" | 32 #include "base/time.h" |
33 #include "media/base/media_export.h" | |
34 | 33 |
35 namespace media { | 34 namespace media { |
36 | 35 |
37 // Indicates an invalid or missing timestamp. | 36 // Indicates an invalid or missing timestamp. |
38 MEDIA_EXPORT extern const base::TimeDelta kNoTimestamp; | 37 extern const base::TimeDelta kNoTimestamp; |
39 | 38 |
40 class MEDIA_EXPORT StreamSample | 39 class StreamSample : public base::RefCountedThreadSafe<StreamSample> { |
41 : public base::RefCountedThreadSafe<StreamSample> { | |
42 public: | 40 public: |
43 // Returns the timestamp of this buffer in microseconds. | 41 // Returns the timestamp of this buffer in microseconds. |
44 base::TimeDelta GetTimestamp() const { | 42 base::TimeDelta GetTimestamp() const { |
45 return timestamp_; | 43 return timestamp_; |
46 } | 44 } |
47 | 45 |
48 // Returns the duration of this buffer in microseconds. | 46 // Returns the duration of this buffer in microseconds. |
49 base::TimeDelta GetDuration() const { | 47 base::TimeDelta GetDuration() const { |
50 return duration_; | 48 return duration_; |
51 } | 49 } |
(...skipping 19 matching lines...) Expand all Loading... |
71 virtual ~StreamSample(); | 69 virtual ~StreamSample(); |
72 | 70 |
73 base::TimeDelta timestamp_; | 71 base::TimeDelta timestamp_; |
74 base::TimeDelta duration_; | 72 base::TimeDelta duration_; |
75 | 73 |
76 private: | 74 private: |
77 DISALLOW_COPY_AND_ASSIGN(StreamSample); | 75 DISALLOW_COPY_AND_ASSIGN(StreamSample); |
78 }; | 76 }; |
79 | 77 |
80 | 78 |
81 class MEDIA_EXPORT Buffer : public StreamSample { | 79 class Buffer : public StreamSample { |
82 public: | 80 public: |
83 // Returns a read only pointer to the buffer data. | 81 // Returns a read only pointer to the buffer data. |
84 virtual const uint8* GetData() const = 0; | 82 virtual const uint8* GetData() const = 0; |
85 | 83 |
86 // Returns the size of valid data in bytes. | 84 // Returns the size of valid data in bytes. |
87 virtual size_t GetDataSize() const = 0; | 85 virtual size_t GetDataSize() const = 0; |
88 | 86 |
89 // If there's no data in this buffer, it represents end of stream. | 87 // If there's no data in this buffer, it represents end of stream. |
90 virtual bool IsEndOfStream() const; | 88 virtual bool IsEndOfStream() const; |
91 | 89 |
92 protected: | 90 protected: |
93 virtual ~Buffer() {} | 91 virtual ~Buffer() {} |
94 }; | 92 }; |
95 | 93 |
96 } // namespace media | 94 } // namespace media |
97 | 95 |
98 #endif // MEDIA_BASE_BUFFERS_H_ | 96 #endif // MEDIA_BASE_BUFFERS_H_ |
OLD | NEW |