mirror of
https://github.com/FFmpeg/FFmpeg.git
synced 2024-11-21 10:55:51 +02:00
avfilter/vf_v360: fill unused regions too for orthographic output format
This commit is contained in:
parent
1616f7fb28
commit
da6aab45e4
@ -2055,13 +2055,20 @@ static int orthographic_to_xyz(const V360Context *s,
|
||||
const float r = hypotf(x, y);
|
||||
const float theta = asinf(r);
|
||||
|
||||
vec[0] = x;
|
||||
vec[1] = y;
|
||||
vec[2] = cosf(theta);
|
||||
if (vec[2] > 0) {
|
||||
vec[0] = x;
|
||||
vec[1] = y;
|
||||
|
||||
normalize_vector(vec);
|
||||
normalize_vector(vec);
|
||||
return 1;
|
||||
} else {
|
||||
vec[0] = 0;
|
||||
vec[1] = 0;
|
||||
vec[2] = 1;
|
||||
|
||||
return 1;
|
||||
return 0;
|
||||
}
|
||||
}
|
||||
|
||||
/**
|
||||
|
Loading…
Reference in New Issue
Block a user