Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/FFmpeg/FFmpeg.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--doc/filters.texi3
-rw-r--r--libavfilter/avfilter.c1
-rw-r--r--libavfilter/vf_stereo3d.c3
3 files changed, 2 insertions, 5 deletions
diff --git a/doc/filters.texi b/doc/filters.texi
index e25a49adf1..8616be76d0 100644
--- a/doc/filters.texi
+++ b/doc/filters.texi
@@ -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
diff --git a/libavfilter/avfilter.c b/libavfilter/avfilter.c
index 5dff27adcd..e6d7f05301 100644
--- a/libavfilter/avfilter.c
+++ b/libavfilter/avfilter.c
@@ -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") ||
diff --git a/libavfilter/vf_stereo3d.c b/libavfilter/vf_stereo3d.c
index 156470f0c0..c7f39e6683 100644
--- a/libavfilter/vf_stereo3d.c
+++ b/libavfilter/vf_stereo3d.c
@@ -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,
};