diff options
author | Ganesh Ajjanagadde <gajjanagadde@gmail.com> | 2015-10-23 11:23:42 -0400 |
---|---|---|
committer | Ganesh Ajjanagadde <gajjanagadde@gmail.com> | 2015-10-24 17:58:17 -0400 |
commit | 38f4e973efef944b1a7e751626f6864f60e69fb4 (patch) | |
tree | ee8f9316a451af514d00b7ee3bc88164c6fa9318 /libavcodec/x86/vp9dsp_init.c | |
parent | 4c96985af1b8870482b6b6ef9120960633f62cee (diff) | |
download | ffmpeg-38f4e973efef944b1a7e751626f6864f60e69fb4.tar.gz |
all: fix -Wextra-semi reported on clang
This fixes extra semicolons that clang 3.7 on GNU/Linux warns about.
These were trigggered when built under -Wpedantic, which essentially
checks for strict ISO compliance in numerous ways.
Reviewed-by: Michael Niedermayer <michael@niedermayer.cc>
Signed-off-by: Ganesh Ajjanagadde <gajjanagadde@gmail.com>
Diffstat (limited to 'libavcodec/x86/vp9dsp_init.c')
-rw-r--r-- | libavcodec/x86/vp9dsp_init.c | 14 |
1 files changed, 7 insertions, 7 deletions
diff --git a/libavcodec/x86/vp9dsp_init.c b/libavcodec/x86/vp9dsp_init.c index 2347a4729c..8efb18c89f 100644 --- a/libavcodec/x86/vp9dsp_init.c +++ b/libavcodec/x86/vp9dsp_init.c @@ -53,16 +53,16 @@ decl_mc_funcs(16, ssse3, int8_t, 32, 8); decl_mc_funcs(32, avx2, int8_t, 32, 8); #endif -mc_rep_funcs(16, 8, 8, sse2, int16_t, 8, 8); +mc_rep_funcs(16, 8, 8, sse2, int16_t, 8, 8) #if ARCH_X86_32 -mc_rep_funcs(16, 8, 8, ssse3, int8_t, 32, 8); +mc_rep_funcs(16, 8, 8, ssse3, int8_t, 32, 8) #endif -mc_rep_funcs(32, 16, 16, sse2, int16_t, 8, 8); -mc_rep_funcs(32, 16, 16, ssse3, int8_t, 32, 8); -mc_rep_funcs(64, 32, 32, sse2, int16_t, 8, 8); -mc_rep_funcs(64, 32, 32, ssse3, int8_t, 32, 8); +mc_rep_funcs(32, 16, 16, sse2, int16_t, 8, 8) +mc_rep_funcs(32, 16, 16, ssse3, int8_t, 32, 8) +mc_rep_funcs(64, 32, 32, sse2, int16_t, 8, 8) +mc_rep_funcs(64, 32, 32, ssse3, int8_t, 32, 8) #if ARCH_X86_64 && HAVE_AVX2_EXTERNAL -mc_rep_funcs(64, 32, 32, avx2, int8_t, 32, 8); +mc_rep_funcs(64, 32, 32, avx2, int8_t, 32, 8) #endif extern const int8_t ff_filters_ssse3[3][15][4][32]; |