diff options
author | Michael Niedermayer <michaelni@gmx.at> | 2012-08-31 22:13:16 +0200 |
---|---|---|
committer | Michael Niedermayer <michaelni@gmx.at> | 2012-09-01 06:05:08 +0200 |
commit | 3061664a576dc28c7d240206bf4e5eb48f257701 (patch) | |
tree | 4d2fa4fc2e6619e6d65cae9e5c7a1de12d73be1c /ffmpeg_filter.c | |
parent | e4e02a7d4726e9370127741eb2873d6671d3f0c3 (diff) | |
download | ffmpeg-3061664a576dc28c7d240206bf4e5eb48f257701.tar.gz |
avoid ambigous buffersink names
Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
Diffstat (limited to 'ffmpeg_filter.c')
-rw-r--r-- | ffmpeg_filter.c | 4 |
1 files changed, 2 insertions, 2 deletions
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; |