mirror of
https://github.com/xenia-project/FFmpeg.git
synced 2024-11-23 19:49:56 +00: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:
parent
aa1b8e6898
commit
33f6d8e376
@ -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);
|
||||
|
Loading…
Reference in New Issue
Block a user