From 3061664a576dc28c7d240206bf4e5eb48f257701 Mon Sep 17 00:00:00 2001 From: Michael Niedermayer Date: Fri, 31 Aug 2012 22:13:16 +0200 Subject: avoid ambigous buffersink names Signed-off-by: Michael Niedermayer --- ffmpeg_filter.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'ffmpeg_filter.c') diff --git a/ffmpeg_filter.c b/ffmpeg_filter.c index 3296576a73..b7f20cc218 100644 --- a/ffmpeg_filter.c +++ b/ffmpeg_filter.c @@ -294,7 +294,7 @@ static int configure_output_video_filter(FilterGraph *fg, OutputFilter *ofilter, snprintf(name, sizeof(name), "output stream %d:%d", ost->file_index, ost->index); ret = avfilter_graph_create_filter(&ofilter->filter, - avfilter_get_by_name("buffersink"), + avfilter_get_by_name("ffbuffersink"), name, NULL, NULL/*buffersink_params*/, fg->graph); av_freep(&buffersink_params); @@ -377,7 +377,7 @@ static int configure_output_audio_filter(FilterGraph *fg, OutputFilter *ofilter, snprintf(name, sizeof(name), "output stream %d:%d", ost->file_index, ost->index); ret = avfilter_graph_create_filter(&ofilter->filter, - avfilter_get_by_name("abuffersink"), + avfilter_get_by_name("ffabuffersink"), name, NULL, NULL, fg->graph); if (ret < 0) return ret; -- cgit v1.2.3