Spec: Fix ReadBits call

This commit is contained in:
Frank Galligan 2017-10-16 12:52:35 -07:00
parent f850fa4530
commit f5dfee96f7

View File

@ -320,7 +320,7 @@ void NewActiveCornerReached(new_corner, symbol_id) {
~~~~~ ~~~~~
void ParseEdgebreakerStandardSymbol() { void ParseEdgebreakerStandardSymbol() {
symbol = bit_symbol_buffer.ReadBits32(1); symbol = bit_symbol_buffer.ReadBits(1);
if (symbol != TOPOLOGY_C) { if (symbol != TOPOLOGY_C) {
// Else decode two additional bits. // Else decode two additional bits.
symbol_suffix = bit_symbol_buffer.ReadBits(2); symbol_suffix = bit_symbol_buffer.ReadBits(2);