From f85a3eeba864b7bb33e4db9694f458f29a0592e5 Mon Sep 17 00:00:00 2001 From: rigaya Date: Sun, 19 Jan 2025 18:01:37 +0900 Subject: [PATCH] =?UTF-8?q?NVEnc=E3=81=A7=E5=AF=BE=E5=BF=9C=E3=81=97?= =?UTF-8?q?=E3=81=A6=E3=81=84=E3=81=AA=E3=81=84AV1=20level=E3=82=92?= =?UTF-8?q?=E5=89=8A=E9=99=A4=E3=80=82?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- NVEncC_Options.en.md | 2 +- NVEncC_Options.ja.md | 2 +- NVEncC_Options.zh-cn.md | 2 +- NVEncCore/NVEncParam.h | 24 ++++++++++++------------ 4 files changed, 15 insertions(+), 15 deletions(-) diff --git a/NVEncC_Options.en.md b/NVEncC_Options.en.md index 3f786182..685e9d41 100644 --- a/NVEncC_Options.en.md +++ b/NVEncC_Options.en.md @@ -819,7 +819,7 @@ Specify the Level of the codec to be encoded. If not specified, it will be autom ``` h264: auto, 1, 1 b, 1.1, 1.2, 1.3, 2, 2.1, 2.2, 3, 3.1, 3.2, 4, 4.1, 4.2, 5, 5.1, 5.2 hevc: auto, 1, 2, 2.1, 3, 3.1, 4, 4.1, 5, 5.1, 5.2, 6, 6.1, 6.2 -av1 : auto, 2, 2.1, 2.2, 2.3, 3, 3.1, 3.2, 3.3, 4, 4.1, 4.2, 4.3, 5, 5.1, 5.2, 5.3, 6, 6.1, 6.2, 6.3, 7, 7.1, 7.2, 7.3 +av1 : auto, 2, 2.1, 3, 3.1, 4, 4.1, 5, 5.1, 5.2, 5.3, 6, 6.1 ``` ### --profile <string> diff --git a/NVEncC_Options.ja.md b/NVEncC_Options.ja.md index 5033a9b0..9873884d 100644 --- a/NVEncC_Options.ja.md +++ b/NVEncC_Options.ja.md @@ -826,7 +826,7 @@ Specifies the max temporal layer used for hierarchical coding. ``` h264: auto, 1, 1b, 1.1, 1.2, 1.3, 2, 2.1, 2.2, 3, 3.1, 3.2, 4, 4.1, 4.2, 5, 5.1, 5.2 hevc: auto, 1, 2, 2.1, 3, 3.1, 4, 4.1, 5, 5.1, 5.2, 6, 6.1, 6.2 -av1 : auto, 2, 2.1, 2.2, 2.3, 3, 3.1, 3.2, 3.3, 4, 4.1, 4.2, 4.3, 5, 5.1, 5.2, 5.3, 6, 6.1, 6.2, 6.3, 7, 7.1, 7.2, 7.3 +av1 : auto, 2, 2.1, 3, 3.1, 4, 4.1, 5, 5.1, 5.2, 5.3, 6, 6.1 ``` ### --profile <string> diff --git a/NVEncC_Options.zh-cn.md b/NVEncC_Options.zh-cn.md index e3696eb7..66b9b401 100644 --- a/NVEncC_Options.zh-cn.md +++ b/NVEncC_Options.zh-cn.md @@ -837,7 +837,7 @@ Bluray 的输出 (默认: 关) ``` h264: auto, 1, 1 b, 1.1, 1.2, 1.3, 2, 2.1, 2.2, 3, 3.1, 3.2, 4, 4.1, 4.2, 5, 5.1, 5.2 hevc: auto, 1, 2, 2.1, 3, 3.1, 4, 4.1, 5, 5.1, 5.2, 6, 6.1, 6.2 -av1 : auto, 2, 2.1, 2.2, 2.3, 3, 3.1, 3.2, 3.3, 4, 4.1, 4.2, 4.3, 5, 5.1, 5.2, 5.3, 6, 6.1, 6.2, 6.3, 7, 7.1, 7.2, 7.3 +av1 : auto, 2, 2.1, 3, 3.1, 4, 4.1, 5, 5.1, 5.2, 5.3, 6, 6.1 ``` ### --profile <string> diff --git a/NVEncCore/NVEncParam.h b/NVEncCore/NVEncParam.h index 4dd14900..850b9c0b 100644 --- a/NVEncCore/NVEncParam.h +++ b/NVEncCore/NVEncParam.h @@ -363,28 +363,28 @@ const CX_DESC list_av1_level[] = { { _T("auto"), NV_ENC_LEVEL_AV1_AUTOSELECT }, { _T("2"), NV_ENC_LEVEL_AV1_2 }, { _T("2.1"), NV_ENC_LEVEL_AV1_21 }, - { _T("2.2"), NV_ENC_LEVEL_AV1_22 }, - { _T("2.3"), NV_ENC_LEVEL_AV1_23 }, + //{ _T("2.2"), NV_ENC_LEVEL_AV1_22 }, + //{ _T("2.3"), NV_ENC_LEVEL_AV1_23 }, { _T("3"), NV_ENC_LEVEL_AV1_3 }, { _T("3.1"), NV_ENC_LEVEL_AV1_31 }, - { _T("3.2"), NV_ENC_LEVEL_AV1_32 }, - { _T("3.3"), NV_ENC_LEVEL_AV1_33 }, + //{ _T("3.2"), NV_ENC_LEVEL_AV1_32 }, + //{ _T("3.3"), NV_ENC_LEVEL_AV1_33 }, { _T("4"), NV_ENC_LEVEL_AV1_4 }, { _T("4.1"), NV_ENC_LEVEL_AV1_41 }, - { _T("4.2"), NV_ENC_LEVEL_AV1_42 }, - { _T("4.3"), NV_ENC_LEVEL_AV1_43 }, + //{ _T("4.2"), NV_ENC_LEVEL_AV1_42 }, + //{ _T("4.3"), NV_ENC_LEVEL_AV1_43 }, { _T("5"), NV_ENC_LEVEL_AV1_5 }, { _T("5.1"), NV_ENC_LEVEL_AV1_51 }, { _T("5.2"), NV_ENC_LEVEL_AV1_52 }, { _T("5.3"), NV_ENC_LEVEL_AV1_53 }, { _T("6"), NV_ENC_LEVEL_AV1_6 }, { _T("6.1"), NV_ENC_LEVEL_AV1_61 }, - { _T("6.2"), NV_ENC_LEVEL_AV1_62 }, - { _T("6.3"), NV_ENC_LEVEL_AV1_63 }, - { _T("7"), NV_ENC_LEVEL_AV1_7 }, - { _T("7.1"), NV_ENC_LEVEL_AV1_71 }, - { _T("7.2"), NV_ENC_LEVEL_AV1_72 }, - { _T("7.3"), NV_ENC_LEVEL_AV1_73 }, + //{ _T("6.2"), NV_ENC_LEVEL_AV1_62 }, + //{ _T("6.3"), NV_ENC_LEVEL_AV1_63 }, + //{ _T("7"), NV_ENC_LEVEL_AV1_7 }, + //{ _T("7.1"), NV_ENC_LEVEL_AV1_71 }, + //{ _T("7.2"), NV_ENC_LEVEL_AV1_72 }, + //{ _T("7.3"), NV_ENC_LEVEL_AV1_73 }, { NULL, 0 } };