diff options
author | metamuffin <metamuffin@disroot.org> | 2022-12-07 17:16:40 +0100 |
---|---|---|
committer | metamuffin <metamuffin@disroot.org> | 2022-12-07 17:16:40 +0100 |
commit | 85d20c4f4cf3656fbf7c27b6b8bbf9536e3ae04d (patch) | |
tree | 06497577894131a66f3f4874a9865da5b814fe17 /evc/scripts | |
parent | a713143ef9c1187c37004043b1d3322d773f9ea0 (diff) | |
download | video-codec-experiments-85d20c4f4cf3656fbf7c27b6b8bbf9536e3ae04d.tar video-codec-experiments-85d20c4f4cf3656fbf7c27b6b8bbf9536e3ae04d.tar.bz2 video-codec-experiments-85d20c4f4cf3656fbf7c27b6b8bbf9536e3ae04d.tar.zst |
refactor, matrix math
Diffstat (limited to 'evc/scripts')
-rwxr-xr-x | evc/scripts/report | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/evc/scripts/report b/evc/scripts/report index fee3c54..c6f1085 100755 --- a/evc/scripts/report +++ b/evc/scripts/report @@ -3,7 +3,7 @@ cargo build --release begin echo "version: $argv[1]" echo "commit: $(cat ../.git/refs/heads/master | head -c 10)" - echo "encode: $(command time -f %U ./target/release/encode -W 1920 -H 1080 <samples/raw >samples/encoded 2>| tail -n 1)s" + echo "encode: $(command time -f %U ./target/release/encode -W (math 1920 / 2) -H (math 1080 / 2) <samples/raw >samples/encoded 2>| tail -n 1)s" echo "decode: $(command time -f %U ./target/release/decode <samples/encoded >samples/decoded 2>| tail -n 1)s" echo "size: $(du -h samples/encoded | cut -f 1)" end | tee -a reports/(date) |