Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Draft on complete next-gen CDEF implementation (early WIP) #3016

Open
wants to merge 2 commits into
base: master
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
12 changes: 12 additions & 0 deletions src/bin/common.rs
Original file line number Diff line number Diff line change
Expand Up @@ -174,6 +174,18 @@ pub struct CliOptions {
/// Still picture mode
#[clap(long, help_heading = "ENCODE SETTINGS")]
pub still_picture: bool,
/// Quality tuning for the CDEF strength selection algorithm
/// ssimulacra2 for the highest quality(experimental, can be changed), default for the fastest mode
#[cfg(feature = "unstable")]
#[clap(
long,
value_parser,
hide = true,
default_value_t = default
help_heading = "ENCODE SETTINGS"
)]
pub cdef_tune,

/// Uses grain synthesis to add photon noise to the resulting encode.
/// Takes a strength value 0-64.
#[cfg(feature = "unstable")]
Expand Down