Skip to content

Commit

Permalink
初期化のコードにAVX2命令が混入しているらしく、AVX2に対応しない環境で動作しないのを回避。 ( #539 )
Browse files Browse the repository at this point in the history
  • Loading branch information
rigaya committed Nov 27, 2023
1 parent d38e25e commit aa54a9b
Show file tree
Hide file tree
Showing 3 changed files with 10 additions and 4 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
今後の更新で設定ファイルの互換性がなくなるかもしれません。

【メモ】
2023.11.27 (7.38)
[NVEncC]
- NVEnc 7.34以降、AVX2が使用できない環境で動作しないのを回避。
- --audio-delayを小数点で渡せるように変更。
- ログ出力機能の強化。

2023.11.19 (7.37)
[NVEncC]
- --qvbrの時、最大ビットレートの指定が効かなくなってしまう問題を修正。
Expand Down
2 changes: 1 addition & 1 deletion NVEncCore/rgy_def.h
Original file line number Diff line number Diff line change
Expand Up @@ -51,7 +51,7 @@ static const int TRIM_MAX = std::numeric_limits<int>::max();
static const int TRIM_OVERREAD_FRAMES = 128;

static const int MAX_SPLIT_CHANNELS = 32;
static const std::string RGY_CHANNEL_AUTO = "RGY_CHANNEL_AUTO";
static const char *RGY_CHANNEL_AUTO = "RGY_CHANNEL_AUTO";
static const int RGY_OUTPUT_BUF_MB_DEFAULT = 8;
static const int RGY_OUTPUT_BUF_MB_MAX = 128;

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,37,0
#define VER_STR_FILEVERSION "7.37"
#define VER_STR_FILEVERSION_TCHAR _T("7.37")
#define VER_FILEVERSION 0,7,38,0
#define VER_STR_FILEVERSION "7.38"
#define VER_STR_FILEVERSION_TCHAR _T("7.38")

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

0 comments on commit aa54a9b

Please sign in to comment.