Chromium Code Reviews| 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_BIT_READER_H_ | 5 #ifndef MEDIA_BASE_BIT_READER_H_ |
| 6 #define MEDIA_BASE_BIT_READER_H_ | 6 #define MEDIA_BASE_BIT_READER_H_ |
| 7 | 7 |
| 8 #include <sys/types.h> | 8 #include <sys/types.h> |
| 9 | 9 |
| 10 #include "base/basictypes.h" | 10 #include "base/basictypes.h" |
| 11 #include "base/logging.h" | 11 #include "base/memory/scoped_ptr.h" |
| 12 #include "media/base/bit_reader_core.h" | |
| 12 #include "media/base/media_export.h" | 13 #include "media/base/media_export.h" |
| 13 | 14 |
| 14 namespace media { | 15 namespace media { |
| 15 | 16 |
| 16 // A class to read bit streams. | |
| 17 class MEDIA_EXPORT BitReader { | 17 class MEDIA_EXPORT BitReader { |
| 18 public: | 18 public: |
| 19 // Initialize the reader to start reading at |data|, |size| being size | 19 // Initialize the reader to start reading at |data|, |size| being size |
| 20 // of |data| in bytes. | 20 // of |data| in bytes. |
| 21 BitReader(const uint8* data, off_t size); | 21 BitReader(const uint8* data, off_t size, |
| 22 bool use_h264_byte_provider = false); | |
|
acolwell GONE FROM CHROMIUM
2013/12/27 20:35:21
I don't think the generic BitReader should have an
damienv1
2013/12/27 21:23:20
You're right, it would be better to give an instan
| |
| 22 ~BitReader(); | 23 ~BitReader(); |
| 23 | 24 |
| 24 // Read |num_bits| next bits from stream and return in |*out|, first bit | |
| 25 // from the stream starting at |num_bits| position in |*out|. | |
| 26 // |num_bits| cannot be larger than the bits the type can hold. | |
| 27 // Return false if the given number of bits cannot be read (not enough | |
| 28 // bits in the stream), true otherwise. When return false, the stream will | |
| 29 // enter a state where further ReadBits/SkipBits operations will always | |
| 30 // return false unless |num_bits| is 0. The type |T| has to be a primitive | |
| 31 // integer type. | |
| 32 template<typename T> bool ReadBits(int num_bits, T *out) { | 25 template<typename T> bool ReadBits(int num_bits, T *out) { |
| 33 DCHECK_LE(num_bits, static_cast<int>(sizeof(T) * 8)); | 26 return bit_reader_core_.ReadBits(num_bits, out); |
| 34 uint64 temp; | |
| 35 bool ret = ReadBitsInternal(num_bits, &temp); | |
| 36 *out = static_cast<T>(temp); | |
| 37 return ret; | |
| 38 } | 27 } |
| 39 | 28 |
| 40 // Skip |num_bits| next bits from stream. Return false if the given number of | 29 bool ReadFlag(bool* flag) { |
| 41 // bits cannot be skipped (not enough bits in the stream), true otherwise. | 30 return bit_reader_core_.ReadFlag(flag); |
| 42 // When return false, the stream will enter a state where further ReadBits/ | 31 } |
| 43 // SkipBits operations will always return false unless |num_bits| is 0. | 32 |
| 44 bool SkipBits(int num_bits); | 33 bool SkipBits(int num_bits) { |
| 34 return bit_reader_core_.SkipBits(num_bits); | |
| 35 } | |
| 45 | 36 |
| 46 // Returns the number of bits available for reading. | 37 // Returns the number of bits available for reading. |
| 47 int bits_available() const; | 38 int bits_available() const; |
| 48 | 39 |
| 49 private: | 40 int GetBitCount() { |
| 50 // Help function used by ReadBits to avoid inlining the bit reading logic. | 41 return bit_reader_core_.GetBitCount(); |
| 51 bool ReadBitsInternal(int num_bits, uint64* out); | 42 } |
| 52 | 43 |
| 53 // Advance to the next byte, loading it into curr_byte_. | 44 // See the definition of more_rbsp_data() in spec. |
| 54 // If the num_remaining_bits_in_curr_byte_ is 0 after this function returns, | 45 bool HasMoreRBSPData() { |
|
acolwell GONE FROM CHROMIUM
2013/12/27 20:35:21
This seems like a H.264 specific concept and shoul
damienv1
2013/12/27 22:27:03
Done.
| |
| 55 // the stream has reached the end. | 46 return bit_reader_core_.HasMoreRBSPData(); |
| 56 void UpdateCurrByte(); | 47 } |
| 57 | |
| 58 // Pointer to the next unread (not in curr_byte_) byte in the stream. | |
| 59 const uint8* data_; | |
| 60 | |
| 61 // Bytes left in the stream (without the curr_byte_). | |
| 62 off_t bytes_left_; | |
| 63 | |
| 64 // Contents of the current byte; first unread bit starting at position | |
| 65 // 8 - num_remaining_bits_in_curr_byte_ from MSB. | |
| 66 uint8 curr_byte_; | |
| 67 | |
| 68 // Number of bits remaining in curr_byte_ | |
| 69 int num_remaining_bits_in_curr_byte_; | |
| 70 | 48 |
| 71 private: | 49 private: |
| 50 scoped_ptr<BitReaderCore::ByteStreamProvider> byte_stream_provider_; | |
|
acolwell GONE FROM CHROMIUM
2013/12/27 20:35:21
Why does this object own the provider instead of t
damienv1
2013/12/27 21:23:20
The BitReader is the owner of the pipe "ByteStream
| |
| 51 | |
| 52 BitReaderCore bit_reader_core_; | |
| 53 | |
| 72 DISALLOW_COPY_AND_ASSIGN(BitReader); | 54 DISALLOW_COPY_AND_ASSIGN(BitReader); |
| 73 }; | 55 }; |
| 74 | 56 |
| 75 } // namespace media | 57 } // namespace media |
| 76 | 58 |
| 77 #endif // MEDIA_BASE_BIT_READER_H_ | 59 #endif // MEDIA_BASE_BIT_READER_H_ |
| OLD | NEW |