This is an automated email from the git hooks/post-receive script.

Git pushed a commit to branch master
in repository ffmpeg.

commit 9d9b347de7a37153bfb39de05ec4261e1d6d1ada
Author:     Kacper Michajłow <[email protected]>
AuthorDate: Tue Aug 11 21:20:12 2026 +0200
Commit:     Kacper Michajłow <[email protected]>
CommitDate: Wed Aug 12 17:21:07 2026 +0200

    fftools,tools: drop stray semicolons after macro-defined functions
    
    Signed-off-by: Kacper Michajłow <[email protected]>
---
 fftools/ffmpeg_filter.c |  6 +++---
 fftools/ffmpeg_opt.c    | 16 ++++++++--------
 tools/crypto_bench.c    | 10 +++++-----
 3 files changed, 16 insertions(+), 16 deletions(-)

diff --git a/fftools/ffmpeg_filter.c b/fftools/ffmpeg_filter.c
index dc2069360f..9f4cf92229 100644
--- a/fftools/ffmpeg_filter.c
+++ b/fftools/ffmpeg_filter.c
@@ -415,13 +415,13 @@ DEF_CHOOSE_FORMAT(sample_rates, int, sample_rate, 
sample_rates, 0,
                   "%d", )
 
 DEF_CHOOSE_FORMAT(color_spaces, enum AVColorSpace, color_space, color_spaces,
-                  AVCOL_SPC_UNSPECIFIED, "%s", av_color_space_name);
+                  AVCOL_SPC_UNSPECIFIED, "%s", av_color_space_name)
 
 DEF_CHOOSE_FORMAT(color_ranges, enum AVColorRange, color_range, color_ranges,
-                  AVCOL_RANGE_UNSPECIFIED, "%s", av_color_range_name);
+                  AVCOL_RANGE_UNSPECIFIED, "%s", av_color_range_name)
 
 DEF_CHOOSE_FORMAT(alpha_modes, enum AVAlphaMode, alpha_mode, alpha_modes,
-                  AVALPHA_MODE_UNSPECIFIED, "%s", av_alpha_mode_name);
+                  AVALPHA_MODE_UNSPECIFIED, "%s", av_alpha_mode_name)
 
 static void choose_channel_layouts(OutputFilterPriv *ofp, AVBPrint *bprint)
 {
diff --git a/fftools/ffmpeg_opt.c b/fftools/ffmpeg_opt.c
index 9a6b97eb25..12fbd3bda8 100644
--- a/fftools/ffmpeg_opt.c
+++ b/fftools/ffmpeg_opt.c
@@ -234,10 +234,10 @@ void opt_match_per_stream_ ## name(void *logctx, const 
SpecifierOptList *sol,
         *out = sol->opt[ret - 1].u.m;                                          
         \
 }
 
-OPT_MATCH_PER_STREAM(str,   const char *, OPT_TYPE_STRING, str);
-OPT_MATCH_PER_STREAM(int,   int,          OPT_TYPE_INT,    i);
-OPT_MATCH_PER_STREAM(int64, int64_t,      OPT_TYPE_INT64,  i64);
-OPT_MATCH_PER_STREAM(dbl,   double,       OPT_TYPE_DOUBLE, dbl);
+OPT_MATCH_PER_STREAM(str,   const char *, OPT_TYPE_STRING, str)
+OPT_MATCH_PER_STREAM(int,   int,          OPT_TYPE_INT,    i)
+OPT_MATCH_PER_STREAM(int64, int64_t,      OPT_TYPE_INT64,  i64)
+OPT_MATCH_PER_STREAM(dbl,   double,       OPT_TYPE_DOUBLE, dbl)
 
 static unsigned opt_match_per_stream_group(void *logctx, enum OptionType type,
                                            const SpecifierOptList *sol,
@@ -298,10 +298,10 @@ void opt_match_per_stream_group_ ## name(void *logctx, 
const SpecifierOptList *s
         *out = sol->opt[ret - 1].u.m;                                          
              \
 }
 
-OPT_MATCH_PER_STREAM_GROUP(str,   const char *, OPT_TYPE_STRING, str);
-OPT_MATCH_PER_STREAM_GROUP(int,   int,          OPT_TYPE_INT,    i);
-OPT_MATCH_PER_STREAM_GROUP(int64, int64_t,      OPT_TYPE_INT64,  i64);
-OPT_MATCH_PER_STREAM_GROUP(dbl,   double,       OPT_TYPE_DOUBLE, dbl);
+OPT_MATCH_PER_STREAM_GROUP(str,   const char *, OPT_TYPE_STRING, str)
+OPT_MATCH_PER_STREAM_GROUP(int,   int,          OPT_TYPE_INT,    i)
+OPT_MATCH_PER_STREAM_GROUP(int64, int64_t,      OPT_TYPE_INT64,  i64)
+OPT_MATCH_PER_STREAM_GROUP(dbl,   double,       OPT_TYPE_DOUBLE, dbl)
 
 int view_specifier_parse(const char **pspec, ViewSpecifier *vs)
 {
diff --git a/tools/crypto_bench.c b/tools/crypto_bench.c
index 45046a0a90..f8cad2e08c 100644
--- a/tools/crypto_bench.c
+++ b/tools/crypto_bench.c
@@ -105,11 +105,11 @@ static void run_lavu_ ## suffix(uint8_t *output,          
                   \
     av_ ## namespace ## _final(h, output);                                   \
 }
 
-DEFINE_LAVU_MD(sha1,      AVSHA,    sha, 160);
-DEFINE_LAVU_MD(sha256,    AVSHA,    sha, 256);
-DEFINE_LAVU_MD(sha512,    AVSHA512, sha512, 512);
-DEFINE_LAVU_MD(ripemd128, AVRIPEMD, ripemd, 128);
-DEFINE_LAVU_MD(ripemd160, AVRIPEMD, ripemd, 160);
+DEFINE_LAVU_MD(sha1,      AVSHA,    sha, 160)
+DEFINE_LAVU_MD(sha256,    AVSHA,    sha, 256)
+DEFINE_LAVU_MD(sha512,    AVSHA512, sha512, 512)
+DEFINE_LAVU_MD(ripemd128, AVRIPEMD, ripemd, 128)
+DEFINE_LAVU_MD(ripemd160, AVRIPEMD, ripemd, 160)
 
 static void run_lavu_aes128(uint8_t *output,
                             const uint8_t *input, unsigned size)

_______________________________________________
ffmpeg-cvslog mailing list -- [email protected]
To unsubscribe send an email to [email protected]

Reply via email to