mirror of
https://github.com/FFmpeg/FFmpeg.git
synced 2024-12-23 12:43:46 +02:00
lavfi: reorder AVFilterContext fields.
Place related fields together, remove holes.
This commit is contained in:
parent
9618080512
commit
f892013ac4
@ -417,22 +417,21 @@ struct AVFilterContext {
|
|||||||
|
|
||||||
char *name; ///< name of this filter instance
|
char *name; ///< name of this filter instance
|
||||||
|
|
||||||
|
AVFilterPad *input_pads; ///< array of input pads
|
||||||
|
AVFilterLink **inputs; ///< array of pointers to input links
|
||||||
#if FF_API_FOO_COUNT
|
#if FF_API_FOO_COUNT
|
||||||
unsigned input_count; ///< @deprecated use nb_inputs
|
unsigned input_count; ///< @deprecated use nb_inputs
|
||||||
#endif
|
#endif
|
||||||
AVFilterPad *input_pads; ///< array of input pads
|
unsigned nb_inputs; ///< number of input pads
|
||||||
AVFilterLink **inputs; ///< array of pointers to input links
|
|
||||||
|
|
||||||
|
AVFilterPad *output_pads; ///< array of output pads
|
||||||
|
AVFilterLink **outputs; ///< array of pointers to output links
|
||||||
#if FF_API_FOO_COUNT
|
#if FF_API_FOO_COUNT
|
||||||
unsigned output_count; ///< @deprecated use nb_outputs
|
unsigned output_count; ///< @deprecated use nb_outputs
|
||||||
#endif
|
#endif
|
||||||
AVFilterPad *output_pads; ///< array of output pads
|
unsigned nb_outputs; ///< number of output pads
|
||||||
AVFilterLink **outputs; ///< array of pointers to output links
|
|
||||||
|
|
||||||
void *priv; ///< private data for use by the filter
|
void *priv; ///< private data for use by the filter
|
||||||
|
|
||||||
unsigned nb_inputs; ///< number of input pads
|
|
||||||
unsigned nb_outputs; ///< number of output pads
|
|
||||||
};
|
};
|
||||||
|
|
||||||
/**
|
/**
|
||||||
|
Loading…
Reference in New Issue
Block a user