diff options
author | qinxialei <xialeiqin@gmail.com> | 2021-04-22 11:20:15 +0800 |
---|---|---|
committer | qinxialei <xialeiqin@gmail.com> | 2021-04-22 11:20:15 +0800 |
commit | 2381d803c76105f44717d75f089ec37f51e5cfe4 (patch) | |
tree | 33f40fb4dfd1039ac262d5f1c1065d298578ddc1 /src/utils/raw_bit_reader.h | |
parent | e8d277081293b6fb2a5d469616baaa7a06f52496 (diff) | |
download | libgav1-2381d803c76105f44717d75f089ec37f51e5cfe4.tar.gz libgav1-2381d803c76105f44717d75f089ec37f51e5cfe4.tar.bz2 libgav1-2381d803c76105f44717d75f089ec37f51e5cfe4.zip |
New upstream version 0.16.3
Diffstat (limited to 'src/utils/raw_bit_reader.h')
-rw-r--r-- | src/utils/raw_bit_reader.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/utils/raw_bit_reader.h b/src/utils/raw_bit_reader.h index 76e7bfa..7d8ce8f 100644 --- a/src/utils/raw_bit_reader.h +++ b/src/utils/raw_bit_reader.h @@ -38,7 +38,7 @@ class RawBitReader : public BitReader, public Allocable { size_t* value); // le(n) in the spec. bool ReadUnsignedLeb128(size_t* value); // leb128() in the spec. // Reads a variable length unsigned number and stores it in |*value|. On a - // successful return, |*value| is in the range of 0 to UINT32_MAX − 1, + // successful return, |*value| is in the range of 0 to UINT32_MAX - 1, // inclusive. bool ReadUvlc(uint32_t* value); // uvlc() in the spec. bool Finished() const; |