Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/FFmpeg/FFmpeg.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMichael Niedermayer <michael@niedermayer.cc>2021-01-26 21:52:10 +0300
committerMichael Niedermayer <michael@niedermayer.cc>2021-01-26 21:52:59 +0300
commit33f6d8e37638304193df575fe5609808606dc188 (patch)
treedc572a85cdc4b07bbadc8f54e339b470cbc0eb33 /libavcodec/cri.c
parentaa1b8e6898f861cc065c3b0fe315e826a324d0a9 (diff)
avcodec/cri: Fix whitespace issue in unpack_10bit()
Found-by: Paul B Mahol <onemda@gmail.com> Signed-off-by: Michael Niedermayer <michael@niedermayer.cc>
Diffstat (limited to 'libavcodec/cri.c')
-rw-r--r--libavcodec/cri.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/libavcodec/cri.c b/libavcodec/cri.c
index 41be29eabb..f7c3b4ef48 100644
--- a/libavcodec/cri.c
+++ b/libavcodec/cri.c
@@ -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);