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
169880e3
Commit
169880e3
authored
Apr 10, 2013
by
Clément Bœsch
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
lavfi/cellauto: switch to an AVOptions-based system.
parent
2040b428
Show whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
2 additions
and
9 deletions
+2
-9
filters.texi
doc/filters.texi
+1
-3
avfilter.c
libavfilter/avfilter.c
+1
-0
vsrc_cellauto.c
libavfilter/vsrc_cellauto.c
+0
-6
No files found.
doc/filters.texi
View file @
169880e3
...
...
@@ -5813,9 +5813,7 @@ At each new frame a new row in the video is filled with the result of
the cellular automaton next generation. The behavior when the whole
frame is filled is defined by the @option{scroll} option.
This source accepts a list of options in the form of
@var{key}=@var{value} pairs separated by ":". A description of the
accepted options follows.
This source accepts the following options:
@table @option
@item filename, f
...
...
libavfilter/avfilter.c
View file @
169880e3
...
...
@@ -660,6 +660,7 @@ int avfilter_init_filter(AVFilterContext *filter, const char *args, void *opaque
!
strcmp
(
filter
->
filter
->
name
,
"ass"
)
||
!
strcmp
(
filter
->
filter
->
name
,
"blackframe"
)
||
!
strcmp
(
filter
->
filter
->
name
,
"boxblur"
)
||
!
strcmp
(
filter
->
filter
->
name
,
"cellauto"
)
||
!
strcmp
(
filter
->
filter
->
name
,
"colormatrix"
)
||
!
strcmp
(
filter
->
filter
->
name
,
"crop"
)
||
!
strcmp
(
filter
->
filter
->
name
,
"cropdetect"
)
||
...
...
libavfilter/vsrc_cellauto.c
View file @
169880e3
...
...
@@ -164,12 +164,6 @@ static int init(AVFilterContext *ctx, const char *args)
CellAutoContext
*
cellauto
=
ctx
->
priv
;
int
ret
;
cellauto
->
class
=
&
cellauto_class
;
av_opt_set_defaults
(
cellauto
);
if
((
ret
=
av_set_options_string
(
cellauto
,
args
,
"="
,
":"
))
<
0
)
return
ret
;
if
(
!
cellauto
->
w
&&
!
cellauto
->
filename
&&
!
cellauto
->
pattern
)
av_opt_set
(
cellauto
,
"size"
,
"320x518"
,
0
);
...
...
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