diff options
author | Stefano Sabatini <stefasab@gmail.com> | 2012-11-04 15:44:01 +0100 |
---|---|---|
committer | Stefano Sabatini <stefasab@gmail.com> | 2012-11-04 18:01:16 +0100 |
commit | 1ba2459fbb5e966a1cf1bcb5a430be931c34f0cc (patch) | |
tree | 8ef01e54c1bed088aa815313bfddb930ef6d36d7 | |
parent | 1b3dbe3f75a64fce040e863e52b80c3888b30ff1 (diff) | |
download | ffmpeg-1ba2459fbb5e966a1cf1bcb5a430be931c34f0cc.tar.gz |
lavfi/scale: declare the filter private class
Allow to show the supported options in the ffmpeg -h full output.
-rw-r--r-- | libavfilter/vf_scale.c | 1 |
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, }; |