Skip to content

Commit

Permalink
Parse HEVC to reorder metadata (#11)
Browse files Browse the repository at this point in the history
Parses the HEVC data to obtain relevant frame presentation order.
Reorders the RPUs from decoded to presentation order.

Should solve #9 
`extract-rpu` performance drops around 20%

Add crop flag for setting active area offsets to zero.
  • Loading branch information
quietvoid committed Apr 24, 2021
1 parent 71c6275 commit e2fbc80
Show file tree
Hide file tree
Showing 16 changed files with 295 additions and 473 deletions.
10 changes: 8 additions & 2 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -1,2 +1,8 @@
/target
**/*.rs.bk
target
**/*.rs.bk
*.mkv
*.hevc
*.txt
*.vpy
*.bin
*.ffindex
105 changes: 58 additions & 47 deletions Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

9 changes: 5 additions & 4 deletions Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,15 +1,16 @@
[package]
name = "dovi_tool"
version = "0.1.2"
version = "0.2.0"
authors = ["quietvoid"]
edition = "2018"
license = "MIT"

[dependencies]
structopt = "0.3.21"
indicatif = "0.15.0"
regex = "1.4.3"
regex = "1.4.5"
ansi_term = "0.12.1"
bitvec = "0.20.1"
crc = "2.0.0-rc.1"
nom = "6.0.1"
bitvec = "0.20.1"
bitvec_helpers = "0.1.0"
hevc_parser = "0.1.0"
106 changes: 0 additions & 106 deletions src/bits/bitvec_reader.rs

This file was deleted.

0 comments on commit e2fbc80

Please sign in to comment.