summaryrefslogtreecommitdiff
path: root/libavfilter/formats.c
diff options
context:
space:
mode:
authorNicolas George <george@nsup.org>2021-08-19 16:58:20 +0200
committerNicolas George <george@nsup.org>2021-08-20 10:26:36 +0200
commit24de2b7618cc0ed9e75398750b95a2fe88ccaf8c (patch)
treeff03cd3b1d92e7c1fcce5b96bc08cddd86d6bf2a /libavfilter/formats.c
parent703c3c4151bf47a03ddf168f67a8b1a46834c791 (diff)
downloadffmpeg-24de2b7618cc0ed9e75398750b95a2fe88ccaf8c.tar.gz
lavfi/formats: rename AVFilterNegotiation.nb to nb_mergers
Diffstat (limited to 'libavfilter/formats.c')
-rw-r--r--libavfilter/formats.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/libavfilter/formats.c b/libavfilter/formats.c
index 9e39d65a3c..ca85b4094b 100644
--- a/libavfilter/formats.c
+++ b/libavfilter/formats.c
@@ -327,14 +327,14 @@ static const AVFilterFormatsMerger mergers_audio[] = {
};
static const AVFilterNegotiation negotiate_video = {
- .nb = FF_ARRAY_ELEMS(mergers_video),
+ .nb_mergers = FF_ARRAY_ELEMS(mergers_video),
.mergers = mergers_video,
.conversion_filter = "scale",
.conversion_opts_offset = offsetof(AVFilterGraph, scale_sws_opts),
};
static const AVFilterNegotiation negotiate_audio = {
- .nb = FF_ARRAY_ELEMS(mergers_audio),
+ .nb_mergers = FF_ARRAY_ELEMS(mergers_audio),
.mergers = mergers_audio,
.conversion_filter = "aresample",
.conversion_opts_offset = offsetof(AVFilterGraph, aresample_swr_opts),