Skip to content

Commit 7a4c51a

Browse files
committed
Release 0.2.1 - Fix integer overflow bug
1 parent 06e0d6f commit 7a4c51a

File tree

3 files changed

+7
-2
lines changed

3 files changed

+7
-2
lines changed

CHANGELOG.md

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,11 @@
11
# `re_mp4` Changelog
22

33

4+
## 0.2.1 - 2024-11-12 - Bug fixes
5+
* Fix integer overflow when ctts contains entries with negative offsets [#14](https://github.com/rerun-io/re_mp4/pull/14) by [@Wumpf](https://github.com/Wumpf)
6+
* Handle negative data_offset in TrunBox [#15](https://github.com/rerun-io/re_mp4/pull/15) by [@Wumpf](https://github.com/Wumpf)
7+
8+
49
## 0.2.0 - 2024-11-11 - Faster video parsing
510
* Optimize mp4 parse times by not copying video data [#12](https://github.com/rerun-io/re_mp4/pull/12) by [@jprochazk](https://github.com/jprochazk)
611

Cargo.lock

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -92,7 +92,7 @@ dependencies = [
9292

9393
[[package]]
9494
name = "re_mp4"
95-
version = "0.2.0"
95+
version = "0.2.1"
9696
dependencies = [
9797
"byteorder",
9898
"bytes",

Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ publish = true
1212
readme = "README.md"
1313
repository = "https://github.com/rerun-io/re_mp4"
1414
rust-version = "1.76"
15-
version = "0.2.0"
15+
version = "0.2.1"
1616

1717
[package.metadata.docs.rs]
1818
all-features = true

0 commit comments

Comments
 (0)