diff options
author | Michael Niedermayer <michaelni@gmx.at> | 2013-05-08 21:58:40 +0200 |
---|---|---|
committer | Michael Niedermayer <michaelni@gmx.at> | 2013-05-08 23:55:06 +0200 |
commit | df9f9caba58aeac461abb1232b46adbd93df7ed2 (patch) | |
tree | c498feb5829cdd3c82be70d926feb5f5741a99bf /libavfilter/avfilter.h | |
parent | c4a5499d259b12748a41ec056f3594eb7a00efbf (diff) | |
download | ffmpeg-df9f9caba58aeac461abb1232b46adbd93df7ed2.tar.gz |
avfilter: Make enabled/disabled state available as a field of the AVFilterContext
Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
Diffstat (limited to 'libavfilter/avfilter.h')
-rw-r--r-- | libavfilter/avfilter.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/libavfilter/avfilter.h b/libavfilter/avfilter.h index e7e979eed1..931433530b 100644 --- a/libavfilter/avfilter.h +++ b/libavfilter/avfilter.h @@ -570,6 +570,7 @@ struct AVFilterContext { char *enable_str; ///< enable expression string void *enable; ///< parsed expression (AVExpr*) double *var_values; ///< variable values for the enable expression + int is_disabled; ///< the enabled state from the last expression evaluation }; /** |