]> git.sesse.net Git - ffmpeg/blobdiff - libavfilter/vf_v360.c
avfilter/vf_v360: do not remap alpha plane if that will be overwritten later
[ffmpeg] / libavfilter / vf_v360.c
index 6d476c6392fb822a71704e421a6f39dfcc625a05..de79fcdcf25494293ff78ff1028807fb59c179c6 100644 (file)
@@ -285,7 +285,7 @@ static int remap##ws##_##bits##bit_slice(AVFilterContext *ctx, void *arg, int jo
             const int slice_start = (height *  jobnr     ) / nb_jobs;                                      \
             const int slice_end   = (height * (jobnr + 1)) / nb_jobs;                                      \
                                                                                                            \
-            for (int y = slice_start; y < slice_end; y++) {                                                \
+            for (int y = slice_start; y < slice_end && !mask; y++) {                                       \
                 const int16_t *const u = s->u[map] + y * uv_linesize * ws * ws;                            \
                 const int16_t *const v = s->v[map] + y * uv_linesize * ws * ws;                            \
                 const int16_t *const ker = s->ker[map] + y * uv_linesize * ws * ws;                        \