summaryrefslogtreecommitdiff
path: root/libavfilter/vf_scale.c
diff options
context:
space:
mode:
authorStefano Sabatini <stefasab@gmail.com>2012-11-04 15:44:01 +0100
committerStefano Sabatini <stefasab@gmail.com>2012-11-04 18:01:16 +0100
commit1ba2459fbb5e966a1cf1bcb5a430be931c34f0cc (patch)
tree8ef01e54c1bed088aa815313bfddb930ef6d36d7 /libavfilter/vf_scale.c
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/vf_scale.c')
-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,
};