Skip to content

Commit

Permalink
--dynamic-rcでqvbrを使用できなかった問題を修正。
Browse files Browse the repository at this point in the history
  • Loading branch information
rigaya committed Nov 19, 2023
1 parent 83a468f commit e39b5a7
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 3 deletions.
1 change: 1 addition & 0 deletions NVEncCore/NVEncCmd.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -854,6 +854,7 @@ int parse_one_option(const TCHAR *option_name, const TCHAR* strInput[], int& i,
rcPrm.targetQualityLSB = (uint8_t)clamp((int)((value - value_int) * 256.0), 0, 255);
rcPrm.avg_bitrate = 0;
rcPrm.rc_mode = NV_ENC_PARAMS_RC_VBR;
rc_mode_defined = true;
} catch (...) {
print_cmd_error_invalid_value(tstring(option_name) + _T(" ") + param_arg + _T("="), param_val);
return 1;
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,36,0
#define VER_STR_FILEVERSION "7.36"
#define VER_STR_FILEVERSION_TCHAR _T("7.36")
#define VER_FILEVERSION 0,7,37,0
#define VER_STR_FILEVERSION "7.37"
#define VER_STR_FILEVERSION_TCHAR _T("7.37")

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

0 comments on commit e39b5a7

Please sign in to comment.