avutil: add fall-through annotations

This commit is contained in:
Marvin Scholz
2026-02-17 21:23:07 +01:00
parent b50a586583
commit ce740510aa

View File

@@ -694,6 +694,7 @@ av_channel_layout_channel_from_index(const AVChannelLayout *channel_layout,
if ((1ULL << i) & channel_layout->u.mask && !idx--)
return i;
}
av_fallthrough;
default:
return AV_CHAN_NONE;
}