Skip to content

Commit

Permalink
未初期化変数の修正。
Browse files Browse the repository at this point in the history
  • Loading branch information
rigaya committed Sep 23, 2024
1 parent 26f270e commit 4c8a368
Show file tree
Hide file tree
Showing 3 changed files with 10 additions and 6 deletions.
4 changes: 4 additions & 0 deletions NVEnc/NVEnc_readme.txt
Original file line number Diff line number Diff line change
Expand Up @@ -215,6 +215,10 @@ NVIDIA グラフィックドライバ 551.23
今後の更新で設定ファイルの互換性がなくなるかもしれません。

【メモ】
2024.09.23 (7.69)
[NVEncC]
- --output-csp yuv444でvpp-afsを使用すると意図しない出力となる問題を修正。

2024.09.21 (7.68)
[NVEncC]
- libplaceboによるリサイズフィルタを追加。(Windows x64版)
Expand Down
6 changes: 3 additions & 3 deletions NVEncCore/NVEncFilterLibplacebo.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -366,7 +366,7 @@ RGY_ERR NVEncFilterLibplacebo::initCommon(shared_ptr<NVEncFilterParam> pParam) {
m_textFrameBufOut = std::make_unique<CUFrameBuf>();
sts = m_textFrameBufOut->alloc(m_dstCrop->GetFilterParam()->frameIn.width, m_dstCrop->GetFilterParam()->frameIn.height, m_textCspOut);
if (sts != RGY_ERR_NONE) {
AddMessage(RGY_LOG_DEBUG, _T("failed to allocate memory for ngx output: %s.\n"), get_err_mes(sts));
AddMessage(RGY_LOG_DEBUG, _T("failed to allocate memory for libplacebo output: %s.\n"), get_err_mes(sts));
return sts;
}
}
Expand Down Expand Up @@ -596,7 +596,7 @@ void NVEncFilterLibplacebo::close() {
m_dx11 = nullptr;
}

NVEncFilterLibplaceboResample::NVEncFilterLibplaceboResample() : NVEncFilterLibplacebo() {
NVEncFilterLibplaceboResample::NVEncFilterLibplaceboResample() : NVEncFilterLibplacebo(), m_filter_params() {
m_name = _T("libplacebo-resample");
}

Expand Down Expand Up @@ -808,4 +808,4 @@ RGY_ERR NVEncFilterLibplaceboResample::procPlane(pl_tex texOut, const RGYFrameIn
NVEncFilterLibplaceboResample::NVEncFilterLibplaceboResample() : NVEncFilterDisabled() { m_name = _T("libplacebo-resample"); }
NVEncFilterLibplaceboResample::~NVEncFilterLibplaceboResample() {};

#endif //#if ENABLE_NVSDKNGX
#endif //#if ENABLE_LIBPLACEBO
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,68,0
#define VER_STR_FILEVERSION "7.68"
#define VER_STR_FILEVERSION_TCHAR _T("7.68")
#define VER_FILEVERSION 0,7,69,0
#define VER_STR_FILEVERSION "7.69"
#define VER_STR_FILEVERSION_TCHAR _T("7.69")

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

0 comments on commit 4c8a368

Please sign in to comment.