diff options
Diffstat (limited to 'evc/scripts/bench_out')
-rwxr-xr-x | evc/scripts/bench_out | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/evc/scripts/bench_out b/evc/scripts/bench_out index 17aa1a4..d55cf08 100755 --- a/evc/scripts/bench_out +++ b/evc/scripts/bench_out @@ -3,9 +3,9 @@ set w $argv[1] set h $argv[2] # for mode in trivial simple-exhaustive simple-fast advanced advanced-partial -for mode in trivial simple-fast - cargo run --release --bin decode -- --debug < samples/encoded-$mode | +for mode in trivial simple-fast advanced + cargo run --release --bin reschmux-decode -- --debug < samples/encoded-$mode | ffmpeg -y -hide_banner -framerate 25 -video_size {$w}x{$h} -pixel_format rgb24 -f rawvideo -i pipe:0 samples/decoded-$mode-debug.mp4 - cargo run --release --bin decode -- < samples/encoded-$mode | + cargo run --release --bin reschmux-decode -- < samples/encoded-$mode | ffmpeg -y -hide_banner -framerate 25 -video_size {$w}x{$h} -pixel_format rgb24 -f rawvideo -i pipe:0 samples/decoded-$mode.mp4 end |