avcodec/escape124: Simplify unpack_codebook()

Signed-off-by: Michael Niedermayer <michael@niedermayer.cc>
pull/389/head
Michael Niedermayer 2 years ago
parent 98df605f7a
commit f669dd4dff
No known key found for this signature in database
GPG Key ID: B18E8928B3948D64
  1. 15
      libavcodec/escape124.c

@ -97,15 +97,12 @@ static CodeBook unpack_codebook(GetBitContext* gb, unsigned depth,
cb.size = size;
for (i = 0; i < size; i++) {
unsigned mask_bits = get_bits(gb, 4);
unsigned color0 = get_bits(gb, 15);
unsigned color1 = get_bits(gb, 15);
for (j = 0; j < 4; j++) {
if (mask_bits & (1 << j))
cb.blocks[i].pixels[j] = color1;
else
cb.blocks[i].pixels[j] = color0;
}
unsigned color[2];
color[0] = get_bits(gb, 15);
color[1] = get_bits(gb, 15);
for (j = 0; j < 4; j++)
cb.blocks[i].pixels[j] = color[(mask_bits>>j) & 1];
}
return cb;
}

Loading…
Cancel
Save