summaryrefslogtreecommitdiff
path: root/libavfilter/internal.h
diff options
context:
space:
mode:
authorMichael Niedermayer <michaelni@gmx.at>2011-08-29 00:06:16 +0200
committerMichael Niedermayer <michaelni@gmx.at>2011-08-29 20:16:10 +0200
commit3d8176d2f5766eb6c10f9c99ffd9efc1f682459e (patch)
treefa18c69718307589fb841a1f47cc8e7345642ab1 /libavfilter/internal.h
parentf782ce3b4d832372000f33e816758ac7aa3af429 (diff)
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.h7
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.
*