Browse Source

lavfi: document AVFilterCommand fields

Stefano Sabatini 13 years ago
parent
commit
e64de2ad1a
1 changed files with 3 additions and 2 deletions
  1. 3 2
      libavfilter/internal.h

+ 3 - 2
libavfilter/internal.h

@@ -34,8 +34,9 @@ typedef struct AVFilterPool {
 } AVFilterPool;
 
 typedef struct AVFilterCommand {
-    double time;
-    char *command, *arg;
+    double time;                ///< time expressed in seconds
+    char *command;              ///< command
+    char *arg;                  ///< optional argument for the command
     int flags;
     struct AVFilterCommand *next;
 } AVFilterCommand;