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
d5226fc5
Commit
d5226fc5
authored
Apr 10, 2013
by
Clément Bœsch
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
lavfi/stereo3d: switch to an AVOptions-based system.
parent
a689a6b6
Show whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
2 additions
and
5 deletions
+2
-5
filters.texi
doc/filters.texi
+1
-2
avfilter.c
libavfilter/avfilter.c
+1
-0
vf_stereo3d.c
libavfilter/vf_stereo3d.c
+0
-3
No files found.
doc/filters.texi
View file @
d5226fc5
...
...
@@ -5181,8 +5181,7 @@ is set.
Convert between different stereoscopic image formats.
This filter accepts the following named options, expressed as a
sequence of @var{key}=@var{value} pairs, separated by ":".
The filters accept the following options:
@table @option
@item in
...
...
libavfilter/avfilter.c
View file @
d5226fc5
...
...
@@ -703,6 +703,7 @@ int avfilter_init_filter(AVFilterContext *filter, const char *args, void *opaque
!
strcmp
(
filter
->
filter
->
name
,
"showspectrum"
)
||
!
strcmp
(
filter
->
filter
->
name
,
"silencedetect"
)
||
!
strcmp
(
filter
->
filter
->
name
,
"smartblur"
)
||
!
strcmp
(
filter
->
filter
->
name
,
"stereo3d"
)
||
!
strcmp
(
filter
->
filter
->
name
,
"subtitles"
)
||
!
strcmp
(
filter
->
filter
->
name
,
"thumbnail"
)
||
!
strcmp
(
filter
->
filter
->
name
,
"transpose"
)
||
...
...
libavfilter/vf_stereo3d.c
View file @
d5226fc5
...
...
@@ -440,8 +440,6 @@ static const AVFilterPad stereo3d_outputs[] = {
{
NULL
}
};
static
const
char
*
const
shorthand
[]
=
{
"in"
,
"out"
,
NULL
};
AVFilter
avfilter_vf_stereo3d
=
{
.
name
=
"stereo3d"
,
.
description
=
NULL_IF_CONFIG_SMALL
(
"Convert video stereoscopic 3D view."
),
...
...
@@ -450,5 +448,4 @@ AVFilter avfilter_vf_stereo3d = {
.
inputs
=
stereo3d_inputs
,
.
outputs
=
stereo3d_outputs
,
.
priv_class
=
&
stereo3d_class
,
.
shorthand
=
shorthand
,
};
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