aboutsummaryrefslogtreecommitdiff
path: root/evc/src/bin/encode.rs
diff options
context:
space:
mode:
Diffstat (limited to 'evc/src/bin/encode.rs')
-rw-r--r--evc/src/bin/encode.rs4
1 files changed, 3 insertions, 1 deletions
diff --git a/evc/src/bin/encode.rs b/evc/src/bin/encode.rs
index d6029aa..79ec934 100644
--- a/evc/src/bin/encode.rs
+++ b/evc/src/bin/encode.rs
@@ -21,7 +21,7 @@ pub struct EncodeArgs {
#[arg(short = 'H', long)]
height: usize,
- #[arg(short = 't', long, default_value = "0.9")]
+ #[arg(short = 't', long, default_value = "1.5")]
ref_thres: f64,
#[arg(short = 'T', long)]
no_translation: bool,
@@ -37,6 +37,8 @@ fn main() -> anyhow::Result<()> {
let config = EncodeConfig {
translate: !args.no_translation,
ref_thres: args.ref_thres,
+ max_diff_size: 10_000,
+ min_block_size: 12,
};
let size = Vec2 {