Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/videolan/dav1d.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorHugo Beauzée-Luyssen <hugo@videolan.org>2018-09-20 14:58:42 +0300
committerHugo Beauzée-Luyssen <hugo@videolan.org>2018-09-25 12:34:42 +0300
commit8d9a85e089f7793cfab3015ba1b46c0045082a6b (patch)
treed2e54882169a651fb42eea2866ca14ba31e622db /src/loopfilter.h
parentac6c286860faadf501ef44bb0c0f76a27d299b53 (diff)
Remove superfluous semicolon
They are not valid out of a function in ISO C
Diffstat (limited to 'src/loopfilter.h')
-rw-r--r--src/loopfilter.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/loopfilter.h b/src/loopfilter.h
index 4676978..4b8401b 100644
--- a/src/loopfilter.h
+++ b/src/loopfilter.h
@@ -36,7 +36,7 @@
#include "src/levels.h"
#define decl_loopfilter_fn(name) \
-void (name)(pixel *dst, ptrdiff_t stride, int mb_lim, int lim, int hev_thr);
+void (name)(pixel *dst, ptrdiff_t stride, int mb_lim, int lim, int hev_thr)
typedef decl_loopfilter_fn(*loopfilter_fn);
typedef struct Dav1dLoopFilterDSPContext {