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
d99ed736
Commit
d99ed736
authored
May 16, 2020
by
Paul B Mahol
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
avfilter/vsrc_mandelbrot: unbreak configuring rate value
parent
9c326af1
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
2 additions
and
2 deletions
+2
-2
vsrc_mandelbrot.c
libavfilter/vsrc_mandelbrot.c
+2
-2
No files found.
libavfilter/vsrc_mandelbrot.c
View file @
d99ed736
...
@@ -89,8 +89,8 @@ typedef struct MBContext {
...
@@ -89,8 +89,8 @@ typedef struct MBContext {
static
const
AVOption
mandelbrot_options
[]
=
{
static
const
AVOption
mandelbrot_options
[]
=
{
{
"size"
,
"set frame size"
,
OFFSET
(
w
),
AV_OPT_TYPE_IMAGE_SIZE
,
{.
str
=
"640x480"
},
0
,
0
,
FLAGS
},
{
"size"
,
"set frame size"
,
OFFSET
(
w
),
AV_OPT_TYPE_IMAGE_SIZE
,
{.
str
=
"640x480"
},
0
,
0
,
FLAGS
},
{
"s"
,
"set frame size"
,
OFFSET
(
w
),
AV_OPT_TYPE_IMAGE_SIZE
,
{.
str
=
"640x480"
},
0
,
0
,
FLAGS
},
{
"s"
,
"set frame size"
,
OFFSET
(
w
),
AV_OPT_TYPE_IMAGE_SIZE
,
{.
str
=
"640x480"
},
0
,
0
,
FLAGS
},
{
"rate"
,
"set frame rate"
,
OFFSET
(
frame_rate
),
AV_OPT_TYPE_VIDEO_RATE
,
{.
str
=
"25"
},
0
,
0
,
FLAGS
},
{
"rate"
,
"set frame rate"
,
OFFSET
(
frame_rate
),
AV_OPT_TYPE_VIDEO_RATE
,
{.
str
=
"25"
},
0
,
INT_MAX
,
FLAGS
},
{
"r"
,
"set frame rate"
,
OFFSET
(
frame_rate
),
AV_OPT_TYPE_VIDEO_RATE
,
{.
str
=
"25"
},
0
,
0
,
FLAGS
},
{
"r"
,
"set frame rate"
,
OFFSET
(
frame_rate
),
AV_OPT_TYPE_VIDEO_RATE
,
{.
str
=
"25"
},
0
,
INT_MAX
,
FLAGS
},
{
"maxiter"
,
"set max iterations number"
,
OFFSET
(
maxiter
),
AV_OPT_TYPE_INT
,
{.
i64
=
7189
},
1
,
INT_MAX
,
FLAGS
},
{
"maxiter"
,
"set max iterations number"
,
OFFSET
(
maxiter
),
AV_OPT_TYPE_INT
,
{.
i64
=
7189
},
1
,
INT_MAX
,
FLAGS
},
{
"start_x"
,
"set the initial x position"
,
OFFSET
(
start_x
),
AV_OPT_TYPE_DOUBLE
,
{.
dbl
=-
0
.
743643887037158704752191506114774
},
-
100
,
100
,
FLAGS
},
{
"start_x"
,
"set the initial x position"
,
OFFSET
(
start_x
),
AV_OPT_TYPE_DOUBLE
,
{.
dbl
=-
0
.
743643887037158704752191506114774
},
-
100
,
100
,
FLAGS
},
{
"start_y"
,
"set the initial y position"
,
OFFSET
(
start_y
),
AV_OPT_TYPE_DOUBLE
,
{.
dbl
=-
0
.
131825904205311970493132056385139
},
-
100
,
100
,
FLAGS
},
{
"start_y"
,
"set the initial y position"
,
OFFSET
(
start_y
),
AV_OPT_TYPE_DOUBLE
,
{.
dbl
=-
0
.
131825904205311970493132056385139
},
-
100
,
100
,
FLAGS
},
...
...
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