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

Git pushed a commit to branch master
in repository ffmpeg.

commit afd3f01501a7ea037fac689441aabe81286de607
Author:     Marvin Scholz <[email protected]>
AuthorDate: Tue Feb 17 20:36:31 2026 +0100
Commit:     Marvin Scholz <[email protected]>
CommitDate: Tue Apr 28 12:29:37 2026 +0000

    fftools: replace fall-through comments
---
 fftools/cmdutils.c          | 2 +-
 fftools/ffmpeg_filter.c     | 2 ++
 fftools/textformat/tf_ini.c | 3 ++-
 3 files changed, 5 insertions(+), 2 deletions(-)

diff --git a/fftools/cmdutils.c b/fftools/cmdutils.c
index 2f9bae9f21..9fdd680448 100644
--- a/fftools/cmdutils.c
+++ b/fftools/cmdutils.c
@@ -1267,7 +1267,7 @@ unsigned stream_specifier_match(const StreamSpecifier *ss,
                 break;
             }
         }
-        // fall-through
+        av_fallthrough;
     case STREAM_LIST_GROUP_IDX:
         if (ss->stream_list == STREAM_LIST_GROUP_IDX &&
             ss->list_id >= 0 && ss->list_id < s->nb_stream_groups)
diff --git a/fftools/ffmpeg_filter.c b/fftools/ffmpeg_filter.c
index eed0f06c6d..1240abbde2 100644
--- a/fftools/ffmpeg_filter.c
+++ b/fftools/ffmpeg_filter.c
@@ -27,6 +27,7 @@
 #include "libavfilter/buffersink.h"
 #include "libavfilter/buffersrc.h"
 
+#include "libavutil/attributes.h"
 #include "libavutil/avassert.h"
 #include "libavutil/avstring.h"
 #include "libavutil/bprint.h"
@@ -2572,6 +2573,7 @@ static void video_sync_process(OutputFilterPriv *ofp, 
AVFrame *frame,
             delta0 = 0;
             ofp->next_pts = llrint(sync_ipts);
         }
+        av_fallthrough;
     case VSYNC_CFR:
         // FIXME set to 0.5 after we fix some dts/pts bugs like in avidec.c
         if (frame_drop_threshold && delta < frame_drop_threshold && 
fps->frame_number) {
diff --git a/fftools/textformat/tf_ini.c b/fftools/textformat/tf_ini.c
index 8959785295..d3c69483e4 100644
--- a/fftools/textformat/tf_ini.c
+++ b/fftools/textformat/tf_ini.c
@@ -26,6 +26,7 @@
 
 #include "avtextformat.h"
 
+#include "libavutil/attributes.h"
 #include "libavutil/bprint.h"
 #include "libavutil/opt.h"
 #include "tf_internal.h"
@@ -74,7 +75,7 @@ static char *ini_escape_str(AVBPrint *dst, const char *src)
         case '=':
         case ':':
             av_bprint_chars(dst, '\\', 1);
-            /* fallthrough */
+            av_fallthrough;
         default:
             if ((unsigned char)c < 32)
                 av_bprintf(dst, "\\x00%02x", (unsigned char)c);

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

Reply via email to