This is an automated email from the git hooks/post-receive script. Git pushed a commit to branch master in repository ffmpeg.
commit d4d5ac3bb260386ba3f98a0169182d62add6c250 Author: Marvin Scholz <[email protected]> AuthorDate: Wed Feb 18 00:21:53 2026 +0100 Commit: Marvin Scholz <[email protected]> CommitDate: Tue Apr 28 12:29:37 2026 +0000 avcodec/gdv: add fall-through annotations --- libavcodec/gdv.c | 2 ++ 1 file changed, 2 insertions(+) diff --git a/libavcodec/gdv.c b/libavcodec/gdv.c index 670597448b..0abf5471ef 100644 --- a/libavcodec/gdv.c +++ b/libavcodec/gdv.c @@ -20,6 +20,7 @@ * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA */ +#include "libavutil/attributes.h" #include "libavutil/common.h" #include "libavutil/mem.h" #include "avcodec.h" @@ -488,6 +489,7 @@ static int gdv_decode_frame(AVCodecContext *avctx, AVFrame *frame, switch (compression) { case 1: memset(gdv->frame + PREAMBLE_SIZE, 0, gdv->frame_size - PREAMBLE_SIZE); + av_fallthrough; case 0: for (i = 0; i < 256; i++) { unsigned r = bytestream2_get_byte(gb); _______________________________________________ ffmpeg-cvslog mailing list -- [email protected] To unsubscribe send an email to [email protected]
