avfilter/vf_v360: adjust h for mercator input/output
This commit is contained in:
parent
043038ea56
commit
4ba45a95df
@ -2598,7 +2598,7 @@ static int config_output(AVFilterLink *outlink)
|
|||||||
s->in_transform = xyz_to_mercator;
|
s->in_transform = xyz_to_mercator;
|
||||||
err = 0;
|
err = 0;
|
||||||
wf = w;
|
wf = w;
|
||||||
hf = h;
|
hf = h / 2.f;
|
||||||
break;
|
break;
|
||||||
case BALL:
|
case BALL:
|
||||||
s->in_transform = xyz_to_ball;
|
s->in_transform = xyz_to_ball;
|
||||||
@ -2680,7 +2680,7 @@ static int config_output(AVFilterLink *outlink)
|
|||||||
s->out_transform = mercator_to_xyz;
|
s->out_transform = mercator_to_xyz;
|
||||||
prepare_out = NULL;
|
prepare_out = NULL;
|
||||||
w = roundf(wf);
|
w = roundf(wf);
|
||||||
h = roundf(hf);
|
h = roundf(hf * 2.f);
|
||||||
break;
|
break;
|
||||||
case BALL:
|
case BALL:
|
||||||
s->out_transform = ball_to_xyz;
|
s->out_transform = ball_to_xyz;
|
||||||
|
Loading…
x
Reference in New Issue
Block a user