diff options
author | Andreas Rheinhardt <andreas.rheinhardt@outlook.com> | 2024-02-14 16:43:35 +0100 |
---|---|---|
committer | Andreas Rheinhardt <andreas.rheinhardt@outlook.com> | 2024-02-18 16:38:09 +0100 |
commit | 40b91eaea954df69f736c4e8f565b80c23bffd0f (patch) | |
tree | 661e5039b54cbc3d1500f47b991de830b2c417fc /libavfilter/avfilter.h | |
parent | 89eea4e19aad9b9dae46731bf87e493e3c6ce1c8 (diff) | |
download | ffmpeg-40b91eaea954df69f736c4e8f565b80c23bffd0f.tar.gz |
avfilter/avfilter: Move init_state to FilterLinkInternal
Signed-off-by: Andreas Rheinhardt <andreas.rheinhardt@outlook.com>
Diffstat (limited to 'libavfilter/avfilter.h')
-rw-r--r-- | libavfilter/avfilter.h | 7 |
1 files changed, 0 insertions, 7 deletions
diff --git a/libavfilter/avfilter.h b/libavfilter/avfilter.h index 1d2909e28d..5c6e34e8fc 100644 --- a/libavfilter/avfilter.h +++ b/libavfilter/avfilter.h @@ -611,13 +611,6 @@ struct AVFilterLink { */ AVFilterFormatsConfig outcfg; - /** stage of the initialization of the link properties (dimensions, etc) */ - enum { - AVLINK_UNINIT = 0, ///< not started - AVLINK_STARTINIT, ///< started, but incomplete - AVLINK_INIT ///< complete - } init_state; - /** * Graph the filter belongs to. */ |