diff options
author | Stefano Sabatini <stefasab@gmail.com> | 2011-09-24 14:29:53 +0200 |
---|---|---|
committer | Stefano Sabatini <stefasab@gmail.com> | 2011-09-25 22:47:51 +0200 |
commit | e64de2ad1adf419f42097385d29728b18401f1f1 (patch) | |
tree | d06b3244c5e9d42591ad778971c79690450b6119 /libavfilter | |
parent | 58c61492c64f6d82f7fb514985c7cc1ccaa39313 (diff) | |
download | ffmpeg-e64de2ad1adf419f42097385d29728b18401f1f1.tar.gz |
lavfi: document AVFilterCommand fields
Diffstat (limited to 'libavfilter')
-rw-r--r-- | libavfilter/internal.h | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/libavfilter/internal.h b/libavfilter/internal.h index 6173681067..9f28a839df 100644 --- a/libavfilter/internal.h +++ b/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; |