diff options
author | Michael Niedermayer <michaelni@gmx.at> | 2011-08-29 00:06:16 +0200 |
---|---|---|
committer | Michael Niedermayer <michaelni@gmx.at> | 2011-08-29 20:16:10 +0200 |
commit | 3d8176d2f5766eb6c10f9c99ffd9efc1f682459e (patch) | |
tree | fa18c69718307589fb841a1f47cc8e7345642ab1 /libavfilter/internal.h | |
parent | f782ce3b4d832372000f33e816758ac7aa3af429 (diff) | |
download | ffmpeg-3d8176d2f5766eb6c10f9c99ffd9efc1f682459e.tar.gz |
avfilter: Add avfilter_graph_que_command()
Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
Diffstat (limited to 'libavfilter/internal.h')
-rw-r--r-- | libavfilter/internal.h | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/libavfilter/internal.h b/libavfilter/internal.h index b9613d5ada..bb9d0e576a 100644 --- a/libavfilter/internal.h +++ b/libavfilter/internal.h @@ -33,6 +33,13 @@ typedef struct AVFilterPool { int count; } AVFilterPool; +typedef struct AVFilterCommand { + double time; + char *command, *arg; + int flags; + struct AVFilterCommand *next; +} AVFilterCommand; + /** * Check for the validity of graph. * |