DASH Media Packaging SDK
 All Classes Namespaces Functions Variables Typedefs
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 edash_packager {
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 
49  bool SkipBits(int num_bits);
50 
52  int bits_available() const;
53 
54  private:
55  // Help function used by ReadBits to avoid inlining the bit reading logic.
56  bool ReadBitsInternal(int num_bits, uint64_t* out);
57 
58  // Advance to the next byte, loading it into curr_byte_.
59  // If the num_remaining_bits_in_curr_byte_ is 0 after this function returns,
60  // the stream has reached the end.
61  void UpdateCurrByte();
62 
63  // Pointer to the next unread (not in curr_byte_) byte in the stream.
64  const uint8_t* data_;
65 
66  // Bytes left in the stream (without the curr_byte_).
67  off_t bytes_left_;
68 
69  // Contents of the current byte; first unread bit starting at position
70  // 8 - num_remaining_bits_in_curr_byte_ from MSB.
71  uint8_t curr_byte_;
72 
73  // Number of bits remaining in curr_byte_
74  int num_remaining_bits_in_curr_byte_;
75 
76  private:
77  DISALLOW_COPY_AND_ASSIGN(BitReader);
78 };
79 
80 } // namespace media
81 } // namespace edash_packager
82 
83 #endif // MEDIA_BASE_BIT_READER_H_
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
A class to read bit streams.
Definition: bit_reader.h:17
bool SkipBits(int num_bits)
Definition: bit_reader.cc:21