mirror of
https://github.com/nyanmisaka/ffmpeg-rockchip.git
synced 2026-01-24 02:20:56 +01:00
avfilter/vf_extractplanes: add missing break; statement
This commit is contained in:
parent
f5cd00bf52
commit
59cb0bd23d
1 changed files with 1 additions and 0 deletions
|
|
@ -284,6 +284,7 @@ static void extract_from_packed(uint8_t *dst, int dst_linesize,
|
|||
dst[x * 2 ] = src[x * step + comp * 2 ];
|
||||
dst[x * 2 + 1] = src[x * step + comp * 2 + 1];
|
||||
}
|
||||
break;
|
||||
case 4:
|
||||
for (x = 0; x < width; x++) {
|
||||
dst[x * 4 ] = src[x * step + comp * 4 ];
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue