Skip to content
Snippets Groups Projects
Commit 4e955ed3 authored by Timothy B. Terriberry's avatar Timothy B. Terriberry Committed by Jean-Marc Valin
Browse files

Fix a typo in ec_byte_write_done().

Introduced by 30df6cf3.
This should have only affected the output in the case where the last
 few extra bits caused us to bust, and wouldn't have prevented us
 from detecting the error.
parent 7365c7d1
No related branches found
No related tags found
No related merge requests found
......@@ -76,7 +76,7 @@ int ec_byte_write_done(ec_byte_buffer *_b,int _start_bits_available,
would corrupt the range coder data, and that's more important.*/
if(_start_bits_available<_end_bits_used){
_end_bits_used=_start_bits_available;
_end_byte&=(1<_start_bits_available)-1;
_end_byte&=(1<<_start_bits_available)-1;
ret=-1;
}
}
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment