OSDN Git Service

lavfi: reorder AVFilterContext fields.
authorAnton Khirnov <anton@khirnov.net>
Thu, 21 Jun 2012 09:48:58 +0000 (11:48 +0200)
committerAnton Khirnov <anton@khirnov.net>
Tue, 26 Jun 2012 11:24:36 +0000 (13:24 +0200)
Place related fields together, remove holes.

libavfilter/avfilter.h

index bbbc53e..1761488 100644 (file)
@@ -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
 };
 
 /**