diff mbox series

[FFmpeg-devel] libavcodec/aarch64/hevc: Require consistent use of trailing semicolon

Message ID 20230926125423.8813-1-martin@martin.st
State Accepted
Commit 1762975ba184f4ca84decb2342f60fabaa199962
Headers show
Series [FFmpeg-devel] libavcodec/aarch64/hevc: Require consistent use of trailing semicolon | expand

Checks

Context Check Description
andriy/make_x86 success Make finished
andriy/make_fate_x86 success Make fate finished

Commit Message

Martin Storsjö Sept. 26, 2023, 12:54 p.m. UTC
---
Some patches had inconsistent semicolons when invoking these macros.
By omitting the trailing semicolon in the macro, it requires the
callers to use it consistently.
---
 libavcodec/aarch64/hevcdsp_init_aarch64.c | 6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)

Comments

Martin Storsjö Oct. 23, 2023, 7:43 a.m. UTC | #1
On Tue, 26 Sep 2023, Martin Storsjö wrote:

> ---
> Some patches had inconsistent semicolons when invoking these macros.
> By omitting the trailing semicolon in the macro, it requires the
> callers to use it consistently.
> ---
> libavcodec/aarch64/hevcdsp_init_aarch64.c | 6 +++---
> 1 file changed, 3 insertions(+), 3 deletions(-)

Pushed.

// Martin
diff mbox series

Patch

diff --git a/libavcodec/aarch64/hevcdsp_init_aarch64.c b/libavcodec/aarch64/hevcdsp_init_aarch64.c
index 782cf802f6..d5b973d2e0 100644
--- a/libavcodec/aarch64/hevcdsp_init_aarch64.c
+++ b/libavcodec/aarch64/hevcdsp_init_aarch64.c
@@ -137,20 +137,20 @@  void ff_hevc_put_hevc_qpel_bi_h16_8_neon(uint8_t *_dst, ptrdiff_t _dststride, co
     void ff_hevc_put_hevc_##fn##24_8_neon##ext args; \
     void ff_hevc_put_hevc_##fn##32_8_neon##ext args; \
     void ff_hevc_put_hevc_##fn##48_8_neon##ext args; \
-    void ff_hevc_put_hevc_##fn##64_8_neon##ext args; \
+    void ff_hevc_put_hevc_##fn##64_8_neon##ext args
 
 #define NEON8_FNPROTO_PARTIAL_4(fn, args, ext) \
     void ff_hevc_put_hevc_##fn##4_8_neon##ext args; \
     void ff_hevc_put_hevc_##fn##8_8_neon##ext args; \
     void ff_hevc_put_hevc_##fn##16_8_neon##ext args; \
-    void ff_hevc_put_hevc_##fn##64_8_neon##ext args; \
+    void ff_hevc_put_hevc_##fn##64_8_neon##ext args
 
 #define NEON8_FNPROTO_PARTIAL_5(fn, args, ext) \
     void ff_hevc_put_hevc_##fn##4_8_neon##ext args; \
     void ff_hevc_put_hevc_##fn##8_8_neon##ext args; \
     void ff_hevc_put_hevc_##fn##16_8_neon##ext args; \
     void ff_hevc_put_hevc_##fn##32_8_neon##ext args; \
-    void ff_hevc_put_hevc_##fn##64_8_neon##ext args; \
+    void ff_hevc_put_hevc_##fn##64_8_neon##ext args
 
 NEON8_FNPROTO(pel_uni_pixels, (uint8_t *_dst, ptrdiff_t _dststride,
         const uint8_t *_src, ptrdiff_t _srcstride,