]> rtime.felk.cvut.cz Git - frescor/ffmpeg.git/commitdiff
Move the description field of the filter from AVFilterContext to
authorstefano <stefano@9553f0bf-9b14-0410-a0b8-cfaf0461ba5b>
Thu, 22 Oct 2009 23:03:25 +0000 (23:03 +0000)
committerstefano <stefano@9553f0bf-9b14-0410-a0b8-cfaf0461ba5b>
Thu, 22 Oct 2009 23:03:25 +0000 (23:03 +0000)
AVFilter, where it should have had defined the first time.
+10L.

git-svn-id: file:///var/local/repositories/ffmpeg/trunk@20356 9553f0bf-9b14-0410-a0b8-cfaf0461ba5b

libavfilter/avfilter.h

index 18a8b80be1fb72260e417026c54718f67750071d..c66d8f896c3b6eca9fe873a9a15d83c506335c96 100644 (file)
@@ -24,7 +24,7 @@
 
 #define LIBAVFILTER_VERSION_MAJOR  1
 #define LIBAVFILTER_VERSION_MINOR  4
-#define LIBAVFILTER_VERSION_MICRO  0
+#define LIBAVFILTER_VERSION_MICRO  1
 
 #define LIBAVFILTER_VERSION_INT AV_VERSION_INT(LIBAVFILTER_VERSION_MAJOR, \
                                                LIBAVFILTER_VERSION_MINOR, \
@@ -406,6 +406,12 @@ typedef struct
 
     const AVFilterPad *inputs;  ///< NULL terminated list of inputs. NULL if none
     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;
 
 /** An instance of a filter */
@@ -426,12 +432,6 @@ struct AVFilterContext
     AVFilterLink **outputs;         ///< array of pointers to output links
 
     void *priv;                     ///< private data for use by the filter
-
-    /**
-     * A description for the filter. You should use the
-     * NULL_IF_CONFIG_SMALL() macro to define it.
-     */
-    const char *description;
 };
 
 /**