Skip to content

Commit

Permalink
Version 0.12.1
Browse files Browse the repository at this point in the history
  • Loading branch information
shssoichiro committed Jun 10, 2024
1 parent 5e8d974 commit 9ae3052
Show file tree
Hide file tree
Showing 3 changed files with 19 additions and 15 deletions.
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,7 @@
## Version 0.12.1

- Enable threading for ffmpeg decoder, should greatly improve speed

## Version 0.12.0

- [Breaking] Move `VideoDetails` struct from `y4m` module to `decoder` module, since it is not specific to y4m
Expand Down
2 changes: 1 addition & 1 deletion Cargo.lock

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

28 changes: 14 additions & 14 deletions Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "av-scenechange"
version = "0.12.0"
version = "0.12.1"
authors = ["Josh Holmer <[email protected]>"]
edition = "2021"
description = "Estimates frames in a video where a scenecut would be ideal"
Expand All @@ -14,9 +14,9 @@ clap = { version = "4.0.22", optional = true, features = ["derive"] }
serde = { version = "1.0.123", optional = true, features = ["derive"] }
serde_json = { version = "1.0.62", optional = true }
rav1e = { version = "0.7.0", default-features = false, features = [
"asm",
"scenechange",
"threading",
"asm",
"scenechange",
"threading",
] }
log = { version = "0.4.14", optional = true }
console = { version = "0.15", optional = true }
Expand All @@ -25,17 +25,17 @@ tracing-subscriber = { version = "0.3.18", optional = true }
tracing-chrome = { version = "0.7.1", optional = true }
tracing = { version = "0.1.40", optional = true }
ffmpeg-the-third = { version = "2.0.1", optional = true, default-features = false, features = [
"codec",
"format",
"codec",
"format",
] }

[dependencies.vapoursynth]
version = "0.4.0"
features = [
"vsscript-functions",
"vapoursynth-functions",
"vapoursynth-api-32",
"vsscript-api-31",
"vsscript-functions",
"vapoursynth-functions",
"vapoursynth-api-32",
"vsscript-api-31",
]
optional = true

Expand All @@ -46,10 +46,10 @@ binary = ["clap", "serialize"]
serialize = ["serde", "serde_json"]
devel = ["log", "console", "fern"]
tracing = [
"tracing-subscriber",
"tracing-chrome",
"dep:tracing",
"rav1e/tracing",
"tracing-subscriber",
"tracing-chrome",
"dep:tracing",
"rav1e/tracing",
]
ffmpeg = ["ffmpeg-the-third"]

Expand Down

0 comments on commit 9ae3052

Please sign in to comment.