remove log
This commit is contained in:
parent
fdca9acbb7
commit
175ab0b58c
@ -262,7 +262,6 @@ class _RemotePageState extends State<RemotePage> {
|
|||||||
: SafeArea(child:
|
: SafeArea(child:
|
||||||
OrientationBuilder(builder: (ctx, orientation) {
|
OrientationBuilder(builder: (ctx, orientation) {
|
||||||
if (_currentOrientation != orientation) {
|
if (_currentOrientation != orientation) {
|
||||||
debugPrint("on orientation changed");
|
|
||||||
Timer(Duration(milliseconds: 200), () {
|
Timer(Duration(milliseconds: 200), () {
|
||||||
resetMobileActionsOverlay();
|
resetMobileActionsOverlay();
|
||||||
_currentOrientation = orientation;
|
_currentOrientation = orientation;
|
||||||
@ -1061,6 +1060,8 @@ void showOptions() {
|
|||||||
getRadio('Optimize reaction time', 'low', quality, setQuality),
|
getRadio('Optimize reaction time', 'low', quality, setQuality),
|
||||||
Divider(color: MyTheme.border),
|
Divider(color: MyTheme.border),
|
||||||
getToggle(setState, 'show-remote-cursor', 'Show remote cursor'),
|
getToggle(setState, 'show-remote-cursor', 'Show remote cursor'),
|
||||||
|
getToggle(
|
||||||
|
setState, 'show-quality-monitor', 'Show quality monitor'),
|
||||||
] +
|
] +
|
||||||
more),
|
more),
|
||||||
actions: [],
|
actions: [],
|
||||||
|
@ -147,7 +147,6 @@ impl VideoQoS {
|
|||||||
// handle image_quality change from peer
|
// handle image_quality change from peer
|
||||||
pub fn update_image_quality(&mut self, image_quality: i32) {
|
pub fn update_image_quality(&mut self, image_quality: i32) {
|
||||||
let image_quality = Self::convert_quality(image_quality) as _;
|
let image_quality = Self::convert_quality(image_quality) as _;
|
||||||
log::debug!("VideoQoS update_image_quality: {}", image_quality);
|
|
||||||
if self.current_image_quality != image_quality {
|
if self.current_image_quality != image_quality {
|
||||||
self.current_image_quality = image_quality;
|
self.current_image_quality = image_quality;
|
||||||
let _ = self.generate_bitrate().ok();
|
let _ = self.generate_bitrate().ok();
|
||||||
|
Loading…
x
Reference in New Issue
Block a user