]> git.sesse.net Git - ffmpeg/commitdiff
avcodec/cri: Fix whitespace issue in unpack_10bit()
authorMichael Niedermayer <michael@niedermayer.cc>
Tue, 26 Jan 2021 18:52:10 +0000 (19:52 +0100)
committerMichael Niedermayer <michael@niedermayer.cc>
Tue, 26 Jan 2021 18:52:59 +0000 (19:52 +0100)
Found-by: Paul B Mahol <onemda@gmail.com>
Signed-off-by: Michael Niedermayer <michael@niedermayer.cc>
libavcodec/cri.c

index 41be29eabb219d1e1b4b5e550eb27c604145a30c..f7c3b4ef48f3602e964b811eba13c7d470863989 100644 (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);