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@gmail.com>2016-05-10 18:45:59 +0300
committerMatthieu Bouron <mbouron@gopro.com>2017-01-12 12:22:52 +0300
commitb1f68f00b12a3706f8aabf68ea714eaecc23b295 (patch)
tree352d9c9c3e776ecc2d2c61d32e2c17a1cd259922 /libavfilter/avfilter.c
parente71b8119e7db675dd2dac3f7fb069b0df2943c38 (diff)
lavfi/framepool: rename FFVideoFramePool to FFFramePool
Diffstat (limited to 'libavfilter/avfilter.c')
-rw-r--r--libavfilter/avfilter.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/libavfilter/avfilter.c b/libavfilter/avfilter.c
index 0020ee163a..12f12d1406 100644
--- a/libavfilter/avfilter.c
+++ b/libavfilter/avfilter.c
@@ -179,7 +179,7 @@ void avfilter_link_free(AVFilterLink **link)
av_frame_free(&(*link)->partial_buf);
ff_framequeue_free(&(*link)->fifo);
- ff_video_frame_pool_uninit((FFVideoFramePool**)&(*link)->video_frame_pool);
+ ff_frame_pool_uninit((FFFramePool**)&(*link)->frame_pool);
av_freep(link);
}