[FFmpeg-cvslog] avfilter/vf_v360: move map variable up

Paul B Mahol git at videolan.org
Sun Jan 19 20:56:23 EET 2020


ffmpeg | branch: master | Paul B Mahol <onemda at gmail.com> | Sat Jan 18 19:44:03 2020 +0100| [ff5e241bca43c7092a2f32a5d9ef8a7564f10933] | committer: Paul B Mahol

avfilter/vf_v360: move map variable up

> http://git.videolan.org/gitweb.cgi/ffmpeg.git/?a=commit;h=ff5e241bca43c7092a2f32a5d9ef8a7564f10933
---

 libavfilter/vf_v360.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/libavfilter/vf_v360.c b/libavfilter/vf_v360.c
index fcbb969aef..e8b128e8a7 100644
--- a/libavfilter/vf_v360.c
+++ b/libavfilter/vf_v360.c
@@ -242,6 +242,7 @@ static int remap##ws##_##bits##bit_slice(AVFilterContext *ctx, void *arg, int jo
                                                                                                            \
     for (int stereo = 0; stereo < 1 + s->out_stereo > STEREO_2D; stereo++) {                               \
         for (int plane = 0; plane < s->nb_planes; plane++) {                                               \
+            const unsigned map = s->map[plane];                                                            \
             const int in_linesize  = in->linesize[plane];                                                  \
             const int out_linesize = out->linesize[plane];                                                 \
             const int uv_linesize = s->uv_linesize[plane];                                                 \
@@ -259,7 +260,6 @@ static int remap##ws##_##bits##bit_slice(AVFilterContext *ctx, void *arg, int jo
             const int slice_end   = (height * (jobnr + 1)) / nb_jobs;                                      \
                                                                                                            \
             for (int y = slice_start; y < slice_end; y++) {                                                \
-                const unsigned map = s->map[plane];                                                        \
                 const uint16_t *const u = s->u[map] + y * uv_linesize * ws * ws;                           \
                 const uint16_t *const v = s->v[map] + y * uv_linesize * ws * ws;                           \
                 const int16_t *const ker = s->ker[map] + y * uv_linesize * ws * ws;                        \



More information about the ffmpeg-cvslog mailing list