lavfi: Move new field to the end of AVFilterContext

This fixes an accidental ABI break introduced at 8688d3a.
This commit is contained in:
Timo Rothenpieler
2016-06-29 11:44:24 +02:00
parent 4890b0851c
commit 1a75145559
3 changed files with 17 additions and 9 deletions

View File

@@ -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
};
/**