Skip to content

Commit

Permalink
SAR比が設定されていない(例えば0:0)と、mp4 muxerの出力する"tkhd: Track Header Box"(L-SMASH…
Browse files Browse the repository at this point in the history
… boxdumper)、"Visual Track layout"(mp4box -info)のwidthが0になってしまう問題を回避。
  • Loading branch information
rigaya committed Jan 7, 2025
1 parent b0a56db commit cb0d80b
Show file tree
Hide file tree
Showing 3 changed files with 11 additions and 3 deletions.
5 changes: 5 additions & 0 deletions VCECore/rgy_output_avcodec.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -882,6 +882,11 @@ RGY_ERR RGYOutputAvcodec::InitVideo(const VideoInfo *videoOutputInfo, const Avco
}
m_Mux.video.streamOut->sample_aspect_ratio.num = videoOutputInfo->sar[0]; //mkvではこちらの指定も必要
m_Mux.video.streamOut->sample_aspect_ratio.den = videoOutputInfo->sar[1];
if (format_is_mp4(m_Mux.format.formatCtx) && videoOutputInfo->sar[0] * videoOutputInfo->sar[1] <= 0) {
// mp4 muxerではsample_aspect_ratioが設定されていない(例えば0:0)だと、L-SMASHの"tkhd: Track Header Box" (mp4boxでは"Visual Track layout")のwidthは0になってしまう
m_Mux.video.streamOut->sample_aspect_ratio.num = 1;
m_Mux.video.streamOut->sample_aspect_ratio.den = 1;
}
m_Mux.video.streamOut->avg_frame_rate.num = videoOutputInfo->fpsN; //mkvのTRACKDEFAULTDURATIONの出力に必要
m_Mux.video.streamOut->avg_frame_rate.den = videoOutputInfo->fpsD;
m_Mux.video.streamOut->start_time = 0;
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,26,0
#define VER_STR_FILEVERSION "8.26"
#define VER_STR_FILEVERSION_TCHAR _T("8.26")
#define VER_FILEVERSION 0,8,27,0
#define VER_STR_FILEVERSION "8.27"
#define VER_STR_FILEVERSION_TCHAR _T("8.27")


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

【どうでもいいメモ】
2025.01.08 (8.27)
- SAR比が設定されていない(例えば0:0)と、mp4 muxerの出力する"tkhd: Track Header Box"(L-SMASH boxdumper)、"Visual Track layout"(mp4box -info)のwidthが0になってしまう問題を回避。

2025.01.06 (8.26)
- --vpp-libplacebo-tonemappingで一部のパラメータが正常に動作しない問題を修正。
- tsファイルなどで途中からエンコードする場合に、OpenGOPが使用されているとtrim位置がずれてしまう問題を修正。
Expand Down

0 comments on commit cb0d80b

Please sign in to comment.