Silly assertion failures in obu.c
This was my fault: I'd changed "assert (foo % 8 == 0)" to "assert (foo & 7 == 0)". Since & binds weaker than ==, this asserts that seven equals zero...
This was my fault: I'd changed "assert (foo % 8 == 0)" to "assert (foo & 7 == 0)". Since & binds weaker than ==, this asserts that seven equals zero...
VideoLAN code repository instance