Skip to content

Commit

Permalink
Fix vvc_extract_priv_data
Browse files Browse the repository at this point in the history
  • Loading branch information
jcdr428 committed Jul 31, 2023
1 parent fa3b5fc commit 3938c7b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tsMuxer/matroskaParser.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -214,7 +214,7 @@ bool ParsedH265TrackData::spsppsExists(uint8_t* buff, int size)
// ----------- H.266 -----------------
ParsedH266TrackData::ParsedH266TrackData(uint8_t* buff, int size) : ParsedH264TrackData(0, 0)
{
m_spsPpsList = hevc_extract_priv_data(buff, size, &m_nalSize);
m_spsPpsList = vvc_extract_priv_data(buff, size, &m_nalSize);
}

bool ParsedH266TrackData::spsppsExists(uint8_t* buff, int size)
Expand Down

0 comments on commit 3938c7b

Please sign in to comment.