diff options
author | Anton Khirnov <anton@khirnov.net> | 2013-02-25 21:21:29 +0100 |
---|---|---|
committer | Anton Khirnov <anton@khirnov.net> | 2013-04-09 18:45:37 +0200 |
commit | b439c992c23f3e0f3832fffd2a34a664b236c525 (patch) | |
tree | b2c5c664c5458925bac0ba3e2f61de0df0609608 /libavfilter/avfilter.h | |
parent | 56c1b9257698719bca9e87df843e7933434d6efa (diff) | |
download | ffmpeg-b439c992c23f3e0f3832fffd2a34a664b236c525.tar.gz |
lavfi: switch to an AVOptions-based system.
Diffstat (limited to 'libavfilter/avfilter.h')
-rw-r--r-- | libavfilter/avfilter.h | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/libavfilter/avfilter.h b/libavfilter/avfilter.h index b3522f87d3..66f57df150 100644 --- a/libavfilter/avfilter.h +++ b/libavfilter/avfilter.h @@ -388,6 +388,12 @@ typedef struct AVFilter { const AVFilterPad *inputs; ///< NULL terminated list of inputs. NULL if none const AVFilterPad *outputs; ///< NULL terminated list of outputs. NULL if none + /** + * A class for the private data, used to access filter private + * AVOptions. + */ + const AVClass *priv_class; + /***************************************************************** * All fields below this line are not part of the public API. They * may not be used outside of libavfilter and can be changed and |