Skip to content
GitLab
Menu
Projects
Groups
Snippets
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
Menu
Open sidebar
BC
public
external
ffmpeg
Commits
f892013a
Commit
f892013a
authored
Jun 21, 2012
by
Anton Khirnov
Browse files
lavfi: reorder AVFilterContext fields.
Place related fields together, remove holes.
parent
96180805
Changes
1
Hide whitespace changes
Inline
Side-by-side
libavfilter/avfilter.h
View file @
f892013a
...
...
@@ -417,22 +417,21 @@ struct AVFilterContext {
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
unsigned
input_count
;
///< @deprecated use nb_inputs
#endif
AVFilterPad
*
input_pads
;
///< array of input pads
AVFilterLink
**
inputs
;
///< array of pointers to input links
unsigned
nb_inputs
;
///< number of input pads
AVFilterPad
*
output_pads
;
///< array of output pads
AVFilterLink
**
outputs
;
///< array of pointers to output links
#if FF_API_FOO_COUNT
unsigned
output_count
;
///< @deprecated use nb_outputs
#endif
AVFilterPad
*
output_pads
;
///< array of output pads
AVFilterLink
**
outputs
;
///< array of pointers to output links
unsigned
nb_outputs
;
///< number of output pads
void
*
priv
;
///< private data for use by the filter
unsigned
nb_inputs
;
///< number of input pads
unsigned
nb_outputs
;
///< number of output pads
};
/**
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment