Commit d7d31d63 authored by Anatoly Stolbov's avatar Anatoly Stolbov Committed by Yoann Lopes
Browse files

Android camera: use closest viewfinder resolution


For some cameras difference between preview aspect rate and capture
aspect rate is more than 0.01. Therefore it is better to use preview size
with closest aspect rate.

Task-number: QTBUG-50813
Change-Id: I1284c8ec2be1aa160a656e396a52960fa06aaa56
Reviewed-by: default avatarYoann Lopes <yoann.lopes@qt.io>
Showing with 13 additions and 2 deletions
......@@ -261,17 +261,28 @@ void QAndroidCameraSession::adjustViewfinderSize(const QSize &captureSize, bool
// search for viewfinder resolution with the same aspect ratio
const qreal aspectRatio = qreal(captureSize.width()) / qreal(captureSize.height());
QList<QSize> previewSizes = m_camera->getSupportedPreviewSizes();
qreal minAspectDiff = 1;
QSize closestResolution;
for (int i = previewSizes.count() - 1; i >= 0; --i) {
const QSize &size = previewSizes.at(i);
if (qAbs(aspectRatio - (qreal(size.width()) / size.height())) < 0.01) {
const qreal sizeAspect = qreal(size.width()) / size.height();
if (qFuzzyCompare(aspectRatio, sizeAspect)) {
adjustedViewfinderResolution = size;
break;
} else if (minAspectDiff > qAbs(sizeAspect - aspectRatio)) {
closestResolution = size;
minAspectDiff = qAbs(sizeAspect - aspectRatio);
}
}
if (!adjustedViewfinderResolution.isValid()) {
qWarning("Cannot find a viewfinder resolution matching the capture aspect ratio.");
return;
if (closestResolution.isValid()) {
adjustedViewfinderResolution = closestResolution;
qWarning("Using closest viewfinder resolution.");
} else {
return;
}
}
}
......
Supports Markdown
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment