mirror of
https://github.com/qTox/qTox.git
synced 2024-03-22 14:00:36 +08:00
fix(video): workaround for webcams that provide no fps value
fixes #5082
This commit is contained in:
parent
39dc6dacb8
commit
3746bd13bc
|
@ -126,8 +126,10 @@ QVector<VideoMode> v4l2::getDeviceModes(QString devName)
|
|||
|
||||
int error = 0;
|
||||
int fd = deviceOpen(devName, &error);
|
||||
if (fd < 0 || error != 0)
|
||||
if (fd < 0 || error != 0) {
|
||||
return modes;
|
||||
}
|
||||
|
||||
v4l2_fmtdesc vfd{};
|
||||
vfd.type = V4L2_BUF_TYPE_VIDEO_CAPTURE;
|
||||
|
||||
|
@ -156,11 +158,19 @@ QVector<VideoMode> v4l2::getDeviceModes(QString devName)
|
|||
|
||||
QVector<float> rates =
|
||||
getDeviceModeFramerates(fd, mode.width, mode.height, vfd.pixelformat);
|
||||
|
||||
// insert dummy FPS value to have the mode in the list even if we don't know the FPS
|
||||
// this fixes support for some webcams, see #5082
|
||||
if (rates.isEmpty()) {
|
||||
rates.append(0.0f);
|
||||
}
|
||||
|
||||
for (float rate : rates) {
|
||||
mode.FPS = rate;
|
||||
if (!modes.contains(mode))
|
||||
if (!modes.contains(mode)) {
|
||||
modes.append(std::move(mode));
|
||||
}
|
||||
}
|
||||
vfse.index++;
|
||||
}
|
||||
}
|
||||
|
|
|
@ -222,6 +222,11 @@ void AVForm::on_videoModescomboBox_currentIndexChanged(int index)
|
|||
|
||||
void AVForm::selectBestModes(QVector<VideoMode>& allVideoModes)
|
||||
{
|
||||
if (allVideoModes.isEmpty()) {
|
||||
qCritical() << "Trying to select best mode from empty modes list";
|
||||
return;
|
||||
}
|
||||
|
||||
// Identify the best resolutions available for the supposed XXXXp resolutions.
|
||||
std::map<int, VideoMode> idealModes;
|
||||
idealModes[120] = VideoMode(160, 120);
|
||||
|
|
Loading…
Reference in New Issue
Block a user