webm2pes: Fix type limit warning.

Change-Id: Ic4c554209b2833e26f3e0e415693255ab2219db2
This commit is contained in:
Tom Finegan 2016-02-29 15:12:31 -05:00
parent 64c4163a15
commit 521ce4d819

View File

@ -44,13 +44,13 @@ struct PesHeaderField {
std::uint64_t bits; std::uint64_t bits;
// Number of bits in the value. // Number of bits in the value.
const std::uint32_t num_bits; const int num_bits;
// Index into the header for the byte in which |bits| will be written. // Index into the header for the byte in which |bits| will be written.
const std::uint8_t index; const std::uint8_t index;
// Number of bits to shift value before or'ing. // Number of bits to shift value before or'ing.
const std::uint8_t shift; const int shift;
}; };
// Data is stored in buffers before being written to output files. // Data is stored in buffers before being written to output files.