Skip to content

Commit

Permalink
add 640x480@30 since it is the default res for a lot of usb cameras
Browse files Browse the repository at this point in the history
  • Loading branch information
Consti10 committed Nov 21, 2023
1 parent 7b45bba commit 64bcd8e
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion qml/ui/widgets/VideoBitrateWidgetGeneric.qml
Original file line number Diff line number Diff line change
Expand Up @@ -110,6 +110,7 @@ BaseWidget {

ListModel{
id: resolutions_model
ListElement {title: "480p@30fps (4:3)"; value: "640x480@30"}
ListElement {title: "480p@60fps (4:3)"; value: "640x480@60"}
ListElement {title: "480p@60fps (16:9)"; value: "848x480@60"}
ListElement {title: "720p@49fps (16:9)"; value: "1280x720@49"}
Expand Down Expand Up @@ -207,7 +208,7 @@ BaseWidget {
const resolution=model.get(currentIndex).value
console.log("Selected resolution: "+resolution);
set_camera_resolution(resolution);
_qopenhd.toast_text("NOTE: OpenHD cannot check if your HW actually supports a given resolution at full frame rate");
_qopenhd.show_toast("NOTE: OpenHD cannot check if your HW actually supports a given resolution / framerate");
}
enabled: _ohdSystemAir.is_alive;
}
Expand Down

0 comments on commit 64bcd8e

Please sign in to comment.