This is an automated email from the git hooks/post-receive script. Git pushed a commit to branch master in repository ffmpeg.
commit 337a3fba9d97f0f5b3773d97739a22d060461089 Author: Marvin Scholz <[email protected]> AuthorDate: Wed Feb 18 00:15:26 2026 +0100 Commit: Marvin Scholz <[email protected]> CommitDate: Tue Apr 28 12:29:37 2026 +0000 avformat/epafdec: add fall-through annotations --- libavformat/epafdec.c | 2 ++ 1 file changed, 2 insertions(+) diff --git a/libavformat/epafdec.c b/libavformat/epafdec.c index f2701b60ca..f897737b60 100644 --- a/libavformat/epafdec.c +++ b/libavformat/epafdec.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 "libavcodec/internal.h" #include "avformat.h" @@ -80,6 +81,7 @@ static int epaf_read_header(AVFormatContext *s) break; case 1: avpriv_request_sample(s, "24-bit Paris PCM format"); + av_fallthrough; default: return AVERROR_INVALIDDATA; } _______________________________________________ ffmpeg-cvslog mailing list -- [email protected] To unsubscribe send an email to [email protected]
