diff options
author | Andreas Rheinhardt <andreas.rheinhardt@gmail.com> | 2021-03-01 06:10:44 +0100 |
---|---|---|
committer | Andreas Rheinhardt <andreas.rheinhardt@gmail.com> | 2021-03-01 06:10:44 +0100 |
commit | 0e645b98c66aafe32517b946a6484eb5579172d4 (patch) | |
tree | 228bd4cbd4d1584f5bc26b8b4a85f346135aa276 /libavcodec/imc.c | |
parent | 590f491b0aefe770876c09c09433c24fc21a1565 (diff) | |
download | ffmpeg-0e645b98c66aafe32517b946a6484eb5579172d4.tar.gz |
Remove double ';'
Signed-off-by: Andreas Rheinhardt <andreas.rheinhardt@gmail.com>
Diffstat (limited to 'libavcodec/imc.c')
-rw-r--r-- | libavcodec/imc.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libavcodec/imc.c b/libavcodec/imc.c index 0f6db8f708..51e7c1b2e1 100644 --- a/libavcodec/imc.c +++ b/libavcodec/imc.c @@ -180,7 +180,7 @@ static av_cold void imc_init_static(void) for (int i = 0, offset = 0; i < 4 ; i++) { for (int j = 0; j < 4; j++) { huffman_vlc[i][j].table = &vlc_tables[offset]; - huffman_vlc[i][j].table_allocated = VLC_TABLES_SIZE - offset;; + huffman_vlc[i][j].table_allocated = VLC_TABLES_SIZE - offset; ff_init_vlc_from_lengths(&huffman_vlc[i][j], IMC_VLC_BITS, imc_huffman_sizes[i], imc_huffman_lens[i][j], 1, imc_huffman_syms[i][j], 1, 1, |