aboutsummaryrefslogtreecommitdiff
path: root/stream/src/stream_info.rs
diff options
context:
space:
mode:
Diffstat (limited to 'stream/src/stream_info.rs')
-rw-r--r--stream/src/stream_info.rs12
1 files changed, 6 insertions, 6 deletions
diff --git a/stream/src/stream_info.rs b/stream/src/stream_info.rs
index 694a44f..3312c71 100644
--- a/stream/src/stream_info.rs
+++ b/stream/src/stream_info.rs
@@ -90,12 +90,12 @@ fn stream_formats(config: &Config, t: &TrackEntry, remux_bitrate: f64) -> Vec<St
let sw = t.video.as_ref().unwrap().pixel_width;
let sh = t.video.as_ref().unwrap().pixel_height;
for (w, br) in [
- (3840, 6000e3),
- (1920, 5000e3),
- (1920, 2000e3),
- (1280, 1500e3),
- (640, 800e3),
- (320, 200e3),
+ (3840, 6e6),
+ (1920, 5e6),
+ (1920, 2e6),
+ (1280, 1.5e6),
+ (640, 0.8e6),
+ (320, 0.2e6),
] {
if w > sw {
continue;