Skip to content

Commit

Permalink
KaxSemantic: fix the swapped field order values
Browse files Browse the repository at this point in the history
  • Loading branch information
robUx4 committed Jan 5, 2025
1 parent 6758cb9 commit 19c27d7
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions matroska/KaxSemantic.h
Original file line number Diff line number Diff line change
Expand Up @@ -922,8 +922,8 @@ typedef enum {
MATROSKA_VIDEO_FIELDORDER_TOPFIELDFIRST = 1, // Top field displayed first. Top field stored first.
MATROSKA_VIDEO_FIELDORDER_UNDETERMINED = 2, // Unknown field order.
MATROSKA_VIDEO_FIELDORDER_BOTTOMFIELDFIRST = 6, // Bottom field displayed first. Bottom field stored first.
MATROSKA_VIDEO_FIELDORDER_BOTTOMFIELDSWAPPED = 9, // Top field displayed first. Fields are interleaved in storage with the top line of the top field stored first.
MATROSKA_VIDEO_FIELDORDER_TOPFIELDSWAPPED = 14, // Bottom field displayed first. Fields are interleaved in storage with the top line of the top field stored first.
MATROSKA_VIDEO_FIELDORDER_TOPFIELDSWAPPED = 9, // Top field displayed first. Fields are interleaved in storage with the top line of the top field stored first.
MATROSKA_VIDEO_FIELDORDER_BOTTOMFIELDSWAPPED = 14, // Bottom field displayed first. Fields are interleaved in storage with the top line of the top field stored first.
} MatroskaVideoFieldOrder;

/**
Expand Down

0 comments on commit 19c27d7

Please sign in to comment.