mirror of https://git.ffmpeg.org/ffmpeg.git
lavfi/avfilter: document AVFilterContext.is_disabled as private
Ideally there should be three parts to the filter context - public, private to the filter, and private to generic code, but only the first and the last of these exist currently. Until the second is implemented, this is better than nothing.
This commit is contained in:
parent
4472bddb18
commit
6647e57dcb
|
@ -518,7 +518,12 @@ struct AVFilterContext {
|
|||
*/
|
||||
double *var_values;
|
||||
#endif
|
||||
int is_disabled; ///< the enabled state from the last expression evaluation
|
||||
/**
|
||||
* MUST NOT be accessed from outside avfilter.
|
||||
*
|
||||
* the enabled state from the last expression evaluation
|
||||
*/
|
||||
int is_disabled;
|
||||
|
||||
/**
|
||||
* For filters which will create hardware frames, sets the device the
|
||||
|
|
Loading…
Reference in New Issue