| OLD | NEW |
| 1 // Copyright (c) 2010 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 // CompoundBuffer implements a data buffer that is composed of several pieces, | 5 // CompoundBuffer implements a data buffer that is composed of several pieces, |
| 6 // each stored in a refcounted IOBuffer. It is needed for encoding/decoding | 6 // each stored in a refcounted IOBuffer. It is needed for encoding/decoding |
| 7 // video pipeline to represent data packet and minimize data copying. | 7 // video pipeline to represent data packet and minimize data copying. |
| 8 // It is particularly useful for splitting data between multiple RTP packets | 8 // It is particularly useful for splitting data between multiple RTP packets |
| 9 // and assembling them into one buffer on the receiving side. | 9 // and assembling them into one buffer on the receiving side. |
| 10 // | 10 // |
| (...skipping 87 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 98 DISALLOW_COPY_AND_ASSIGN(CompoundBuffer); | 98 DISALLOW_COPY_AND_ASSIGN(CompoundBuffer); |
| 99 }; | 99 }; |
| 100 | 100 |
| 101 class CompoundBufferInputStream | 101 class CompoundBufferInputStream |
| 102 : public google::protobuf::io::ZeroCopyInputStream { | 102 : public google::protobuf::io::ZeroCopyInputStream { |
| 103 public: | 103 public: |
| 104 // Caller keeps ownership of |buffer|. |buffer| must be locked. | 104 // Caller keeps ownership of |buffer|. |buffer| must be locked. |
| 105 explicit CompoundBufferInputStream(const CompoundBuffer* buffer); | 105 explicit CompoundBufferInputStream(const CompoundBuffer* buffer); |
| 106 virtual ~CompoundBufferInputStream(); | 106 virtual ~CompoundBufferInputStream(); |
| 107 | 107 |
| 108 int position() const { return position_; } |
| 109 |
| 108 // google::protobuf::io::ZeroCopyInputStream interface. | 110 // google::protobuf::io::ZeroCopyInputStream interface. |
| 109 virtual bool Next(const void** data, int* size); | 111 virtual bool Next(const void** data, int* size); |
| 110 virtual void BackUp(int count); | 112 virtual void BackUp(int count); |
| 111 virtual bool Skip(int count); | 113 virtual bool Skip(int count); |
| 112 virtual int64 ByteCount() const; | 114 virtual int64 ByteCount() const; |
| 113 | 115 |
| 114 private: | 116 private: |
| 115 const CompoundBuffer* buffer_; | 117 const CompoundBuffer* buffer_; |
| 116 | 118 |
| 117 size_t current_chunk_; | 119 size_t current_chunk_; |
| 118 int current_chunk_position_; | 120 int current_chunk_position_; |
| 119 int position_; | 121 int position_; |
| 120 int last_returned_size_; | 122 int last_returned_size_; |
| 121 }; | 123 }; |
| 122 | 124 |
| 123 } // namespace remoting | 125 } // namespace remoting |
| 124 | 126 |
| 125 #endif // REMOTING_BASE_COMPOUND_BUFFER_H_ | 127 #endif // REMOTING_BASE_COMPOUND_BUFFER_H_ |
| OLD | NEW |