mirror of
https://git.ffmpeg.org/ffmpeg.git
synced 2026-06-11 08:13:06 +00:00
avcodec/vb: add fall-through annotations
This commit is contained in:
@@ -24,6 +24,7 @@
|
||||
* VB Video decoder
|
||||
*/
|
||||
|
||||
#include "libavutil/attributes.h"
|
||||
#include "libavutil/mem.h"
|
||||
#include "avcodec.h"
|
||||
#include "bytestream.h"
|
||||
@@ -159,6 +160,7 @@ static int vb_decode_framedata(VBDecContext *c, int offset)
|
||||
break;
|
||||
case 1:
|
||||
pattern = ~pattern;
|
||||
av_fallthrough;
|
||||
case 2:
|
||||
a = bytestream2_get_byte(&g);
|
||||
for (y = 0; y < 4; y++)
|
||||
|
||||
Reference in New Issue
Block a user