Skip to content

Commit

Permalink
入力のcolorprimの指定がない場合に、--vpp-colorspaceのhdr2sdrが正常に動作しない問題を修正。
Browse files Browse the repository at this point in the history
  • Loading branch information
rigaya committed Jun 23, 2023
1 parent 5a904c6 commit 101a1b3
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 4 deletions.
2 changes: 1 addition & 1 deletion VCECore/rgy_filter_colorspace.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -1458,7 +1458,7 @@ RGY_ERR ColorspaceOpCtrl::setHDR2SDR(const VideoVUIInfo &in, const VideoVUIInfo
if (csp_from2.transfer == RGY_TRANSFER_UNSPECIFIED) {
csp_from2 = csp_from2.to(RGY_TRANSFER_LINEAR);
}
if (csp_from2.transfer == RGY_PRIM_UNSPECIFIED) {
if (csp_from2.colorprim == RGY_PRIM_UNSPECIFIED) {
csp_from2 = csp_from2.to(RGY_PRIM_BT2020);
}
CHECK(setPath(csp_from2, csp_to2, sdr_source_peak, approx_gamma, scene_ref, height));
Expand Down
6 changes: 3 additions & 3 deletions VCECore/rgy_version.h
Original file line number Diff line number Diff line change
Expand Up @@ -29,9 +29,9 @@
#ifndef __RGY_VERSION_H__
#define __RGY_VERSION_H__

#define VER_FILEVERSION 0,8,15,0
#define VER_STR_FILEVERSION "8.15"
#define VER_STR_FILEVERSION_TCHAR _T("8.15")
#define VER_FILEVERSION 0,8,16,0
#define VER_STR_FILEVERSION "8.16"
#define VER_STR_FILEVERSION_TCHAR _T("8.16")


#ifdef _M_IX86
Expand Down
4 changes: 4 additions & 0 deletions VCEEnc/VCEEnc_readme.txt
Original file line number Diff line number Diff line change
Expand Up @@ -181,6 +181,10 @@ Radeon RX550
今後の更新で設定ファイルの互換性がなくなるかもしれません。

【どうでもいいメモ】
2023.06.24 (8.16)
- faw処理時に音声がブツブツ切れる場合があったのを修正。
- 入力のcolorprimの指定がない場合に、--vpp-colorspaceのhdr2sdrが正常に動作しない問題を修正。

2023.06.20 (8.15)
[VCEEnc.auo]
- VCEEnc 8.14のfaw処理に問題があり、異常終了してしまうケースがあったのを修正。
Expand Down

0 comments on commit 101a1b3

Please sign in to comment.