From 8dd0e87d7b9b17d613c646c396c7b7c1a6293111 Mon Sep 17 00:00:00 2001 From: Stefano Sabatini Date: Mon, 25 Jun 2012 20:24:50 +0200 Subject: lavfi: remove old video sink API It was deprecated since a long time and removed after the 2->3 major bump. --- libavdevice/lavfi.c | 6 ------ 1 file changed, 6 deletions(-) (limited to 'libavdevice/lavfi.c') diff --git a/libavdevice/lavfi.c b/libavdevice/lavfi.c index 5387a869d7..65632e302d 100644 --- a/libavdevice/lavfi.c +++ b/libavdevice/lavfi.c @@ -191,16 +191,10 @@ av_cold static int lavfi_read_header(AVFormatContext *avctx) if (type == AVMEDIA_TYPE_VIDEO) { AVBufferSinkParams *buffersink_params = av_buffersink_params_alloc(); -#if FF_API_OLD_VSINK_API - ret = avfilter_graph_create_filter(&sink, buffersink, - inout->name, NULL, - pix_fmts, lavfi->graph); -#else buffersink_params->pixel_fmts = pix_fmts; ret = avfilter_graph_create_filter(&sink, buffersink, inout->name, NULL, buffersink_params, lavfi->graph); -#endif av_freep(&buffersink_params); if (ret < 0) -- cgit v1.2.3