diff options
author | metamuffin <metamuffin@disroot.org> | 2023-11-18 17:37:57 +0100 |
---|---|---|
committer | metamuffin <metamuffin@disroot.org> | 2023-11-18 17:37:57 +0100 |
commit | 754ebf34cbb6280ef77421e1ca54d35d727dc6f7 (patch) | |
tree | 00548d19aafdcf34bda914b0c8c15654b720ac7a /flowy/src/motion/enc.rs | |
parent | cdb9a3afabe7a239a08c640b19242ff9b1e3b051 (diff) | |
download | video-codec-experiments-754ebf34cbb6280ef77421e1ca54d35d727dc6f7.tar video-codec-experiments-754ebf34cbb6280ef77421e1ca54d35d727dc6f7.tar.bz2 video-codec-experiments-754ebf34cbb6280ef77421e1ca54d35d727dc6f7.tar.zst |
debug and better search
Diffstat (limited to 'flowy/src/motion/enc.rs')
-rw-r--r-- | flowy/src/motion/enc.rs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/flowy/src/motion/enc.rs b/flowy/src/motion/enc.rs index 56b459b..d3e8a81 100644 --- a/flowy/src/motion/enc.rs +++ b/flowy/src/motion/enc.rs @@ -38,7 +38,7 @@ impl MotionEncoder { block_size: [params.block_width as i32, params.block_height as i32], output_stride: (params.width / params.block_width) as u32, search_radius: 16, - skip_threshold: 0.07, + skip_threshold: 0.1, ..Default::default() }; |