Skip to content

Commit

Permalink
NVEncで対応していないAV1 levelを削除。
Browse files Browse the repository at this point in the history
  • Loading branch information
rigaya committed Jan 19, 2025
1 parent 64d99c0 commit f85a3ee
Show file tree
Hide file tree
Showing 4 changed files with 15 additions and 15 deletions.
2 changes: 1 addition & 1 deletion NVEncC_Options.en.md
Original file line number Diff line number Diff line change
Expand Up @@ -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>
Expand Down
2 changes: 1 addition & 1 deletion NVEncC_Options.ja.md
Original file line number Diff line number Diff line change
Expand Up @@ -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>
Expand Down
2 changes: 1 addition & 1 deletion NVEncC_Options.zh-cn.md
Original file line number Diff line number Diff line change
Expand Up @@ -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>
Expand Down
24 changes: 12 additions & 12 deletions NVEncCore/NVEncParam.h
Original file line number Diff line number Diff line change
Expand Up @@ -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 }
};

Expand Down

0 comments on commit f85a3ee

Please sign in to comment.