Skip to content

Commit

Permalink
--vpp-tweakをなにもしない設定で実行した時クラッシュするのを回避。( #637 )
Browse files Browse the repository at this point in the history
  • Loading branch information
rigaya committed Nov 2, 2024
1 parent 977e5a1 commit 0e21cea
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 1 deletion.
1 change: 1 addition & 0 deletions NVEnc/NVEnc_readme.txt
Original file line number Diff line number Diff line change
Expand Up @@ -222,6 +222,7 @@ NVIDIA グラフィックドライバ 551.23
hdr10plus_gen.exeを使用する代わりにlibhdr10plusを使用するように変更。
- 入力ファイルにdoviがない場合に、--dolby-vision-rpuを指定するとエラー終了する問題を修正。
- --dhdr10-infoがraw出力時に動作しなくなっていたのを修正。
- --vpp-tweakをなにもしない設定で実行した時クラッシュするのを回避。

2024.10.27 (7.72)
[NVEncC]
Expand Down
6 changes: 5 additions & 1 deletion NVEncCore/NVEncFilterTweak.cu
Original file line number Diff line number Diff line change
Expand Up @@ -415,7 +415,11 @@ RGY_ERR NVEncFilterTweak::init(shared_ptr<NVEncFilterParam> pParam, shared_ptr<R
}
if (m_convC) str += indent + m_convC->GetInputMessage();
if (str.length() > 0 && str.back() == _T('\n')) str = str.substr(0, str.length() - 1);
setFilterInfo(tstring(_T("tweak: ")) + str);
if (str.length() > _tcslen(_T("tweak: "))) {
setFilterInfo(tstring(_T("tweak: ") + str.substr(_tcslen(_T("tweak: ")))));
} else {
setFilterInfo(tstring(_T("tweak: ") + str));
}
m_param = prm;
return sts;
}
Expand Down

0 comments on commit 0e21cea

Please sign in to comment.