Skip to content

Commit

Permalink
libmatroska2: fix unique elements that can be recurring
Browse files Browse the repository at this point in the history
Until there is a recurring flag in libebml2 (#92) we must assume the element is
ok multiple times.
  • Loading branch information
robUx4 committed Sep 18, 2022
1 parent 24021ba commit 4eae037
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions libmatroska2/matroska_sem.c
Original file line number Diff line number Diff line change
Expand Up @@ -975,12 +975,12 @@ const ebml_semantic EBML_SemanticTags[] = {

const ebml_semantic EBML_SemanticSegment[] = {
{0, 0, &MATROSKA_ContextSeekHead, 0},
{1, 1, &MATROSKA_ContextInfo, 0},
{1, 0, &MATROSKA_ContextInfo, 0},
{0, 0, &MATROSKA_ContextCluster, 0},
{0, 1, &MATROSKA_ContextTracks, 0},
{0, 0, &MATROSKA_ContextTracks, 0},
{0, 1, &MATROSKA_ContextCues, 0},
{0, 1, &MATROSKA_ContextAttachments, PROFILE_WEBM},
{0, 1, &MATROSKA_ContextChapters, 0},
{0, 0, &MATROSKA_ContextChapters, 0},
{0, 0, &MATROSKA_ContextTags, 0},
{0, 0, NULL ,0} // end of the table
};
Expand Down

0 comments on commit 4eae037

Please sign in to comment.