summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorKostya Shishkov <[email protected]>2019-12-14 10:30:56 +0100
committerKostya Shishkov <[email protected]>2019-12-14 10:30:56 +0100
commitac0bb254830c5f64775a74f139e4390b0dff52b7 (patch)
tree36acc159a52e43aa784f6a5e03a441a5a3d7b60d
parent74599497b7197fd35196f19126bc1b2cb872dd53 (diff)
indeo/ivi: restore erroneously deleted chunk
-rw-r--r--nihav-indeo/src/codecs/ivibr.rs3
1 files changed, 3 insertions, 0 deletions
diff --git a/nihav-indeo/src/codecs/ivibr.rs b/nihav-indeo/src/codecs/ivibr.rs
index b30ce96..8ccd3b0 100644
--- a/nihav-indeo/src/codecs/ivibr.rs
+++ b/nihav-indeo/src/codecs/ivibr.rs
@@ -903,6 +903,9 @@ br.skip(skip_part as u32)?;
self.iref_0 = self.cur_frame;
self.scal_ref = self.cur_frame;
},
+ IVIFrameType::InterScal => {
+ self.scal_ref = self.cur_frame;
+ },
_ => {},
};