Skip to content

Commit

Permalink
vpp-nlmeansのドキュメントの記載ミスを修正。
Browse files Browse the repository at this point in the history
  • Loading branch information
rigaya committed May 1, 2024
1 parent e48b883 commit 5ab07f4
Show file tree
Hide file tree
Showing 5 changed files with 12 additions and 6 deletions.
6 changes: 6 additions & 0 deletions NVEnc/NVEnc_readme.txt
Original file line number Diff line number Diff line change
Expand Up @@ -214,6 +214,12 @@ NVIDIA グラフィックドライバ 545.92
今後の更新で設定ファイルの互換性がなくなるかもしれません。

【メモ】
2024.05.01 (7.51)
- 新たなノイズ除去フィルタを追加。(--vpp-nlmeans)
- 音声エンコード時に一致するチャンネル数のフォーマットで出力できない場合に、最も近いチャンネル数のフォーマットで出力するように。
- Ubuntu 24.04, Fedora 37, Fedora 39 向けパッケージを追加。
- --tuneを削除。すべて他のパラメータで実行可能で、重複するややこしいオプションとなっていた。

2024.04.13 (7.50)
- --lookahead-levelのデフォルト値を0に。
エンコード速度が大幅に低下する場合があった。
Expand Down
2 changes: 1 addition & 1 deletion NVEncC_Options.en.md
Original file line number Diff line number Diff line change
Expand Up @@ -2227,7 +2227,7 @@ Non local means noise reduction filter.
- blockdiff
Use fp16 in block diff calculation. Balanced between performace and precision.

- fp16
- all
Additionally use fp16 in weight calculation. Fast but low precision.

- Examples
Expand Down
2 changes: 1 addition & 1 deletion NVEncC_Options.ja.md
Original file line number Diff line number Diff line change
Expand Up @@ -2284,7 +2284,7 @@ Non local meansを用いたノイズ除去フィルタ。
- blockdiff
ブロックの差分計算にのみfp16を使用する。精度と速度のバランスが良い。

- fp16
- all
重みの計算にもfp16を使用する。高速だが低精度。

- 使用例
Expand Down
2 changes: 1 addition & 1 deletion NVEncCore/rgy_cmd.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -2072,7 +2072,7 @@ int parse_one_vpp_option(const TCHAR *option_name, const TCHAR *strInput[], int
if (get_list_value(list_vpp_nlmeans_fp16, param_val.c_str(), &value)) {
vpp->nlmeans.fp16 = (VppNLMeansFP16Opt)value;
} else {
print_cmd_error_invalid_value(tstring(option_name) + _T(" ") + param_arg + _T("="), param_val, list_vpp_fp_prec);
print_cmd_error_invalid_value(tstring(option_name) + _T(" ") + param_arg + _T("="), param_val, list_vpp_nlmeans_fp16);
return 1;
}
continue;
Expand Down
6 changes: 3 additions & 3 deletions NVEncCore/rgy_version.h
Original file line number Diff line number Diff line change
Expand Up @@ -29,9 +29,9 @@
#ifndef __RGY_CONFIG_H__
#define __RGY_CONFIG_H__

#define VER_FILEVERSION 0,7,50,0
#define VER_STR_FILEVERSION "7.50"
#define VER_STR_FILEVERSION_TCHAR _T("7.50")
#define VER_FILEVERSION 0,7,51,0
#define VER_STR_FILEVERSION "7.51"
#define VER_STR_FILEVERSION_TCHAR _T("7.51")

#ifdef _M_IX86
#define BUILD_ARCH_STR _T("x86")
Expand Down

0 comments on commit 5ab07f4

Please sign in to comment.