Skip to content

Commit

Permalink
Fix wrong parsing mkv files
Browse files Browse the repository at this point in the history
remove imports
  • Loading branch information
zharkov committed Jun 26, 2022
1 parent 630a549 commit a75e65f
Showing 1 changed file with 1 addition and 0 deletions.
1 change: 1 addition & 0 deletions src/main/java/org/ebml/matroska/MatroskaDocTypes.java
Original file line number Diff line number Diff line change
Expand Up @@ -138,6 +138,7 @@ public final class MatroskaDocTypes
public static final ProtoType<BinaryElement> ColourSpace = new ProtoType<>(BinaryElement.class, "ColourSpace", new byte[] {(byte) 0x2E, (byte) 0xB5, (byte) 0x24 }, 4);
public static final ProtoType<FloatElement> GammaValue = new ProtoType<>(FloatElement.class, "GammaValue", new byte[] {(byte) 0x2F, (byte) 0xB5, (byte) 0x23 }, 4);
public static final ProtoType<FloatElement> FrameRate = new ProtoType<>(FloatElement.class, "FrameRate", new byte[] {(byte) 0x23, (byte) 0x83, (byte) 0xE3 }, 4);
public static final ProtoType<MasterElement> Colour = new ProtoType<>(MasterElement.class, "Colour", new byte[] {(byte) 0x55, (byte) 0xB0 }, 4);
public static final ProtoType<MasterElement> Audio = new ProtoType<>(MasterElement.class, "Audio", new byte[] {(byte) 0xE1 }, 3);
public static final ProtoType<FloatElement> SamplingFrequency = new ProtoType<>(FloatElement.class, "SamplingFrequency", new byte[] {(byte) 0xB5 }, 4);
public static final ProtoType<FloatElement> OutputSamplingFrequency = new ProtoType<>(FloatElement.class, "OutputSamplingFrequency", new byte[] {(byte) 0x78, (byte) 0xB5 }, 4);
Expand Down

0 comments on commit a75e65f

Please sign in to comment.