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
51a2f021
Commit
51a2f021
authored
Sep 22, 2019
by
Paul B Mahol
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
avfilter/vf_v360: add fixed pixel padding options
parent
79d14a3c
Expand all
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
67 additions
and
26 deletions
+67
-26
filters.texi
doc/filters.texi
+6
-0
v360.h
libavfilter/v360.h
+4
-0
vf_v360.c
libavfilter/vf_v360.c
+57
-26
No files found.
doc/filters.texi
View file @
51a2f021
...
...
@@ -17961,6 +17961,12 @@ No padding.
Default value is @b{@samp{0}}.
@item fin_pad
@item fout_pad
Set fixed padding for the input/output cubemap. Values in pixels.
Default value is @b{@samp{0}}. If greater than zero it overrides other padding options.
@item in_forder
@item out_forder
Set order of faces for the input/output cubemap. Choose one direction for each position.
...
...
libavfilter/v360.h
View file @
51a2f021
...
...
@@ -114,6 +114,7 @@ typedef struct V360Context {
int
in_stereo
,
out_stereo
;
float
in_pad
,
out_pad
;
int
fin_pad
,
fout_pad
;
float
yaw
,
pitch
,
roll
;
...
...
@@ -129,6 +130,9 @@ typedef struct V360Context {
float
input_mirror_modifier
[
2
];
float
output_mirror_modifier
[
3
];
int
in_width
,
in_height
;
int
out_width
,
out_height
;
int
pr_width
[
4
],
pr_height
[
4
];
int
in_offset_w
[
4
],
in_offset_h
[
4
];
...
...
libavfilter/vf_v360.c
View file @
51a2f021
This diff is collapsed.
Click to expand it.
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