Skip to content

Commit

Permalink
Merge branch 'master' of https://github.com/justdan96/tsMuxer
Browse files Browse the repository at this point in the history
  • Loading branch information
jcdr428 committed Oct 10, 2023
2 parents 78dd8fe + a7e8304 commit 5ef87de
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tsMuxer/hevcStreamReader.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -395,7 +395,7 @@ unsigned HEVCStreamReader::getStreamHeight() const { return m_sps ? m_sps->pic_h

int HEVCStreamReader::getStreamHDR() const
{
return (m_hdr->isDVRPU || m_hdr->isDVEL) ? 4 : (m_hdr->isHDR10plus ? 16 : (m_hdr->isHDR10 ? 2 : 1));
return (m_hdr->isDVEL) ? 4 : (m_hdr->isHDR10plus ? 16 : (m_hdr->isHDR10 ? 2 : 1));
}

double HEVCStreamReader::getStreamFPS(void* curNalUnit)
Expand Down

0 comments on commit 5ef87de

Please sign in to comment.