mirror of
https://github.com/tuxbox-fork-migrations/recycled-ni-neutrino.git
synced 2025-08-29 08:21:07 +02:00
infoviewer_bb.cpp: Optimize display of simple resolution in the info bar
Origin commit data
------------------
Commit: d9cf5197f4
Author: Michael Liebmann <tuxcode.bbg@gmail.com>
Date: 2012-11-15 (Thu, 15 Nov 2012)
Origin message was:
------------------
* infoviewer_bb.cpp: Optimize display of simple resolution in the info bar
This commit is contained in:
@@ -542,29 +542,12 @@ void CInfoViewerBB::showIcon_Resolution()
|
||||
}
|
||||
if (g_settings.infobar_show_res == 1) {//show simple resolution icon on infobar
|
||||
videoDecoder->getPictureInfo(xres, yres, framerate);
|
||||
switch (yres) {
|
||||
case 1920:
|
||||
case 1440:
|
||||
case 1280:
|
||||
case 1080:
|
||||
case 1088:
|
||||
case 720:
|
||||
if (yres > 704)
|
||||
icon_name = NEUTRINO_ICON_RESOLUTION_HD;
|
||||
break;
|
||||
case 704:
|
||||
case 576:
|
||||
case 544:
|
||||
case 528:
|
||||
case 480:
|
||||
case 382:
|
||||
case 352:
|
||||
case 288:
|
||||
else if (yres >= 288)
|
||||
icon_name = NEUTRINO_ICON_RESOLUTION_SD;
|
||||
break;
|
||||
default:
|
||||
else
|
||||
icon_name = NEUTRINO_ICON_RESOLUTION_000;
|
||||
break;
|
||||
}
|
||||
}
|
||||
}
|
||||
showBBIcons(CInfoViewerBB::ICON_RES, icon_name);
|
||||
|
Reference in New Issue
Block a user