diff options
| author | s-ol <s+removethis@s-ol.nu> | 2026-05-22 13:11:04 +0000 |
|---|---|---|
| committer | s-ol <s+removethis@s-ol.nu> | 2026-05-22 13:40:26 +0000 |
| commit | 0f55c2011032a6ada8a66d2743efc88e229ff5a6 (patch) | |
| tree | 45be24a59cd798ca57d3c9f23a02720f1ad75030 /src/bin/tsv_video_stream.rs | |
| parent | fix SRGB fail (diff) | |
| download | wgsl-view-main.tar.gz wgsl-view-main.zip | |
Diffstat (limited to '')
| -rw-r--r-- | src/bin/tsv_video_stream.rs | 7 |
1 files changed, 1 insertions, 6 deletions
diff --git a/src/bin/tsv_video_stream.rs b/src/bin/tsv_video_stream.rs index c2db35c..2345c99 100644 --- a/src/bin/tsv_video_stream.rs +++ b/src/bin/tsv_video_stream.rs @@ -34,12 +34,7 @@ fn main() { } let info = ffmpeg::probe_video(ff_args, None); - log::info!( - "{}x{} @ {:.2}fps, tsv image: {name}", - info.width, - info.height, - info.fps - ); + log::info!("probe results: {:?}", info); let instance = gpu::create_instance(); let adapter = gpu::create_adapter(&instance, None); |
