summaryrefslogtreecommitdiff
path: root/libavfilter/buffersrc.h
diff options
context:
space:
mode:
authorNicolas George <nicolas.george@normalesup.org>2012-08-19 18:08:24 +0200
committerNicolas George <nicolas.george@normalesup.org>2012-08-20 23:40:16 +0200
commit5bbe4142d151fd936439518a3970bb5391511070 (patch)
treed45af384ebc5ac62b83faa933bd5b518b3917d5e /libavfilter/buffersrc.h
parent3899e4995538a002c49e1e9d204832a3388588c8 (diff)
lavfi/buffersrc: add AV_BUFFERSRC_FLAG_PUSH.
Diffstat (limited to 'libavfilter/buffersrc.h')
-rw-r--r--libavfilter/buffersrc.h5
1 files changed, 5 insertions, 0 deletions
diff --git a/libavfilter/buffersrc.h b/libavfilter/buffersrc.h
index a23e48f677..d25316125f 100644
--- a/libavfilter/buffersrc.h
+++ b/libavfilter/buffersrc.h
@@ -40,6 +40,11 @@ enum {
*/
AV_BUFFERSRC_FLAG_NO_COPY = 2,
+ /**
+ * Immediately push the frame to the output.
+ */
+ AV_BUFFERSRC_FLAG_PUSH = 4,
+
};
/**