diff options
author | Stefano Sabatini <stefasab@gmail.com> | 2012-06-01 14:46:19 +0200 |
---|---|---|
committer | Stefano Sabatini <stefasab@gmail.com> | 2012-06-04 00:55:02 +0200 |
commit | 6a9854e8f48a977125285300826b6637a8209d8b (patch) | |
tree | 52c816d4c9dcfc28b7b9ac71f90b4ace48868010 | |
parent | 4d6a8a2bdb19c4380cc458759b7bd221942a028f (diff) | |
download | ffmpeg-6a9854e8f48a977125285300826b6637a8209d8b.tar.gz |
ffmpeg: specify more meaningful names for the lavfi buffer sources
-rw-r--r-- | ffmpeg.c | 6 |
1 files changed, 3 insertions, 3 deletions
@@ -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; |