[FFmpeg-cvslog] avfilter/vf_v360: remove pointless special case when allocating stuff

Paul B Mahol git at videolan.org
Wed Sep 11 17:45:20 EEST 2019


ffmpeg | branch: master | Paul B Mahol <onemda at gmail.com> | Wed Sep 11 16:43:10 2019 +0200| [efc73b13ac397764d381fb8e7a07dd2cdf37ebd3] | committer: Paul B Mahol

avfilter/vf_v360: remove pointless special case when allocating stuff

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

 libavfilter/vf_v360.c | 11 +----------
 1 file changed, 1 insertion(+), 10 deletions(-)

diff --git a/libavfilter/vf_v360.c b/libavfilter/vf_v360.c
index ef4e303109..5b4d81458e 100644
--- a/libavfilter/vf_v360.c
+++ b/libavfilter/vf_v360.c
@@ -2348,22 +2348,13 @@ static int config_output(AVFilterLink *outlink)
         s->nb_allocated = 1;
         s->map[0] = s->map[1] = s->map[2] = s->map[3] = 0;
         allocate_plane(s, sizeof_uv, sizeof_ker, 0);
-    } else if (desc->log2_chroma_h == desc->log2_chroma_w) {
+    } else {
         s->nb_allocated = 2;
         s->map[0] = 0;
         s->map[1] = s->map[2] = 1;
         s->map[3] = 0;
         allocate_plane(s, sizeof_uv, sizeof_ker, 0);
         allocate_plane(s, sizeof_uv, sizeof_ker, 1);
-    } else {
-        s->nb_allocated = 3;
-        s->map[0] = 0;
-        s->map[1] = 1;
-        s->map[2] = 2;
-        s->map[3] = 0;
-        allocate_plane(s, sizeof_uv, sizeof_ker, 0);
-        allocate_plane(s, sizeof_uv, sizeof_ker, 1);
-        allocate_plane(s, sizeof_uv, sizeof_ker, 2);
     }
 
     calculate_rotation_matrix(s->yaw, s->pitch, s->roll, rot_mat, s->rotation_order);



More information about the ffmpeg-cvslog mailing list