Thanks @shawnc22 . Or you can try this W64 build bb51a5f from my fork. Single tracks created from Blu-rays should be profile 6.shawnc22 wrote: Mon Mar 30, 2020 3:48 pm @jcdr, I can recompile tsmuxer and give prof 6 a try. will report back with results
Code: Select all
// cf. "http://www.dolby.com/us/en/technologies/dolby-vision/dolby-vision-profiles-levels.pdf"
int profile;
if (m_sps->bit_depth_luma_minus8 == 2)
{
if (!isDVBL) // dual HEVC track
profile = 7;
else if (m_hdr->isDVEL && (V3_flags & HDR10))
profile = 6;
else if (m_hdr->isDVEL)
profile = 4;
else if (m_sps->colour_primaries == 2 && m_sps->transfer_characteristics == 2 &&
m_sps->matrix_coeffs == 2) // DV IPT color space
profile = 5;
else
profile = 8;
}
else // 8-bit
{
if (m_sps->colour_primaries == 2 && m_sps->transfer_characteristics == 2 &&
m_sps->matrix_coeffs == 2) // DV IPT color space
profile = 3;
else
profile = 2;
}