DASH Media Packaging SDK
 All Classes Namespaces Functions Variables Typedefs Enumerations Enumerator
bit_reader.h
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
3 // found in the LICENSE file.
4 
5 #ifndef MEDIA_BASE_BIT_READER_H_
6 #define MEDIA_BASE_BIT_READER_H_
7 
8 #include <stdint.h>
9 #include <sys/types.h>
10 
11 #include "packager/base/logging.h"
12 
13 namespace shaka {
14 namespace media {
15 
17 class BitReader {
18  public:
22  BitReader(const uint8_t* data, off_t size);
23  ~BitReader();
24 
34  template <typename T>
35  bool ReadBits(int num_bits, T* out) {
36  DCHECK_LE(num_bits, static_cast<int>(sizeof(T) * 8));
37  uint64_t temp;
38  bool ret = ReadBitsInternal(num_bits, &temp);
39  *out = static_cast<T>(temp);
40  return ret;
41  }
42 
43  // Explicit T=bool overload to make MSVC happy.
44  bool ReadBits(int num_bits, bool* out) {
45  DCHECK_EQ(num_bits, 1);
46  uint64_t temp;
47  bool ret = ReadBitsInternal(num_bits, &temp);
48  *out = temp != 0;
49  return ret;
50  }
51 
58  bool SkipBits(int num_bits);
59 
69  bool SkipBitsConditional(bool condition, int num_bits) {
70  bool condition_read = true;
71  if (!ReadBits(1, &condition_read))
72  return false;
73  return condition_read == condition ? SkipBits(num_bits) : true;
74  }
75 
82  bool SkipBytes(int num_bytes);
83 
85  int bits_available() const {
86  return 8 * bytes_left_ + num_remaining_bits_in_curr_byte_;
87  }
88 
90  int bit_position() const { return 8 * initial_size_ - bits_available(); }
91 
92  private:
93  // Help function used by ReadBits to avoid inlining the bit reading logic.
94  bool ReadBitsInternal(int num_bits, uint64_t* out);
95 
96  // Advance to the next byte, loading it into curr_byte_.
97  // If the num_remaining_bits_in_curr_byte_ is 0 after this function returns,
98  // the stream has reached the end.
99  void UpdateCurrByte();
100 
101  // Pointer to the next unread (not in curr_byte_) byte in the stream.
102  const uint8_t* data_;
103 
104  // Initial size of the input data.
105  // TODO(kqyang): Use size_t instead of off_t instead.
106  off_t initial_size_;
107 
108  // Bytes left in the stream (without the curr_byte_).
109  off_t bytes_left_;
110 
111  // Contents of the current byte; first unread bit starting at position
112  // 8 - num_remaining_bits_in_curr_byte_ from MSB.
113  uint8_t curr_byte_;
114 
115  // Number of bits remaining in curr_byte_
116  int num_remaining_bits_in_curr_byte_;
117 
118  private:
119  DISALLOW_COPY_AND_ASSIGN(BitReader);
120 };
121 
122 } // namespace media
123 } // namespace shaka
124 
125 #endif // MEDIA_BASE_BIT_READER_H_
A class to read bit streams.
Definition: bit_reader.h:17
BitReader(const uint8_t *data, off_t size)
Definition: bit_reader.cc:12
bool ReadBits(int num_bits, T *out)
Definition: bit_reader.h:35
bool SkipBytes(int num_bytes)
Definition: bit_reader.cc:56
int bits_available() const
Definition: bit_reader.h:85
bool SkipBitsConditional(bool condition, int num_bits)
Definition: bit_reader.h:69
bool SkipBits(int num_bits)
Definition: bit_reader.cc:24
int bit_position() const
Definition: bit_reader.h:90