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

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

Issue 1736012: Merging SeekableBuffer and BufferQueue (Closed)
Patch Set: + 1 TODO Created 10 years, 7 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
« no previous file with comments | « media/base/buffer_queue_unittest.cc ('k') | media/base/seekable_buffer.cc » ('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) 2009 The Chromium Authors. All rights reserved. 1 // Copyright (c) 2010 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 // SeekableBuffer to support backward and forward seeking in a buffer for 5 // SeekableBuffer to support backward and forward seeking in a buffer for
6 // reading a media data source. 6 // reading a media data source.
7 // 7 //
8 // In order to support backward and forward seeking, this class buffers data in 8 // In order to support backward and forward seeking, this class buffers data in
9 // both backward and forward directions, the current read position can be reset 9 // both backward and forward directions, the current read position can be reset
10 // to anywhere in the buffered data. 10 // to anywhere in the buffered data.
11 // 11 //
(...skipping 18 matching lines...) Expand all
30 // This class is not inherently thread-safe. Concurrent access must be 30 // This class is not inherently thread-safe. Concurrent access must be
31 // externally serialized. 31 // externally serialized.
32 32
33 #ifndef MEDIA_BASE_SEEKABLE_BUFFER_H_ 33 #ifndef MEDIA_BASE_SEEKABLE_BUFFER_H_
34 #define MEDIA_BASE_SEEKABLE_BUFFER_H_ 34 #define MEDIA_BASE_SEEKABLE_BUFFER_H_
35 35
36 #include <list> 36 #include <list>
37 37
38 #include "base/basictypes.h" 38 #include "base/basictypes.h"
39 #include "base/lock.h" 39 #include "base/lock.h"
40 #include "base/scoped_ptr.h" 40 #include "base/ref_counted.h"
41 #include "media/base/buffers.h"
41 42
42 namespace media { 43 namespace media {
43 44
44 class SeekableBuffer { 45 class SeekableBuffer {
45 public: 46 public:
46 // Constructs an instance with |forward_capacity| and |backward_capacity|. 47 // Constructs an instance with |forward_capacity| and |backward_capacity|.
47 // The values are in bytes. 48 // The values are in bytes.
48 SeekableBuffer(size_t backward_capacity, size_t forward_capacity); 49 SeekableBuffer(size_t backward_capacity, size_t forward_capacity);
49 50
50 ~SeekableBuffer(); 51 ~SeekableBuffer();
51 52
52 // Reads a maximum of |size| bytes into |buffer| from the current read 53 // Clears the buffer queue.
54 void Clear();
55
56 // Reads a maximum of |size| bytes into |data| from the current read
53 // position. Returns the number of bytes read. 57 // position. Returns the number of bytes read.
54 // The current read position will advance by the amount of bytes read. If 58 // The current read position will advance by the amount of bytes read. If
55 // reading caused backward_bytes() to exceed backward_capacity(), an eviction 59 // reading caused backward_bytes() to exceed backward_capacity(), an eviction
56 // of the backward buffer will be done internally. 60 // of the backward buffer will be done internally.
57 size_t Read(size_t size, uint8* buffer); 61 size_t Read(uint8* data, size_t size);
58 62
59 // Appends |data| with |size| bytes to this buffer. If this buffer becomes 63 // Copies up to |size| bytes from current position to |data|. Returns
60 // full or is already full then returns false, otherwise returns true. 64 // number of bytes copied. Doesn't advance current position.
61 // Append operations are always successful. A return value of false only means 65 size_t Peek(uint8* data, size_t size);
62 // that forward_bytes() is greater than or equals to forward_capacity(). Data 66
63 // appended is still in this buffer but user is advised not to write any more. 67 // Appends |buffer_in| to this buffer. Returns false if forward_bytes() is
64 bool Append(size_t size, const uint8* data); 68 // greater than or equals to forward_capacity(), true otherwise. The data
69 // added to the buffer in any case.
scherkus (not reviewing) 2010/04/27 02:19:26 nit: added -> is added
70 bool Append(Buffer* buffer_in);
71
72 // Appends |size| bytes of |data| to the buffer. Result is the same
73 // as for Append(Buffer*).
74 bool Append(const uint8* data, size_t size);
65 75
66 // Moves the read position by |offset| bytes. If |offset| is positive, the 76 // Moves the read position by |offset| bytes. If |offset| is positive, the
67 // current read position is moved forward. If negative, the current read 77 // current read position is moved forward. If negative, the current read
68 // position is moved backward. A zero |offset| value will keep the current 78 // position is moved backward. A zero |offset| value will keep the current
69 // read position stationary. 79 // read position stationary.
70 // If |offset| exceeds bytes buffered in either direction, reported by 80 // If |offset| exceeds bytes buffered in either direction, reported by
71 // forward_bytes() when seeking forward and backward_bytes() when seeking 81 // forward_bytes() when seeking forward and backward_bytes() when seeking
72 // backward, the seek operation will fail and return value will be false. 82 // backward, the seek operation will fail and return value will be false.
73 // If the seek operation fails, the current read position will not be updated. 83 // If the seek operation fails, the current read position will not be updated.
74 // If a forward seeking caused backward_bytes() to exceed backward_capacity(), 84 // If a forward seeking caused backward_bytes() to exceed backward_capacity(),
75 // this method call will cause an eviction of the backward buffer. 85 // this method call will cause an eviction of the backward buffer.
76 bool Seek(int32 offset); 86 bool Seek(int32 offset);
77 87
78 // Returns the number of bytes buffered beyond the current read position. 88 // Returns the number of bytes buffered beyond the current read position.
79 size_t forward_bytes() const { return forward_bytes_; } 89 size_t forward_bytes() const { return forward_bytes_; }
80 90
81 // Returns the number of bytes buffered that precedes the current read 91 // Returns the number of bytes buffered that precedes the current read
82 // position. 92 // position.
83 size_t backward_bytes() const { return backward_bytes_; } 93 size_t backward_bytes() const { return backward_bytes_; }
84 94
85 // Returns the maximum number of bytes that should be kept in the forward 95 // Returns the maximum number of bytes that should be kept in the forward
86 // direction. 96 // direction.
87 size_t forward_capacity() const { return forward_capacity_; } 97 size_t forward_capacity() const { return forward_capacity_; }
88 98
89 // Returns the maximum number of bytes that should be kept in the backward 99 // Returns the maximum number of bytes that should be kept in the backward
90 // direction. 100 // direction.
91 size_t backward_capacity() const { return backward_capacity_; } 101 size_t backward_capacity() const { return backward_capacity_; }
92 102
103 // Returns the current timestamp, taking into account current offset. The
104 // value calculated based on the timestamp of the current buffer. If
105 // timestamp for the current buffer is set to 0 or the data was added with
106 // Append(const uint*, size_t), then returns value that corresponds to the
107 // last position in a buffer that had timestamp set. 0 is returned if no
108 // buffers we read from had timestamp set.
109 // TODO(sergeyu): Use StreamSample::kInvalidTimestamp here.
110 base::TimeDelta current_time() const { return current_time_; }
111
93 private: 112 private:
94 // A structure that contains a block of data.
95 struct Buffer {
96 explicit Buffer(size_t len) : data(new uint8[len]), size(len) {}
97 // Pointer to data.
98 scoped_array<uint8> data;
99 // Size of this block.
100 size_t size;
101 };
102
103 // Definition of the buffer queue. 113 // Definition of the buffer queue.
104 typedef std::list<Buffer*> BufferQueue; 114 typedef std::list<scoped_refptr<Buffer> > BufferQueue;
105 115
106 // A helper method to evict buffers in the backward direction until backward 116 // A helper method to evict buffers in the backward direction until backward
107 // bytes is within the backward capacity. 117 // bytes is within the backward capacity.
108 void EvictBackwardBuffers(); 118 void EvictBackwardBuffers();
109 119
110 // An internal method shared by Read() and SeekForward() that actually does 120 // An internal method shared by Read() and SeekForward() that actually does
111 // reading. It reads a maximum of |size| bytes into |data|. Returns the number 121 // reading. It reads a maximum of |size| bytes into |data|. Returns the number
112 // of bytes read. The current read position will be moved forward by the 122 // of bytes read. The current read position will be moved forward by the
113 // number of bytes read. If |data| is NULL, only the current read position 123 // number of bytes read. If |data| is NULL, only the current read position
114 // will advance but no data will be copied. 124 // will advance but no data will be copied.
115 size_t InternalRead(size_t size, uint8* data); 125 size_t InternalRead(uint8* data, size_t size, bool advance_position);
116 126
117 // A helper method that moves the current read position forward by |size| 127 // A helper method that moves the current read position forward by |size|
118 // bytes. 128 // bytes.
119 // If the return value is true, the operation completed successfully. 129 // If the return value is true, the operation completed successfully.
120 // If the return value is false, |size| is greater than forward_bytes() and 130 // If the return value is false, |size| is greater than forward_bytes() and
121 // the seek operation failed. The current read position is not updated. 131 // the seek operation failed. The current read position is not updated.
122 bool SeekForward(size_t size); 132 bool SeekForward(size_t size);
123 133
124 // A helper method that moves the current read position backward by |size| 134 // A helper method that moves the current read position backward by |size|
125 // bytes. 135 // bytes.
126 // If the return value is true, the operation completed successfully. 136 // If the return value is true, the operation completed successfully.
127 // If the return value is false, |size| is greater than backward_bytes() and 137 // If the return value is false, |size| is greater than backward_bytes() and
128 // the seek operation failed. The current read position is not updated. 138 // the seek operation failed. The current read position is not updated.
129 bool SeekBackward(size_t size); 139 bool SeekBackward(size_t size);
130 140
141 // Updates |current_time_| with the time that corresponds to the
142 // specified position in the buffer.
143 void UpdateCurrentTime(BufferQueue::iterator buffer, size_t offset);
144
131 BufferQueue::iterator current_buffer_; 145 BufferQueue::iterator current_buffer_;
132 BufferQueue buffers_; 146 BufferQueue buffers_;
133 size_t current_buffer_offset_; 147 size_t current_buffer_offset_;
134 148
135 size_t backward_capacity_; 149 size_t backward_capacity_;
136 size_t backward_bytes_; 150 size_t backward_bytes_;
137 151
138 size_t forward_capacity_; 152 size_t forward_capacity_;
139 size_t forward_bytes_; 153 size_t forward_bytes_;
154
155 // Keeps track of the most recent time we've seen in case the |buffers_| is
156 // empty when our owner asks what time it is.
157 base::TimeDelta current_time_;
158
159 DISALLOW_COPY_AND_ASSIGN(SeekableBuffer);
140 }; 160 };
141 161
142 } // namespace media 162 } // namespace media
143 163
144 #endif // MEDIA_BASE_SEEKABLE_BUFFER_H_ 164 #endif // MEDIA_BASE_SEEKABLE_BUFFER_H_
OLDNEW
« no previous file with comments | « media/base/buffer_queue_unittest.cc ('k') | media/base/seekable_buffer.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698