2016-08-17 08:27:43 +03:00
|
|
|
/* This Source Code Form is subject to the terms of the Mozilla Public
|
|
|
|
* License, v. 2.0. If a copy of the MPL was not distributed with this
|
|
|
|
* file, You can obtain one at http://mozilla.org/MPL/2.0/. */
|
|
|
|
|
|
|
|
#ifndef BIT_READER_H_
|
|
|
|
#define BIT_READER_H_
|
|
|
|
|
|
|
|
#include "MediaData.h"
|
|
|
|
|
2017-11-17 03:53:25 +03:00
|
|
|
namespace mozilla {
|
2016-08-17 08:27:43 +03:00
|
|
|
|
|
|
|
class BitReader {
|
|
|
|
public:
|
2018-06-16 10:53:13 +03:00
|
|
|
explicit BitReader(const MediaByteBuffer* aBuffer);
|
|
|
|
BitReader(const MediaByteBuffer* aBuffer, size_t aBits);
|
2016-12-14 07:27:48 +03:00
|
|
|
BitReader(const uint8_t* aBuffer, size_t aBits);
|
2016-08-17 08:27:43 +03:00
|
|
|
~BitReader();
|
|
|
|
uint32_t ReadBits(size_t aNum);
|
2018-06-16 10:53:13 +03:00
|
|
|
bool ReadBit() { return ReadBits(1) != 0; }
|
2016-08-17 08:27:43 +03:00
|
|
|
uint32_t ReadU32() { return ReadBits(32); }
|
|
|
|
uint64_t ReadU64();
|
|
|
|
|
|
|
|
// Read the UTF-8 sequence and convert it to its 64-bit UCS-4 encoded form.
|
|
|
|
// Return 0xfffffffffffffff if sequence was invalid.
|
|
|
|
uint64_t ReadUTF8();
|
|
|
|
// Read unsigned integer Exp-Golomb-coded.
|
|
|
|
uint32_t ReadUE();
|
|
|
|
// Read signed integer Exp-Golomb-coded.
|
|
|
|
int32_t ReadSE();
|
|
|
|
|
|
|
|
// Return the number of bits parsed so far;
|
|
|
|
size_t BitCount() const;
|
2016-10-24 09:22:05 +03:00
|
|
|
// Return the number of bits left.
|
|
|
|
size_t BitsLeft() const;
|
2016-08-17 08:27:43 +03:00
|
|
|
|
2018-06-16 10:53:13 +03:00
|
|
|
// Return RBSP bit length.
|
|
|
|
static uint32_t GetBitLength(const MediaByteBuffer* aNAL);
|
|
|
|
|
2016-08-17 08:27:43 +03:00
|
|
|
private:
|
2016-12-14 07:27:48 +03:00
|
|
|
void FillReservoir();
|
|
|
|
const uint8_t* mData;
|
|
|
|
const size_t mOriginalBitSize;
|
|
|
|
size_t mTotalBitsLeft;
|
|
|
|
size_t mSize; // Size left in bytes
|
|
|
|
uint32_t mReservoir; // Left-aligned bits
|
|
|
|
size_t mNumBitsLeft; // Number of bits left in reservoir.
|
2016-08-17 08:27:43 +03:00
|
|
|
};
|
|
|
|
|
2017-11-17 03:53:25 +03:00
|
|
|
} // namespace mozilla
|
2016-08-17 08:27:43 +03:00
|
|
|
|
2017-11-17 03:53:25 +03:00
|
|
|
#endif // BIT_READER_H_
|