diff options
author | Matthieu Bouron <matthieu.bouron@gmail.com> | 2016-05-10 17:45:59 +0200 |
---|---|---|
committer | Matthieu Bouron <mbouron@gopro.com> | 2017-01-12 10:22:52 +0100 |
commit | b1f68f00b12a3706f8aabf68ea714eaecc23b295 (patch) | |
tree | 352d9c9c3e776ecc2d2c61d32e2c17a1cd259922 /libavfilter/avfilter.c | |
parent | e71b8119e7db675dd2dac3f7fb069b0df2943c38 (diff) | |
download | ffmpeg-b1f68f00b12a3706f8aabf68ea714eaecc23b295.tar.gz |
lavfi/framepool: rename FFVideoFramePool to FFFramePool
Diffstat (limited to 'libavfilter/avfilter.c')
-rw-r--r-- | libavfilter/avfilter.c | 2 |
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); } |