Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/FFmpeg/FFmpeg.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMatthieu Bouron <matthieu.bouron@stupeflix.com>2015-12-11 15:32:47 +0300
committerMatthieu Bouron <matthieu.bouron@stupeflix.com>2015-12-15 12:35:41 +0300
commit0c59d40ae06b680de366663d77b4124947813367 (patch)
treefd66dad873a7cdb6b767bf03eb9fd945f36766ca /libavfilter/avfilter.h
parent04cc4d055079b7f83f7102b75ab24c08972c37a7 (diff)
lavfi: use a video frame pool for each link of the filtergraph
Diffstat (limited to 'libavfilter/avfilter.h')
-rw-r--r--libavfilter/avfilter.h5
1 files changed, 5 insertions, 0 deletions
diff --git a/libavfilter/avfilter.h b/libavfilter/avfilter.h
index 7aac3cf934..dca02945f6 100644
--- a/libavfilter/avfilter.h
+++ b/libavfilter/avfilter.h
@@ -509,6 +509,11 @@ struct AVFilterLink {
* Number of past frames sent through the link.
*/
int64_t frame_count;
+
+ /**
+ * A pointer to a FFVideoFramePool struct.
+ */
+ void *video_frame_pool;
};
/**