From 808c6853e1d8b699ad7ffc06a2a30794c3c030fe Mon Sep 17 00:00:00 2001 From: Zhao Zhili Date: Fri, 13 Jun 2025 19:43:33 +0800 Subject: [PATCH] avcodec/mediacodecenc: Fix typo in VP9 option description Reviewed-by: Marth64 Signed-off-by: Zhao Zhili --- libavcodec/mediacodecenc.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/libavcodec/mediacodecenc.c b/libavcodec/mediacodecenc.c index c201fc3365..507c48df9c 100644 --- a/libavcodec/mediacodecenc.c +++ b/libavcodec/mediacodecenc.c @@ -1352,7 +1352,7 @@ static const AVOption vp9_options[] = { 0, AV_OPT_TYPE_CONST, { .i64 = VP9Level52 }, 0, 0, VE, .unit = "level" }, { "6", "Level 6", 0, AV_OPT_TYPE_CONST, { .i64 = VP9Level6 }, 0, 0, VE, .unit = "level" }, - { "6.1", "Level 4.1", + { "6.1", "Level 6.1", 0, AV_OPT_TYPE_CONST, { .i64 = VP9Level61 }, 0, 0, VE, .unit = "level" }, { "6.2", "Level 6.2", 0, AV_OPT_TYPE_CONST, { .i64 = VP9Level62 }, 0, 0, VE, .unit = "level" },