Browse Source

avfilter/vf_v360: adjust h for mercator input/output

tags/n4.3
Paul B Mahol 5 years ago
parent
commit
4ba45a95df
1 changed files with 2 additions and 2 deletions
  1. +2
    -2
      libavfilter/vf_v360.c

+ 2
- 2
libavfilter/vf_v360.c View File

@@ -2598,7 +2598,7 @@ static int config_output(AVFilterLink *outlink)
s->in_transform = xyz_to_mercator;
err = 0;
wf = w;
hf = h;
hf = h / 2.f;
break;
case BALL:
s->in_transform = xyz_to_ball;
@@ -2680,7 +2680,7 @@ static int config_output(AVFilterLink *outlink)
s->out_transform = mercator_to_xyz;
prepare_out = NULL;
w = roundf(wf);
h = roundf(hf);
h = roundf(hf * 2.f);
break;
case BALL:
s->out_transform = ball_to_xyz;


Loading…
Cancel
Save