mirror of
https://github.com/FFmpeg/FFmpeg.git
synced 2024-11-21 10:55:51 +02:00
Merge commit '1a9c1333b5d70b427c82cb98f383aa2fa9b2b319'
* commit '1a9c1333b5d70b427c82cb98f383aa2fa9b2b319': escape124: explicitly set get_bits1 variable Merged-by: Michael Niedermayer <michaelni@gmx.at>
This commit is contained in:
commit
2c4d5d3497
@ -143,10 +143,11 @@ static MacroBlock decode_macroblock(Escape124Context* s, GetBitContext* gb,
|
||||
// This function reads a maximum of 22 bits; the callers
|
||||
// guard this function appropriately
|
||||
unsigned block_index, depth;
|
||||
|
||||
if (get_bits1(gb)) {
|
||||
int value = get_bits1(gb);
|
||||
if (value) {
|
||||
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;
|
||||
|
Loading…
Reference in New Issue
Block a user