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

github.com/mpc-hc/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:57:35 +0400
committerClément Bœsch <ubitux@gmail.com>2013-04-11 03:04:45 +0400
commitb2d589188f36cc69ffb8148810dc706d82dcebf6 (patch)
tree8adcddbb4fa273dbf2656894c630847dfdfff675 /libavfilter/vf_histogram.c
parentd5226fc575781a8066a92f1b635d82b68e4bc9df (diff)
lavfi/histogram: switch to an AVOptions-based system.
Diffstat (limited to 'libavfilter/vf_histogram.c')
-rw-r--r--libavfilter/vf_histogram.c3
1 files changed, 0 insertions, 3 deletions
diff --git a/libavfilter/vf_histogram.c b/libavfilter/vf_histogram.c
index b9cba6be1a..3c348858a6 100644
--- a/libavfilter/vf_histogram.c
+++ b/libavfilter/vf_histogram.c
@@ -311,8 +311,6 @@ static const AVFilterPad outputs[] = {
{ NULL }
};
-static const char *const shorthand[] = { NULL };
-
AVFilter avfilter_vf_histogram = {
.name = "histogram",
.description = NULL_IF_CONFIG_SMALL("Compute and draw a histogram."),
@@ -321,5 +319,4 @@ AVFilter avfilter_vf_histogram = {
.inputs = inputs,
.outputs = outputs,
.priv_class = &histogram_class,
- .shorthand = shorthand,
};