diff options
author | Matthieu Bouron <matthieu.bouron@stupeflix.com> | 2015-12-11 13:32:47 +0100 |
---|---|---|
committer | Matthieu Bouron <matthieu.bouron@stupeflix.com> | 2015-12-15 10:35:41 +0100 |
commit | 0c59d40ae06b680de366663d77b4124947813367 (patch) | |
tree | fd66dad873a7cdb6b767bf03eb9fd945f36766ca /libavfilter/avfilter.c | |
parent | 04cc4d055079b7f83f7102b75ab24c08972c37a7 (diff) | |
download | ffmpeg-0c59d40ae06b680de366663d77b4124947813367.tar.gz |
lavfi: use a video frame pool for each link of the filtergraph
Diffstat (limited to 'libavfilter/avfilter.c')
-rw-r--r-- | libavfilter/avfilter.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/libavfilter/avfilter.c b/libavfilter/avfilter.c index c5c30448dc..5d7bc09b86 100644 --- a/libavfilter/avfilter.c +++ b/libavfilter/avfilter.c @@ -168,6 +168,7 @@ void avfilter_link_free(AVFilterLink **link) return; av_frame_free(&(*link)->partial_buf); + ff_video_frame_pool_uninit((FFVideoFramePool**)&(*link)->video_frame_pool); av_freep(link); } |