diff options
author | Nicolas George <nicolas.george@normalesup.org> | 2012-08-19 18:08:24 +0200 |
---|---|---|
committer | Nicolas George <nicolas.george@normalesup.org> | 2012-08-20 23:40:16 +0200 |
commit | 5bbe4142d151fd936439518a3970bb5391511070 (patch) | |
tree | d45af384ebc5ac62b83faa933bd5b518b3917d5e /libavfilter/buffersrc.h | |
parent | 3899e4995538a002c49e1e9d204832a3388588c8 (diff) | |
download | ffmpeg-5bbe4142d151fd936439518a3970bb5391511070.tar.gz |
lavfi/buffersrc: add AV_BUFFERSRC_FLAG_PUSH.
Diffstat (limited to 'libavfilter/buffersrc.h')
-rw-r--r-- | libavfilter/buffersrc.h | 5 |
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, + }; /** |