summaryrefslogtreecommitdiff
path: root/ffmpeg.c
diff options
context:
space:
mode:
authorStefano Sabatini <stefasab@gmail.com>2012-06-01 14:46:19 +0200
committerStefano Sabatini <stefasab@gmail.com>2012-06-04 00:55:02 +0200
commit6a9854e8f48a977125285300826b6637a8209d8b (patch)
tree52c816d4c9dcfc28b7b9ac71f90b4ace48868010 /ffmpeg.c
parent4d6a8a2bdb19c4380cc458759b7bd221942a028f (diff)
downloadffmpeg-6a9854e8f48a977125285300826b6637a8209d8b.tar.gz
ffmpeg: specify more meaningful names for the lavfi buffer sources
Diffstat (limited to 'ffmpeg.c')
-rw-r--r--ffmpeg.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/ffmpeg.c b/ffmpeg.c
index 85ae4f3b70..9511a6b20e 100644
--- a/ffmpeg.c
+++ b/ffmpeg.c
@@ -921,11 +921,11 @@ static int configure_output_video_filter(FilterGraph *fg, OutputFilter *ofilter,
#if FF_API_OLD_VSINK_API
ret = avfilter_graph_create_filter(&ofilter->filter,
avfilter_get_by_name("buffersink"),
- "out", NULL, NULL, fg->graph);
+ "ffmpeg_buffersink", NULL, NULL, fg->graph);
#else
ret = avfilter_graph_create_filter(&ofilter->filter,
avfilter_get_by_name("buffersink"),
- "out", NULL, buffersink_params, fg->graph);
+ "ffmpeg_buffersink", NULL, buffersink_params, fg->graph);
#endif
av_freep(&buffersink_params);
@@ -1000,7 +1000,7 @@ static int configure_output_audio_filter(FilterGraph *fg, OutputFilter *ofilter,
ret = avfilter_graph_create_filter(&ofilter->filter,
avfilter_get_by_name("abuffersink_old"),
- "out", NULL, NULL, fg->graph);
+ "ffmpeg_abuffersink_old", NULL, NULL, fg->graph);
if (ret < 0)
return ret;