diff options
author | metamuffin <metamuffin@disroot.org> | 2024-01-28 23:41:32 +0100 |
---|---|---|
committer | metamuffin <metamuffin@disroot.org> | 2024-01-28 23:41:32 +0100 |
commit | ab0e2e306b7872d1c1e6494994070f52fe1b3c00 (patch) | |
tree | 859228b2cad149bc4cb4a76299ec29cd36ac28d0 /matroska/src/matroska.rs | |
parent | 1b8181e34fbbc6a6dfb89afa704e1e1d8fe7ff68 (diff) | |
download | jellything-ab0e2e306b7872d1c1e6494994070f52fe1b3c00.tar jellything-ab0e2e306b7872d1c1e6494994070f52fe1b3c00.tar.bz2 jellything-ab0e2e306b7872d1c1e6494994070f52fe1b3c00.tar.zst |
direct io for blocks
Diffstat (limited to 'matroska/src/matroska.rs')
-rw-r--r-- | matroska/src/matroska.rs | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/matroska/src/matroska.rs b/matroska/src/matroska.rs index 6bbc5f7..937fca7 100644 --- a/matroska/src/matroska.rs +++ b/matroska/src/matroska.rs @@ -76,7 +76,7 @@ define_ebml! { Cluster[0x1F43B675]: { BlockGroup[0xA0]: { - Block[0xA1]: Binary, + Block[0xA1]: Block, BlockAdditions[0x75A1]: { BlockMore[0xA6]: { BlockAddID[0xEE]: Uint, @@ -110,7 +110,7 @@ define_ebml! { SilentTracks[0x5854]: { SilentTrackNumber[0x58D7]: Uint, }, - SimpleBlock[0xA3]: Binary, + SimpleBlock[0xA3]: Block, Timestamp[0xE7]: Uint, }, |