1
mirror of https://git.videolan.org/git/ffmpeg.git synced 2024-09-07 16:40:10 +02:00

avcodec/cri: Fix whitespace issue in unpack_10bit()

Found-by: Paul B Mahol <onemda@gmail.com>
Signed-off-by: Michael Niedermayer <michael@niedermayer.cc>
This commit is contained in:
Michael Niedermayer 2021-01-26 19:52:10 +01:00
parent aa1b8e6898
commit 33f6d8e376

View File

@ -80,7 +80,7 @@ static void unpack_10bit(GetByteContext *gb, uint16_t *dst, int shift,
int pos = 0;
while (count > 0) {
uint32_t a0, a1,a2,a3;
uint32_t a0, a1, a2, a3;
if (bytestream2_get_bytes_left(gb) < 4)
break;
a0 = bytestream2_get_le32(gb);