From 6a62d411583f142a708654f9bdc186c537879878 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Torbjo=CC=88rn=20Einarsson?= Date: Mon, 17 Apr 2023 20:24:07 +0200 Subject: [PATCH 1/2] docs: update changelog --- CHANGELOG.md | 1 + 1 file changed, 1 insertion(+) diff --git a/CHANGELOG.md b/CHANGELOG.md index b129f822..557c25ca 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -19,6 +19,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 - `mp4ff-pslister` now provides PPS details for HEVC - `mp4ff-pslister` now extracts inband parameter sets in progressive mp4 files - Complete parsing of HEVC SPS extensions +- Parsing of HEVC slice header ## [0.34.1] - 2023-03-09 From 09f9741d9fa600914fd9b15bbfaa401eac26bf43 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Torbjo=CC=88rn=20Einarsson?= Date: Tue, 18 Apr 2023 10:32:22 +0200 Subject: [PATCH 2/2] v0.35.0 --- CHANGELOG.md | 10 ++++++++-- mp4/version.go | 4 ++-- 2 files changed, 10 insertions(+), 4 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 557c25ca..bb2562da 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -7,6 +7,10 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ## [Unreleased] +- + +## [0.35.0] - 2023-04-18 + ### Fixed - `stpp` box handles optional empty lists properly (a single zero byte) @@ -14,12 +18,13 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ### Added -- Exported function: bits.CeilLog2 +- Exported function: `bits.CeilLog2` - PPS parsing for HEVC - `mp4ff-pslister` now provides PPS details for HEVC - `mp4ff-pslister` now extracts inband parameter sets in progressive mp4 files - Complete parsing of HEVC SPS extensions - Parsing of HEVC slice header +- `SetType` method for `mp4.AudioSampleEntryBox` ## [0.34.1] - 2023-03-09 @@ -383,7 +388,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 - New unique repo name: `mp4ff` -[unreleased]: https://github.com/Eyevinn/mp4ff/compare/v0.34.1...HEAD +[Unreleased]: https://github.com/Eyevinn/mp4ff/compare/v0.35.0...HEAD +[0.35.0]: https://github.com/Eyevinn/mp4ff/compare/v0.34.1...v0.35.0 [0.34.1]: https://github.com/Eyevinn/mp4ff/compare/v0.34.0...v0.34.1 [0.34.0]: https://github.com/Eyevinn/mp4ff/compare/v0.33.2...v0.34.0 [0.33.2]: https://github.com/Eyevinn/mp4ff/compare/v0.33.1...v0.33.2 diff --git a/mp4/version.go b/mp4/version.go index 3c6a0e93..da808278 100644 --- a/mp4/version.go +++ b/mp4/version.go @@ -7,8 +7,8 @@ import ( ) var ( - commitVersion string = "v0.34.1" // May be updated using build flags - commitDate string = "1678361120" // commitDate in Epoch seconds (may be overridden using build flags) + commitVersion string = "v0.35.0" // May be updated using build flags + commitDate string = "1681806686" // commitDate in Epoch seconds (may be overridden using build flags) ) // GetVersion - get version and also commitHash and commitDate if inserted via Makefile