This is an automated email from the git hooks/post-receive script. Git pushed a commit to branch master in repository ffmpeg.
commit 89870d404c8f0f52e9a9c662a4df4639ce6d783d Author: Marvin Scholz <[email protected]> AuthorDate: Wed Feb 18 00:16:51 2026 +0100 Commit: Marvin Scholz <[email protected]> CommitDate: Tue Apr 28 12:29:37 2026 +0000 avformat/aiffdec: add fall-through annotations --- libavformat/aiffdec.c | 3 +++ 1 file changed, 3 insertions(+) diff --git a/libavformat/aiffdec.c b/libavformat/aiffdec.c index 8ae577cb71..63194f2726 100644 --- a/libavformat/aiffdec.c +++ b/libavformat/aiffdec.c @@ -19,6 +19,7 @@ * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA */ +#include "libavutil/attributes.h" #include "libavutil/intreadwrite.h" #include "libavutil/dict.h" #include "libavutil/mem.h" @@ -165,6 +166,7 @@ static int get_aiff_header(AVFormatContext *s, int64_t size, break; case AV_CODEC_ID_ADPCM_G726LE: par->bits_per_coded_sample = 5; + av_fallthrough; case AV_CODEC_ID_ADPCM_IMA_WS: case AV_CODEC_ID_ADPCM_G722: case AV_CODEC_ID_MACE6: @@ -386,6 +388,7 @@ static int aiff_read_header(AVFormatContext *s) case 0: if (offset > 0 && st->codecpar->block_align) // COMM && SSND goto got_sound; + av_fallthrough; default: /* Jump */ avio_skip(pb, size); } _______________________________________________ ffmpeg-cvslog mailing list -- [email protected] To unsubscribe send an email to [email protected]
