Skip to content

Commit

Permalink
NVEncで外部音声エンコーダを使用した場合に音声がmuxされない問題を修正。
Browse files Browse the repository at this point in the history
  • Loading branch information
rigaya committed Nov 8, 2023
1 parent 8e7f59b commit cc17fcb
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 2 deletions.
5 changes: 4 additions & 1 deletion NVEnc/NVEnc_readme.txt
Original file line number Diff line number Diff line change
Expand Up @@ -214,11 +214,14 @@ NVIDIA グラフィックドライバ 545.92
今後の更新で設定ファイルの互換性がなくなるかもしれません。

【メモ】
2023.11.04 (7.36)
2023.11.08 (7.36)
[NVEncC]
- --vpp-rffをavswにも対応。
- --vpp-afsでrffの考慮をデフォルトで有効に。

[NVEnc.auo]
- 7.35で外部音声エンコーダを使用すると、音声がmuxされない問題を修正。

2023.10.28 (7.35)
[NVEncC]
- qvbrをデフォルトに。
Expand Down
2 changes: 1 addition & 1 deletion NVEnc/encode/auo_video.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -512,7 +512,7 @@ static DWORD video_output_inside(CONF_GUIEX *conf, const OUTPUT_INFO *oip, PRM_E
return AUO_RESULT_ERROR;
}

if ((oip->flag & OUTPUT_INFO_FLAG_AUDIO) && conf->aud.use_internal) {
if ((oip->flag & OUTPUT_INFO_FLAG_AUDIO)) {
if_valid_wait_for_single_object(pe->aud_parallel.he_vid_start, INFINITE);
auto common = &enc_prm.common;
common->AVMuxTarget |= (RGY_MUX_VIDEO | RGY_MUX_AUDIO);
Expand Down

0 comments on commit cc17fcb

Please sign in to comment.