Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/FFmpeg/FFmpeg.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAnton Khirnov <anton@khirnov.net>2022-01-21 11:11:50 +0300
committerAnton Khirnov <anton@khirnov.net>2022-02-15 12:16:16 +0300
commite85958ece84a8d3a6390f50ac2690addf28a082e (patch)
tree11d43730e695e7086ba20441d28c01e5f769daaf /fftools/ffmpeg_filter.c
parentd51211526722196345029b7e45ee59f01ed3baf6 (diff)
fftools/ffmpeg: fix (a)buffer src names
Diffstat (limited to 'fftools/ffmpeg_filter.c')
-rw-r--r--fftools/ffmpeg_filter.c4
1 files 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)