Browse code

lavfi: document AVFilterCommand fields

Stefano Sabatini authored on 2011/09/24 21:29:53
Showing 1 changed files
... ...
@@ -34,8 +34,9 @@ typedef struct AVFilterPool {
34 34
 } AVFilterPool;
35 35
 
36 36
 typedef struct AVFilterCommand {
37
-    double time;
38
-    char *command, *arg;
37
+    double time;                ///< time expressed in seconds
38
+    char *command;              ///< command
39
+    char *arg;                  ///< optional argument for the command
39 40
     int flags;
40 41
     struct AVFilterCommand *next;
41 42
 } AVFilterCommand;