diff options
author | Anton Khirnov <anton@khirnov.net> | 2013-02-25 21:21:29 +0100 |
---|---|---|
committer | Anton Khirnov <anton@khirnov.net> | 2013-04-09 19:04:57 +0200 |
commit | 7ed833d78ea661d619124fd898547a900f6480bc (patch) | |
tree | 55b7549be44ddc2148d74ae00ab6833840040bd9 /libavfilter/gradfun.h | |
parent | c334c113d4d9e9a41bc38a3e4458d7ab21010401 (diff) | |
download | ffmpeg-7ed833d78ea661d619124fd898547a900f6480bc.tar.gz |
vf_gradfun: switch to an AVOptions-based system.
Diffstat (limited to 'libavfilter/gradfun.h')
-rw-r--r-- | libavfilter/gradfun.h | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/libavfilter/gradfun.h b/libavfilter/gradfun.h index 876579a182..01e9eed697 100644 --- a/libavfilter/gradfun.h +++ b/libavfilter/gradfun.h @@ -26,6 +26,8 @@ /// Holds instance-specific information for gradfun. typedef struct GradFunContext { + const AVClass *class; + float strength; int thresh; ///< threshold for gradient algorithm int radius; ///< blur radius int chroma_w; ///< width of the chroma planes |