Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/FFmpeg/FFmpeg.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorTimo Rothenpieler <timo@rothenpieler.org>2022-09-27 20:35:37 +0300
committerTimo Rothenpieler <timo@rothenpieler.org>2022-09-27 20:35:49 +0300
commit59cb0bd23d61f6ea3bfd86558346e2720aba7f06 (patch)
treeb607cc105583737ae89777e8063f024738f91792 /libavfilter/vf_extractplanes.c
parentf5cd00bf5265cb1d10de925c4d0b3ebb191f0d74 (diff)
avfilter/vf_extractplanes: add missing break; statement
Diffstat (limited to 'libavfilter/vf_extractplanes.c')
-rw-r--r--libavfilter/vf_extractplanes.c1
1 files changed, 1 insertions, 0 deletions
diff --git a/libavfilter/vf_extractplanes.c b/libavfilter/vf_extractplanes.c
index 3c794eaa28..08737d6415 100644
--- a/libavfilter/vf_extractplanes.c
+++ b/libavfilter/vf_extractplanes.c
@@ -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 ];