diff options
author | Stefano Sabatini <stefano.sabatini-lala@poste.it> | 2011-06-29 17:31:16 +0200 |
---|---|---|
committer | Stefano Sabatini <stefano.sabatini-lala@poste.it> | 2011-08-14 02:04:19 +0200 |
commit | 3560089e1204441f27b43825aaa34e3dfc47dd10 (patch) | |
tree | efd6102b21da2b0131996a204200c35ba1dcfb41 /libavfilter/avfilter.h | |
parent | 2e81bb5e92351cc88d88a1c55d21b13532131524 (diff) | |
download | ffmpeg-3560089e1204441f27b43825aaa34e3dfc47dd10.tar.gz |
vsink_buffer: make the buffer cache all the incoming frames
Allow to cache more than one frame (e.g. for filters which return
more than one frame when avfilter_request_frame() is called on them),
and do not discard previously cached frames when a new one is added.
Diffstat (limited to 'libavfilter/avfilter.h')
-rw-r--r-- | libavfilter/avfilter.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libavfilter/avfilter.h b/libavfilter/avfilter.h index fd660292ae..472406f2b4 100644 --- a/libavfilter/avfilter.h +++ b/libavfilter/avfilter.h @@ -30,7 +30,7 @@ #define LIBAVFILTER_VERSION_MAJOR 2 #define LIBAVFILTER_VERSION_MINOR 29 -#define LIBAVFILTER_VERSION_MICRO 1 +#define LIBAVFILTER_VERSION_MICRO 2 #define LIBAVFILTER_VERSION_INT AV_VERSION_INT(LIBAVFILTER_VERSION_MAJOR, \ LIBAVFILTER_VERSION_MINOR, \ |