diff options
author | Anton Khirnov <anton@khirnov.net> | 2024-10-03 19:15:58 +0200 |
---|---|---|
committer | Anton Khirnov <anton@khirnov.net> | 2024-10-07 10:47:18 +0200 |
commit | b1247e7c1ffc5c95400c2d3adce9406a6c040a8c (patch) | |
tree | 61972b900a8de9e4aad0e5aba5ce47d763b75fe5 /libavfilter/avfilter.h | |
parent | e0eec71a13ed8b930fea708b90de4e2d6cca8083 (diff) | |
download | ffmpeg-b1247e7c1ffc5c95400c2d3adce9406a6c040a8c.tar.gz |
lavfi/avfilter: move AVFilterContext.ready to FFFilterContext
This field is private to the generic filtering code.
Diffstat (limited to 'libavfilter/avfilter.h')
-rw-r--r-- | libavfilter/avfilter.h | 7 |
1 files changed, 4 insertions, 3 deletions
diff --git a/libavfilter/avfilter.h b/libavfilter/avfilter.h index f2c4a64004..1748dd3023 100644 --- a/libavfilter/avfilter.h +++ b/libavfilter/avfilter.h @@ -518,12 +518,13 @@ struct AVFilterContext { */ AVBufferRef *hw_device_ctx; +#if FF_API_CONTEXT_PUBLIC /** - * Ready status of the filter. - * A non-0 value means that the filter needs activating; - * a higher value suggests a more urgent activation. + * @deprecated this field should never have been accessed by callers */ + attribute_deprecated unsigned ready; +#endif /** * Sets the number of extra hardware frames which the filter will |