|
|
|
@ -344,6 +344,13 @@ struct AVFilterContext { |
|
|
|
|
*/ |
|
|
|
|
AVFilterInternal *internal; |
|
|
|
|
|
|
|
|
|
struct AVFilterCommand *command_queue; |
|
|
|
|
|
|
|
|
|
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
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* For filters which will create hardware frames, sets the device the |
|
|
|
|
* filter should create them in. All other filters will ignore this field: |
|
|
|
@ -352,13 +359,6 @@ struct AVFilterContext { |
|
|
|
|
* hardware context information. |
|
|
|
|
*/ |
|
|
|
|
AVBufferRef *hw_device_ctx; |
|
|
|
|
|
|
|
|
|
struct AVFilterCommand *command_queue; |
|
|
|
|
|
|
|
|
|
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
|
|
|
|
|
}; |
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|