diff options
author | Andreas Rheinhardt <andreas.rheinhardt@gmail.com> | 2019-10-07 02:10:30 +0200 |
---|---|---|
committer | Paul B Mahol <onemda@gmail.com> | 2019-10-07 21:15:55 +0200 |
commit | 361fb42e1e53a78a96a8b30ed7c4baff18fa206e (patch) | |
tree | a06273b1080628943cc75bfff617a02180965adb /libavfilter/x86 | |
parent | 0633d87ae6e6a63669d0877aac5a12c22778b0e8 (diff) | |
download | ffmpeg-361fb42e1e53a78a96a8b30ed7c4baff18fa206e.tar.gz |
avcodec/filter: Remove extra '; ' outside of functions
They are not allowed outside of functions. Fixes the warning
"ISO C does not allow extra ‘;’ outside of a function [-Wpedantic]"
when compiling with GCC and -pedantic.
Signed-off-by: Andreas Rheinhardt <andreas.rheinhardt@gmail.com>
Diffstat (limited to 'libavfilter/x86')
-rw-r--r-- | libavfilter/x86/scene_sad_init.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/libavfilter/x86/scene_sad_init.c b/libavfilter/x86/scene_sad_init.c index f8104dcb4f..2c3729ceee 100644 --- a/libavfilter/x86/scene_sad_init.c +++ b/libavfilter/x86/scene_sad_init.c @@ -37,9 +37,9 @@ static void FUNC_NAME(SCENE_SAD_PARAMS) { \ } #if HAVE_X86ASM -SCENE_SAD_FUNC(scene_sad_sse2, ff_scene_sad_sse2, 16); +SCENE_SAD_FUNC(scene_sad_sse2, ff_scene_sad_sse2, 16) #if HAVE_AVX2_EXTERNAL -SCENE_SAD_FUNC(scene_sad_avx2, ff_scene_sad_avx2, 32); +SCENE_SAD_FUNC(scene_sad_avx2, ff_scene_sad_avx2, 32) #endif #endif |