[FFmpeg-cvslog] fftools/ffmpeg: fix (a)buffer src names

Anton Khirnov git at videolan.org
Tue Feb 15 11:19:43 EET 2022


ffmpeg | branch: master | Anton Khirnov <anton at 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)



More information about the ffmpeg-cvslog mailing list