escape124: explicitly set get_bits1 variable
Makes coverity less confused. CC: libav-stable@libav.org Bug-Id: CID 1203487
This commit is contained in:
parent
2ffb0598db
commit
1a9c1333b5
@ -147,10 +147,11 @@ static MacroBlock decode_macroblock(Escape124Context* s, GetBitContext* gb,
|
|||||||
// This function reads a maximum of 22 bits; the callers
|
// This function reads a maximum of 22 bits; the callers
|
||||||
// guard this function appropriately
|
// guard this function appropriately
|
||||||
unsigned block_index, depth;
|
unsigned block_index, depth;
|
||||||
|
int value = get_bits1(gb);
|
||||||
if (get_bits1(gb)) {
|
if (value) {
|
||||||
static const char transitions[3][2] = { {2, 1}, {0, 2}, {1, 0} };
|
static const char transitions[3][2] = { {2, 1}, {0, 2}, {1, 0} };
|
||||||
*codebook_index = transitions[*codebook_index][get_bits1(gb)];
|
value = get_bits1(gb);
|
||||||
|
*codebook_index = transitions[*codebook_index][value];
|
||||||
}
|
}
|
||||||
|
|
||||||
depth = s->codebooks[*codebook_index].depth;
|
depth = s->codebooks[*codebook_index].depth;
|
||||||
|
Loading…
x
Reference in New Issue
Block a user