summaryrefslogtreecommitdiff
path: root/libavcodec/rscc.c
diff options
context:
space:
mode:
authorMateusz <mateuszb@poczta.onet.pl>2019-01-31 16:36:59 +0100
committerMichael Niedermayer <michael@niedermayer.cc>2019-01-31 17:16:39 +0100
commitfe1ccc1e91168c855a2720d0a195377f4638cc70 (patch)
tree2068b6cd227862342a91ae543d00dae91d149f60 /libavcodec/rscc.c
parent1e03d600542d7e6ccd3ee94062174ae29383bef7 (diff)
libavcodec/rscc.c: add missing semicolon
Signed-off-by: Mateusz Brzostek <mateuszb@poczta.onet.pl> Reviewed-by: James Almer <jamrial@gmail.com> Signed-off-by: Michael Niedermayer <michael@niedermayer.cc>
Diffstat (limited to 'libavcodec/rscc.c')
-rw-r--r--libavcodec/rscc.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/libavcodec/rscc.c b/libavcodec/rscc.c
index e4b51973d8..7d4e842cd3 100644
--- a/libavcodec/rscc.c
+++ b/libavcodec/rscc.c
@@ -64,7 +64,7 @@ typedef struct RsccContext {
/* zlib interaction */
uint8_t *inflated_buf;
uLongf inflated_size;
- int valid_pixels
+ int valid_pixels;
} RsccContext;
static av_cold int rscc_init(AVCodecContext *avctx)