Commit c003b97d authored by Jim Bankoski's avatar Jim Bankoski
Browse files

fix vp9_wb_write_bit uninitialized variable

This fixes a valgrind error.

Change-Id: I0e1ef212ba09d65e3d71dd209f0786ae6530d2c8
parent b4c4f648
No related merge requests found
Showing with 6 additions and 2 deletions
...@@ -26,8 +26,12 @@ static void vp9_wb_write_bit(struct vp9_write_bit_buffer *wb, int bit) { ...@@ -26,8 +26,12 @@ static void vp9_wb_write_bit(struct vp9_write_bit_buffer *wb, int bit) {
const int off = wb->bit_offset; const int off = wb->bit_offset;
const int p = off / CHAR_BIT; const int p = off / CHAR_BIT;
const int q = CHAR_BIT - 1 - off % CHAR_BIT; const int q = CHAR_BIT - 1 - off % CHAR_BIT;
wb->bit_buffer[p] &= ~(1 << q); if (q == CHAR_BIT -1) {
wb->bit_buffer[p] |= bit << q; wb->bit_buffer[p] = bit << q;
} else {
wb->bit_buffer[p] &= ~(1 << q);
wb->bit_buffer[p] |= bit << q;
}
wb->bit_offset = off + 1; wb->bit_offset = off + 1;
} }
......
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment