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
83e89223
Commit
83e89223
authored
May 13, 2013
by
Paul B Mahol
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
lavfi/life: switch to AV_OPT_TYPE_COLOR
Signed-off-by:
Paul B Mahol
<
onemda@gmail.com
>
parent
05b7560d
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
3 additions
and
19 deletions
+3
-19
vsrc_life.c
libavfilter/vsrc_life.c
+3
-19
No files found.
libavfilter/vsrc_life.c
View file @
83e89223
...
...
@@ -65,9 +65,6 @@ typedef struct {
uint32_t
random_seed
;
int
stitch
;
int
mold
;
char
*
life_color_str
;
char
*
death_color_str
;
char
*
mold_color_str
;
uint8_t
life_color
[
4
];
uint8_t
death_color
[
4
];
uint8_t
mold_color
[
4
];
...
...
@@ -93,9 +90,9 @@ static const AVOption life_options[] = {
{
"seed"
,
"set the seed for filling the initial grid randomly"
,
OFFSET
(
random_seed
),
AV_OPT_TYPE_INT
,
{.
i64
=-
1
},
-
1
,
UINT32_MAX
,
FLAGS
},
{
"stitch"
,
"stitch boundaries"
,
OFFSET
(
stitch
),
AV_OPT_TYPE_INT
,
{.
i64
=
1
},
0
,
1
,
FLAGS
},
{
"mold"
,
"set mold speed for dead cells"
,
OFFSET
(
mold
),
AV_OPT_TYPE_INT
,
{.
i64
=
0
},
0
,
0xFF
,
FLAGS
},
{
"life_color"
,
"set life color"
,
OFFSET
(
life_color
_str
),
AV_OPT_TYPE_STRING
,
{.
str
=
"white"
},
CHAR_MIN
,
CHAR_MAX
,
FLAGS
},
{
"death_color"
,
"set death color"
,
OFFSET
(
death_color
_str
),
AV_OPT_TYPE_STRING
,
{.
str
=
"black"
},
CHAR_MIN
,
CHAR_MAX
,
FLAGS
},
{
"mold_color"
,
"set mold color"
,
OFFSET
(
mold_color
_str
),
AV_OPT_TYPE_STRING
,
{.
str
=
"black"
},
CHAR_MIN
,
CHAR_MAX
,
FLAGS
},
{
"life_color"
,
"set life color"
,
OFFSET
(
life_color
),
AV_OPT_TYPE_COLOR
,
{.
str
=
"white"
},
CHAR_MIN
,
CHAR_MAX
,
FLAGS
},
{
"death_color"
,
"set death color"
,
OFFSET
(
death_color
),
AV_OPT_TYPE_COLOR
,
{.
str
=
"black"
},
CHAR_MIN
,
CHAR_MAX
,
FLAGS
},
{
"mold_color"
,
"set mold color"
,
OFFSET
(
mold_color
),
AV_OPT_TYPE_COLOR
,
{.
str
=
"black"
},
CHAR_MIN
,
CHAR_MAX
,
FLAGS
},
{
NULL
},
};
...
...
@@ -231,19 +228,6 @@ static int init(AVFilterContext *ctx)
if
((
ret
=
parse_rule
(
&
life
->
born_rule
,
&
life
->
stay_rule
,
life
->
rule_str
,
ctx
))
<
0
)
return
ret
;
#define PARSE_COLOR(name) do { \
if ((ret = av_parse_color(life->name ## _color, life->name ## _color_str, -1, ctx))) { \
av_log(ctx, AV_LOG_ERROR, "Invalid " #name " color '%s'\n", \
life->name ## _color_str); \
return ret; \
} \
av_freep(&life->name ## _color_str); \
} while (0)
PARSE_COLOR
(
life
);
PARSE_COLOR
(
death
);
PARSE_COLOR
(
mold
);
if
(
!
life
->
mold
&&
memcmp
(
life
->
mold_color
,
"
\x00\x00\x00
"
,
3
))
av_log
(
ctx
,
AV_LOG_WARNING
,
"Mold color is set while mold isn't, ignoring the color.
\n
"
);
...
...
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