summaryrefslogtreecommitdiff
path: root/libavfilter/vf_vmafmotion.c
diff options
context:
space:
mode:
authorAndreas Rheinhardt <andreas.rheinhardt@gmail.com>2019-10-07 02:10:30 +0200
committerPaul B Mahol <onemda@gmail.com>2019-10-07 21:15:55 +0200
commit361fb42e1e53a78a96a8b30ed7c4baff18fa206e (patch)
treea06273b1080628943cc75bfff617a02180965adb /libavfilter/vf_vmafmotion.c
parent0633d87ae6e6a63669d0877aac5a12c22778b0e8 (diff)
downloadffmpeg-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/vf_vmafmotion.c')
-rw-r--r--libavfilter/vf_vmafmotion.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/libavfilter/vf_vmafmotion.c b/libavfilter/vf_vmafmotion.c
index 5c2a974538..88d0b35095 100644
--- a/libavfilter/vf_vmafmotion.c
+++ b/libavfilter/vf_vmafmotion.c
@@ -176,8 +176,8 @@ static void convolution_y_##bits##bit(const uint16_t *filter, int filt_w, \
} \
}
-conv_y_fn(uint8_t, 8);
-conv_y_fn(uint16_t, 10);
+conv_y_fn(uint8_t, 8)
+conv_y_fn(uint16_t, 10)
static void vmafmotiondsp_init(VMAFMotionDSPContext *dsp, int bpp) {
dsp->convolution_x = convolution_x;