mirror of
https://github.com/FFmpeg/FFmpeg.git
synced 2024-12-23 12:43:46 +02:00
lavfi: reorder AVFilter fields.
Place related fields together, remove holes, move private fields to the end and mark them as private.
This commit is contained in:
parent
f14e685609
commit
9618080512
@ -366,7 +366,22 @@ enum AVMediaType avfilter_pad_get_type(AVFilterPad *pads, int pad_idx);
|
|||||||
typedef struct AVFilter {
|
typedef struct AVFilter {
|
||||||
const char *name; ///< filter name
|
const char *name; ///< filter name
|
||||||
|
|
||||||
int priv_size; ///< size of private data to allocate for the filter
|
/**
|
||||||
|
* A description for the filter. You should use the
|
||||||
|
* NULL_IF_CONFIG_SMALL() macro to define it.
|
||||||
|
*/
|
||||||
|
const char *description;
|
||||||
|
|
||||||
|
const AVFilterPad *inputs; ///< NULL terminated list of inputs. NULL if none
|
||||||
|
const AVFilterPad *outputs; ///< NULL terminated list of outputs. NULL if none
|
||||||
|
|
||||||
|
/*****************************************************************
|
||||||
|
* All fields below this line are not part of the public API. They
|
||||||
|
* may not be used outside of libavfilter and can be changed and
|
||||||
|
* removed at will.
|
||||||
|
* New public fields should be added right above.
|
||||||
|
*****************************************************************
|
||||||
|
*/
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Filter initialization function. Args contains the user-supplied
|
* Filter initialization function. Args contains the user-supplied
|
||||||
@ -391,14 +406,7 @@ typedef struct AVFilter {
|
|||||||
*/
|
*/
|
||||||
int (*query_formats)(AVFilterContext *);
|
int (*query_formats)(AVFilterContext *);
|
||||||
|
|
||||||
const AVFilterPad *inputs; ///< NULL terminated list of inputs. NULL if none
|
int priv_size; ///< size of private data to allocate for the filter
|
||||||
const AVFilterPad *outputs; ///< NULL terminated list of outputs. NULL if none
|
|
||||||
|
|
||||||
/**
|
|
||||||
* A description for the filter. You should use the
|
|
||||||
* NULL_IF_CONFIG_SMALL() macro to define it.
|
|
||||||
*/
|
|
||||||
const char *description;
|
|
||||||
} AVFilter;
|
} AVFilter;
|
||||||
|
|
||||||
/** An instance of a filter */
|
/** An instance of a filter */
|
||||||
|
Loading…
Reference in New Issue
Block a user