Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fix wrong parsing mkv files #11

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Fix wrong parsing mkv files
remove imports
  • Loading branch information
zharkov committed Jun 26, 2022
commit a75e65fc74814d97c12996df0ce352bf724faffa
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