mirror of
https://github.com/Lime3DS/Lime3DS.git
synced 2024-11-11 04:35:05 +01:00
Force camera pixel format to RGB565 on Linux
This commit is contained in:
parent
80cdfe1c45
commit
21bdc03908
@ -172,6 +172,9 @@ void QtMultimediaCameraHandler::CreateCamera(const std::string& camera_name) {
|
||||
}
|
||||
settings.setMinimumFrameRate(30);
|
||||
settings.setMaximumFrameRate(30);
|
||||
#ifdef __linux__
|
||||
settings.setPixelFormat(QVideoFrame::PixelFormat::Format_RGB565);
|
||||
#endif
|
||||
camera->setViewfinder(&camera_surface);
|
||||
camera->load();
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user