From b9af58184fd3bf6438924ce7e827ed198e517f7f Mon Sep 17 00:00:00 2001 From: James Almer Date: Wed, 24 Apr 2024 17:35:36 -0300 Subject: [PATCH] avutil/iamf: fix mix_gain_class name Signed-off-by: James Almer --- libavutil/iamf.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/libavutil/iamf.c b/libavutil/iamf.c index 84bed5a45e..c96100e7a0 100644 --- a/libavutil/iamf.c +++ b/libavutil/iamf.c @@ -74,7 +74,7 @@ static const AVOption mix_gain_options[] = { }; static const AVClass mix_gain_class = { - .class_name = "AVIAMFSubmixElement", + .class_name = "AVIAMFMixGain", .item_name = av_default_item_name, .version = LIBAVUTIL_VERSION_INT, .option = mix_gain_options,