Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Contribute to GitLab
Sign in / Register
Toggle navigation
F
ffmpeg.wasm-core
Project
Project
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
Linshizhi
ffmpeg.wasm-core
Commits
2dfd9445
Commit
2dfd9445
authored
Feb 29, 2020
by
Paul B Mahol
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
avfilter/vf_v360: improve tetrahedron input format at frame borders
parent
50a13b98
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
35 additions
and
2 deletions
+35
-2
vf_v360.c
libavfilter/vf_v360.c
+35
-2
No files found.
libavfilter/vf_v360.c
View file @
2dfd9445
...
...
@@ -622,6 +622,39 @@ static inline int mod(int a, int b)
}
}
/**
* Reflect y operation.
*
* @param y input vertical position
* @param h input height
*/
static
inline
int
reflecty
(
int
y
,
int
h
)
{
if
(
y
<
0
)
{
return
-
y
;
}
else
if
(
y
>=
h
)
{
return
2
*
h
-
1
-
y
;
}
return
y
;
}
/**
* Reflect x operation.
*
* @param x input horizontal position
* @param y input vertical position
* @param w input width
* @param h input height
*/
static
inline
int
reflectx
(
int
x
,
int
y
,
int
w
,
int
h
)
{
if
(
y
<
0
||
y
>=
h
)
return
w
-
1
-
x
;
return
mod
(
x
,
w
);
}
/**
* Convert char to corresponding direction.
* Used for cubemap options.
...
...
@@ -2746,8 +2779,8 @@ static int xyz_to_tetrahedron(const V360Context *s,
for
(
int
i
=
0
;
i
<
4
;
i
++
)
{
for
(
int
j
=
0
;
j
<
4
;
j
++
)
{
us
[
i
][
j
]
=
mod
(
ui
+
j
-
1
,
width
);
vs
[
i
][
j
]
=
av_clip
(
vi
+
i
-
1
,
0
,
height
-
1
);
us
[
i
][
j
]
=
reflectx
(
ui
+
j
-
1
,
vi
+
i
-
1
,
width
,
height
);
vs
[
i
][
j
]
=
reflecty
(
vi
+
i
-
1
,
height
);
}
}
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment