diff options
author | Clément Bœsch <ubitux@gmail.com> | 2012-11-28 23:36:50 +0100 |
---|---|---|
committer | Clément Bœsch <ubitux@gmail.com> | 2012-11-29 00:50:37 +0100 |
commit | a5b765236bc542d971131f3cf34ba14486a4c420 (patch) | |
tree | fd30c647025b59f5bbe2949a87b0dba1ea92c16c /libavfilter/vf_edgedetect.c | |
parent | 8a12c96d27122e74b85ed11df3501341060f9285 (diff) | |
download | ffmpeg-a5b765236bc542d971131f3cf34ba14486a4c420.tar.gz |
lavfi: add priv_class for some forgotten filters.
This allows to print the options available when using commands such as
ffmpeg -help full.
Diffstat (limited to 'libavfilter/vf_edgedetect.c')
-rw-r--r-- | libavfilter/vf_edgedetect.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/libavfilter/vf_edgedetect.c b/libavfilter/vf_edgedetect.c index b3a906b609..5837cccdfe 100644 --- a/libavfilter/vf_edgedetect.c +++ b/libavfilter/vf_edgedetect.c @@ -327,4 +327,5 @@ AVFilter avfilter_vf_edgedetect = { .query_formats = query_formats, .inputs = edgedetect_inputs, .outputs = edgedetect_outputs, + .priv_class = &edgedetect_class, }; |