Skip to content
Snippets Groups Projects
Commit 38a35363 authored by Sébastien Blin's avatar Sébastien Blin Committed by Guillaume Roguez
Browse files

video device: sort resolutions by area.


Now, resolutions are sorted by area, not by alphabetical order.

Change-Id: Iaa9ef15c6009c3884628d2177493ef73ad98a037
Reviewed-by: default avatarGuillaume Roguez <guillaume.roguez@savoirfairelinux.com>
parent 2192da21
No related branches found
No related tags found
No related merge requests found
......@@ -53,19 +53,28 @@ d_ptr(new VideoDevicePrivate(this))
Video::Channel* chan = new Video::Channel(this,channels.key());
d_ptr->m_lChannels << chan;
QList<Video::Resolution*> validResolutions;
QMapIterator<QString, VectorString> resolutions(channels.value());
while (resolutions.hasNext()) {
resolutions.next();
Video::Resolution* res = new Video::Resolution(resolutions.key(),chan);
chan->d_ptr->m_lValidResolutions << res;
validResolutions << res;
foreach(const QString& rate, resolutions.value()) {
Video::Rate* r = new Video::Rate(res,rate);
res->d_ptr->m_lValidRates << r;
}
}
// Sort resolutions by size area.
qSort(validResolutions.begin(),
validResolutions.end(),
[](Video::Resolution* resA, Video::Resolution* resB) {
return resA->width() * resA->height() > resB->width() * resB->height();
});
chan->d_ptr->m_lValidResolutions = validResolutions;
}
Q_UNUSED(cap)
}
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment