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

Git pushed a commit to branch master
in repository ffmpeg.

commit c25c83abf5d844ef8e4583474bc835f46bd1fd8e
Author:     Marvin Scholz <[email protected]>
AuthorDate: Wed Feb 18 00:15:53 2026 +0100
Commit:     Marvin Scholz <[email protected]>
CommitDate: Tue Apr 28 12:29:37 2026 +0000

    avformat/concat: add fall-through annotations
---
 libavformat/concat.c | 2 ++
 1 file changed, 2 insertions(+)

diff --git a/libavformat/concat.c b/libavformat/concat.c
index e1d57de557..d8162b8778 100644
--- a/libavformat/concat.c
+++ b/libavformat/concat.c
@@ -25,6 +25,7 @@
 
 #include "config_components.h"
 
+#include "libavutil/attributes.h"
 #include "libavutil/avstring.h"
 #include "libavutil/bprint.h"
 #include "libavutil/error.h"
@@ -179,6 +180,7 @@ static int64_t concat_seek(URLContext *h, int64_t pos, int 
whence)
         pos += ffurl_seek(nodes[i].uc, 0, SEEK_CUR);
         whence = SEEK_SET;
         /* fall through with the absolute position */
+        av_fallthrough;
     case SEEK_SET:
         for (i = 0; i != data->length - 1 && pos >= nodes[i].size; i++)
             pos -= nodes[i].size;

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

Reply via email to