aboutsummaryrefslogtreecommitdiff
path: root/matroska
diff options
context:
space:
mode:
Diffstat (limited to 'matroska')
-rw-r--r--matroska/src/block.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/matroska/src/block.rs b/matroska/src/block.rs
index c887a91..676b042 100644
--- a/matroska/src/block.rs
+++ b/matroska/src/block.rs
@@ -59,7 +59,7 @@ impl Block {
match self.discardable {
true => 0b1,
false => 0b0,
- } | match self.invisible {
+ } | match self.keyframe {
true => 0b10000000,
false => 0b00000000,
} | match self.invisible {