mirror of
https://github.com/outbackdingo/UltraGrid.git
synced 2026-04-05 01:04:54 +00:00
vcomp/jpegxs: reduce default BPP=7/10
the value 3 seems to be very large as a default value If the user omits the setting, it easily exceeeds 1 Gbps for 2160p60. Equivalent for JPEG Q=75 might be something like 0.5-0.7 so using the upper bound.
This commit is contained in:
@@ -129,7 +129,8 @@ state_video_compress_jpegxs::state_video_compress_jpegxs(struct module *parent,
|
|||||||
throw 1;
|
throw 1;
|
||||||
}
|
}
|
||||||
|
|
||||||
encoder.bpp_numerator = 3;
|
encoder.bpp_numerator = 7;
|
||||||
|
encoder.bpp_denominator = 10;
|
||||||
encoder.verbose = VERBOSE_NONE;
|
encoder.verbose = VERBOSE_NONE;
|
||||||
encoder.threads_num = get_cpu_core_count();
|
encoder.threads_num = get_cpu_core_count();
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user