Skip to content

Commit

Permalink
Merge pull request #65 from g-maxime/stsdv3
Browse files Browse the repository at this point in the history
Allow Version=3 for stsd video chunks
  • Loading branch information
JeromeMartinez authored Mar 5, 2024
2 parents 463868b + 02f7801 commit 6a3393e
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ void mp4_moov_trak_mdia_minf_stbl_stsd_xxxxVideo::Read_Internal ()
Skip_XX(6); // Reserved
Skip_XX(2); // Data reference index
Get_B2(Version);
if (Version>2)
if (Version>3)
throw exception_read_block("Can not parse moov trak mdia minf stbl stsd xxxxVideo (version not supported)");
Skip_XX(2); // Revision level
Skip_XX(4); // Vendor
Expand Down

0 comments on commit 6a3393e

Please sign in to comment.