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

Git pushed a commit to branch master
in repository ffmpeg.

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

    avcodec/takdec: add fall-through annotations
---
 libavcodec/takdec.c | 3 +++
 1 file changed, 3 insertions(+)

diff --git a/libavcodec/takdec.c b/libavcodec/takdec.c
index 42a43e8695..ff77c3bfc6 100644
--- a/libavcodec/takdec.c
+++ b/libavcodec/takdec.c
@@ -25,6 +25,7 @@
  * @author Paul B Mahol
  */
 
+#include "libavutil/attributes.h"
 #include "libavutil/internal.h"
 #include "libavutil/mem.h"
 #include "libavutil/mem_internal.h"
@@ -582,6 +583,7 @@ static int decorrelate(TAKDecContext *s, int c1, int c2, 
int length)
     case 4: /* side/left with scale factor */
         FFSWAP(int32_t*, p1, p2);
         FFSWAP(int32_t, bp1, bp2);
+        av_fallthrough;
     case 5: /* side/right with scale factor */
         dshift  = get_bits_esc4(gb);
         dfactor = get_sbits(gb, 10);
@@ -589,6 +591,7 @@ static int decorrelate(TAKDecContext *s, int c1, int c2, 
int length)
         break;
     case 6:
         FFSWAP(int32_t*, p1, p2);
+        av_fallthrough;
     case 7: {
         int length2, order_half, filter_order, dval1, dval2;
         int tmp, x, code_size;

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

Reply via email to