infoviewer: simplify and fix display of "HD" and "SD" icons

This commit is contained in:
Stefan Seyfried
2012-11-07 09:48:27 +01:00
parent af1383229e
commit f631c7b830

View File

@@ -497,6 +497,7 @@ void CInfoViewerBB::showIcon_Resolution()
icon_name = NEUTRINO_ICON_RESOLUTION_1920; icon_name = NEUTRINO_ICON_RESOLUTION_1920;
break; break;
case 1088: case 1088:
case 1080:
icon_name = NEUTRINO_ICON_RESOLUTION_1080; icon_name = NEUTRINO_ICON_RESOLUTION_1080;
break; break;
case 1440: case 1440:
@@ -539,28 +540,12 @@ void CInfoViewerBB::showIcon_Resolution()
} }
if (g_settings.infobar_show_res == 1) {//show simple resolution icon on infobar if (g_settings.infobar_show_res == 1) {//show simple resolution icon on infobar
videoDecoder->getPictureInfo(xres, yres, framerate); videoDecoder->getPictureInfo(xres, yres, framerate);
switch (yres) { if (yres > 576)
case 1920:
case 1440:
case 1280:
case 1088:
case 720:
icon_name = NEUTRINO_ICON_RESOLUTION_HD; icon_name = NEUTRINO_ICON_RESOLUTION_HD;
break; else if (yres > 0)
case 704:
case 576:
case 544:
case 528:
case 480:
case 382:
case 352:
case 288:
icon_name = NEUTRINO_ICON_RESOLUTION_SD; icon_name = NEUTRINO_ICON_RESOLUTION_SD;
break; else
default:
icon_name = NEUTRINO_ICON_RESOLUTION_000; icon_name = NEUTRINO_ICON_RESOLUTION_000;
break;
}
} }
} }
showBBIcons(CInfoViewerBB::ICON_RES, icon_name); showBBIcons(CInfoViewerBB::ICON_RES, icon_name);