Skip to content

Commit

Permalink
reduce fec on polluted preset
Browse files Browse the repository at this point in the history
  • Loading branch information
Consti10 committed Sep 25, 2023
1 parent 4036632 commit e6b94b6
Showing 1 changed file with 4 additions and 5 deletions.
9 changes: 4 additions & 5 deletions qml/ui/widgets/WBLinkRateControlWidget.qml
Original file line number Diff line number Diff line change
Expand Up @@ -467,17 +467,17 @@ Make the video more stable (less microfreezes) on the cost of less image quality
text: "POLLUTED"
onClicked: {
set_keyframe_interval(2)
set_fec_percentage(50)
set_fec_percentage(30)
}
highlighted: m_curr_keyframe_i == 2 && m_curr_fec_perc==50
highlighted: m_curr_keyframe_i == 2 && m_curr_fec_perc==30
}
Button{
text: "CITY"
onClicked: {
set_keyframe_interval(3)
set_fec_percentage(30)
set_fec_percentage(20)
}
highlighted: m_curr_keyframe_i == 3 && m_curr_fec_perc==30
highlighted: m_curr_keyframe_i == 3 && m_curr_fec_perc==20
}
Button{
text: "DEFAULT"
Expand All @@ -499,7 +499,6 @@ Make the video more stable (less microfreezes) on the cost of less image quality
}
}
}

}
}

Expand Down

0 comments on commit e6b94b6

Please sign in to comment.