diff options
author | Anton Khirnov <anton@khirnov.net> | 2023-01-06 15:19:53 +0100 |
---|---|---|
committer | Anton Khirnov <anton@khirnov.net> | 2023-01-10 11:52:02 +0100 |
commit | a7b1b4bc2324ceda830b273552014805192f574a (patch) | |
tree | 37013054871df6123902c6351ac7bcde64b85d6c /libavfilter/avfilter.h | |
parent | 018a8b9dc317d25ae0789109f2dde397aa368e76 (diff) | |
download | ffmpeg-a7b1b4bc2324ceda830b273552014805192f574a.tar.gz |
lavfi: remove AVFilter.init_dict()
Nothing uses it anymore.
All options on all filters can now be set with normal AVOptions
mechanisms, such as av_opt_set*().
Diffstat (limited to 'libavfilter/avfilter.h')
-rw-r--r-- | libavfilter/avfilter.h | 13 |
1 files changed, 0 insertions, 13 deletions
diff --git a/libavfilter/avfilter.h b/libavfilter/avfilter.h index 6d68ebece4..c2ec7a4b5f 100644 --- a/libavfilter/avfilter.h +++ b/libavfilter/avfilter.h @@ -277,19 +277,6 @@ typedef struct AVFilter { int (*init)(AVFilterContext *ctx); /** - * Should be set instead of @ref AVFilter.init "init" by the filters that - * want to pass a dictionary of AVOptions to nested contexts that are - * allocated during init. - * - * On return, the options dict should be freed and replaced with one that - * contains all the options which could not be processed by this filter (or - * with NULL if all the options were processed). - * - * Otherwise the semantics is the same as for @ref AVFilter.init "init". - */ - int (*init_dict)(AVFilterContext *ctx, AVDictionary **options); - - /** * Filter uninitialization function. * * Called only once right before the filter is freed. Should deallocate any |