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
e0fab596
Commit
e0fab596
authored
Sep 02, 2019
by
Paul B Mahol
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
avfilter/vf_v360: set much smaller limit to w/h
parent
067e6323
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
2 additions
and
2 deletions
+2
-2
vf_v360.c
libavfilter/vf_v360.c
+2
-2
No files found.
libavfilter/vf_v360.c
View file @
e0fab596
...
@@ -160,8 +160,8 @@ static const AVOption v360_options[] = {
...
@@ -160,8 +160,8 @@ static const AVOption v360_options[] = {
{
"cubic"
,
"bicubic interpolation"
,
0
,
AV_OPT_TYPE_CONST
,
{.
i64
=
BICUBIC
},
0
,
0
,
FLAGS
,
"interp"
},
{
"cubic"
,
"bicubic interpolation"
,
0
,
AV_OPT_TYPE_CONST
,
{.
i64
=
BICUBIC
},
0
,
0
,
FLAGS
,
"interp"
},
{
"lanc"
,
"lanczos interpolation"
,
0
,
AV_OPT_TYPE_CONST
,
{.
i64
=
LANCZOS
},
0
,
0
,
FLAGS
,
"interp"
},
{
"lanc"
,
"lanczos interpolation"
,
0
,
AV_OPT_TYPE_CONST
,
{.
i64
=
LANCZOS
},
0
,
0
,
FLAGS
,
"interp"
},
{
"lanczos"
,
"lanczos interpolation"
,
0
,
AV_OPT_TYPE_CONST
,
{.
i64
=
LANCZOS
},
0
,
0
,
FLAGS
,
"interp"
},
{
"lanczos"
,
"lanczos interpolation"
,
0
,
AV_OPT_TYPE_CONST
,
{.
i64
=
LANCZOS
},
0
,
0
,
FLAGS
,
"interp"
},
{
"w"
,
"output width"
,
OFFSET
(
width
),
AV_OPT_TYPE_INT
,
{.
i64
=
0
},
0
,
INT
_MAX
,
FLAGS
,
"w"
},
{
"w"
,
"output width"
,
OFFSET
(
width
),
AV_OPT_TYPE_INT
,
{.
i64
=
0
},
0
,
INT16
_MAX
,
FLAGS
,
"w"
},
{
"h"
,
"output height"
,
OFFSET
(
height
),
AV_OPT_TYPE_INT
,
{.
i64
=
0
},
0
,
INT
_MAX
,
FLAGS
,
"h"
},
{
"h"
,
"output height"
,
OFFSET
(
height
),
AV_OPT_TYPE_INT
,
{.
i64
=
0
},
0
,
INT16
_MAX
,
FLAGS
,
"h"
},
{
"in_forder"
,
"input cubemap face order"
,
OFFSET
(
in_forder
),
AV_OPT_TYPE_STRING
,
{.
str
=
"rludfb"
},
0
,
NB_DIRECTIONS
-
1
,
FLAGS
,
"in_forder"
},
{
"in_forder"
,
"input cubemap face order"
,
OFFSET
(
in_forder
),
AV_OPT_TYPE_STRING
,
{.
str
=
"rludfb"
},
0
,
NB_DIRECTIONS
-
1
,
FLAGS
,
"in_forder"
},
{
"out_forder"
,
"output cubemap face order"
,
OFFSET
(
out_forder
),
AV_OPT_TYPE_STRING
,
{.
str
=
"rludfb"
},
0
,
NB_DIRECTIONS
-
1
,
FLAGS
,
"out_forder"
},
{
"out_forder"
,
"output cubemap face order"
,
OFFSET
(
out_forder
),
AV_OPT_TYPE_STRING
,
{.
str
=
"rludfb"
},
0
,
NB_DIRECTIONS
-
1
,
FLAGS
,
"out_forder"
},
{
"in_frot"
,
"input cubemap face rotation"
,
OFFSET
(
in_frot
),
AV_OPT_TYPE_STRING
,
{.
str
=
"000000"
},
0
,
NB_DIRECTIONS
-
1
,
FLAGS
,
"in_frot"
},
{
"in_frot"
,
"input cubemap face rotation"
,
OFFSET
(
in_frot
),
AV_OPT_TYPE_STRING
,
{.
str
=
"000000"
},
0
,
NB_DIRECTIONS
-
1
,
FLAGS
,
"in_frot"
},
...
...
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