lavfi: document AVFilterCommand fields

This commit is contained in:
Stefano Sabatini 2011-09-24 14:29:53 +02:00
parent 58c61492c6
commit e64de2ad1a
1 changed files with 3 additions and 2 deletions

View File

@ -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;