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 00:18:20 +0400
committerClément Bœsch <ubitux@gmail.com>2013-04-11 01:16:02 +0400
commit8da1f1f2081c615852e036f3f8e45eee07ee3bbc (patch)
tree3bc3c24e3aa744afbe6ea3cee56be1450180f0b9 /libavfilter/vf_colormatrix.c
parent8388e1e2b343e25b3a7de31079557285b7353ebd (diff)
lavfi/colormatrix: switch to an AVOptions-based system.
Diffstat (limited to 'libavfilter/vf_colormatrix.c')
-rw-r--r--libavfilter/vf_colormatrix.c3
1 files changed, 0 insertions, 3 deletions
diff --git a/libavfilter/vf_colormatrix.c b/libavfilter/vf_colormatrix.c
index c57be41559..a161c81809 100644
--- a/libavfilter/vf_colormatrix.c
+++ b/libavfilter/vf_colormatrix.c
@@ -375,8 +375,6 @@ static const AVFilterPad colormatrix_outputs[] = {
{ NULL }
};
-static const char *const shorthand[] = { "src", "dst", NULL };
-
AVFilter avfilter_vf_colormatrix = {
.name = "colormatrix",
.description = NULL_IF_CONFIG_SMALL("Convert color matrix."),
@@ -387,5 +385,4 @@ AVFilter avfilter_vf_colormatrix = {
.inputs = colormatrix_inputs,
.outputs = colormatrix_outputs,
.priv_class = &colormatrix_class,
- .shorthand = shorthand,
};