ffmpeg | branch: master | Anton Khirnov <an...@khirnov.net> | Fri Jan 21 09:11:50 2022 +0100| [e85958ece84a8d3a6390f50ac2690addf28a082e] | committer: Anton Khirnov
fftools/ffmpeg: fix (a)buffer src names > http://git.videolan.org/gitweb.cgi/ffmpeg.git/?a=commit;h=e85958ece84a8d3a6390f50ac2690addf28a082e --- fftools/ffmpeg_filter.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/fftools/ffmpeg_filter.c b/fftools/ffmpeg_filter.c index 41d87377c7..2c3f21985f 100644 --- a/fftools/ffmpeg_filter.c +++ b/fftools/ffmpeg_filter.c @@ -949,8 +949,8 @@ static void cleanup_filtergraph(FilterGraph *fg) static int filter_is_buffersrc(const AVFilterContext *f) { return f->nb_inputs == 0 && - (!strcmp(f->filter->name, "buffersrc") || - !strcmp(f->filter->name, "abuffersrc")); + (!strcmp(f->filter->name, "buffer") || + !strcmp(f->filter->name, "abuffer")); } static int graph_is_meta(AVFilterGraph *graph) _______________________________________________ ffmpeg-cvslog mailing list ffmpeg-cvslog@ffmpeg.org https://ffmpeg.org/mailman/listinfo/ffmpeg-cvslog To unsubscribe, visit link above, or email ffmpeg-cvslog-requ...@ffmpeg.org with subject "unsubscribe".