diff options
author | Michael Niedermayer <michael@niedermayer.cc> | 2023-03-05 22:43:56 +0100 |
---|---|---|
committer | Michael Niedermayer <michael@niedermayer.cc> | 2023-03-12 22:33:12 +0100 |
commit | f669dd4dff83024ac80d79a4a5d7089902236a00 (patch) | |
tree | 4a6ac74c6fa373b9c1030f898f6b854b454ee1fa | |
parent | 98df605f7a8e80471a113f7beb0983c90aa84525 (diff) | |
download | ffmpeg-f669dd4dff83024ac80d79a4a5d7089902236a00.tar.gz |
avcodec/escape124: Simplify unpack_codebook()
Signed-off-by: Michael Niedermayer <michael@niedermayer.cc>
-rw-r--r-- | libavcodec/escape124.c | 15 |
1 files changed, 6 insertions, 9 deletions
diff --git a/libavcodec/escape124.c b/libavcodec/escape124.c index 064a4e6bf5..e8a8395f4b 100644 --- a/libavcodec/escape124.c +++ b/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; } |