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:
authorClément Bœsch <ubitux@gmail.com>2013-04-11 02:54:27 +0400
committerClément Bœsch <ubitux@gmail.com>2013-04-11 03:04:45 +0400
commitd5226fc575781a8066a92f1b635d82b68e4bc9df (patch)
treeeee41dea20400bfb1fef7240396cf510e156482e /libavfilter/vf_stereo3d.c
parenta689a6b698b9c6c97fb64208dc1a71b1f384eb9c (diff)
lavfi/stereo3d: switch to an AVOptions-based system.
Diffstat (limited to 'libavfilter/vf_stereo3d.c')
-rw-r--r--libavfilter/vf_stereo3d.c3
1 files changed, 0 insertions, 3 deletions
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,
};