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:
authorStefano Sabatini <stefasab@gmail.com>2012-11-04 18:44:01 +0400
committerStefano Sabatini <stefasab@gmail.com>2012-11-04 21:01:16 +0400
commit1ba2459fbb5e966a1cf1bcb5a430be931c34f0cc (patch)
tree8ef01e54c1bed088aa815313bfddb930ef6d36d7 /libavfilter
parent1b3dbe3f75a64fce040e863e52b80c3888b30ff1 (diff)
lavfi/scale: declare the filter private class
Allow to show the supported options in the ffmpeg -h full output.
Diffstat (limited to 'libavfilter')
-rw-r--r--libavfilter/vf_scale.c1
1 files changed, 1 insertions, 0 deletions
diff --git a/libavfilter/vf_scale.c b/libavfilter/vf_scale.c
index b259799951..081da851c8 100644
--- a/libavfilter/vf_scale.c
+++ b/libavfilter/vf_scale.c
@@ -484,4 +484,5 @@ AVFilter avfilter_vf_scale = {
.inputs = avfilter_vf_scale_inputs,
.outputs = avfilter_vf_scale_outputs,
+ .priv_class = &scale_class,
};