mirror of
https://github.com/tuxbox-fork-migrations/recycled-ni-neutrino.git
synced 2025-08-28 16:01:10 +02:00
webtv: add prefered quality option for use in webtv plugins
Origin commit data
------------------
Branch: ni/coolstream
Commit: 92b69d621b
Author: Jacek Jendrzej <overx300@gmail.com>
Date: 2021-09-19 (Sun, 19 Sep 2021)
------------------
No further description and justification available within origin commit message!
------------------
This commit was generated by Migit
This commit is contained in:
@@ -58,6 +58,30 @@ static const struct button_label CWebChannelsSetupFooterButtons[] =
|
||||
};
|
||||
#define CWebChannelsSetupFooterButtonCount (sizeof(CWebChannelsSetupFooterButtons)/sizeof(CWebChannelsSetupFooterButtons[0]))
|
||||
|
||||
#if BOXMODEL_CST_HD1 || BOXMODEL_CST_HD2 || HAVE_SPARK_HARDWARE
|
||||
#define WEBTV_XML_QUALITY_OPTION_COUNT 5
|
||||
CMenuOptionChooser::keyval_ext WEBTV_XML_QUALITY_OPTIONS[WEBTV_XML_QUALITY_OPTION_COUNT] =
|
||||
{
|
||||
{ 1920, NONEXISTANT_LOCALE, "1920x1080" },
|
||||
{ 1280, NONEXISTANT_LOCALE, "1280x720" },
|
||||
{ 854, NONEXISTANT_LOCALE, "854x480" },
|
||||
{ 640, NONEXISTANT_LOCALE, "640x360" },
|
||||
{ 480, NONEXISTANT_LOCALE, "480x270" }
|
||||
};
|
||||
#else
|
||||
#define WEBTV_XML_QUALITY_OPTION_COUNT 7
|
||||
CMenuOptionChooser::keyval_ext WEBTV_XML_QUALITY_OPTIONS[WEBTV_XML_QUALITY_OPTION_COUNT] =
|
||||
{
|
||||
{ 3840, NONEXISTANT_LOCALE, "3840x2160" },
|
||||
{ 2560, NONEXISTANT_LOCALE, "2560x1440" },
|
||||
{ 1920, NONEXISTANT_LOCALE, "1920x1080" },
|
||||
{ 1280, NONEXISTANT_LOCALE, "1280x720" },
|
||||
{ 854, NONEXISTANT_LOCALE, "854x480" },
|
||||
{ 640, NONEXISTANT_LOCALE, "640x360" },
|
||||
{ 480, NONEXISTANT_LOCALE, "480x270" }
|
||||
};
|
||||
#endif
|
||||
|
||||
int CWebChannelsSetup::exec(CMenuTarget *parent, const std::string &actionKey)
|
||||
{
|
||||
int res = menu_return::RETURN_REPAINT;
|
||||
@@ -230,6 +254,10 @@ int CWebChannelsSetup::Show()
|
||||
}
|
||||
oc->setHint("", hint_text);
|
||||
m->addItem(oc);
|
||||
if(!webradio)
|
||||
{
|
||||
m->addItem(new CMenuOptionChooser(LOCALE_WEBTV_XML_PREF_QUALITY, &g_settings.webtv_xml_quality, WEBTV_XML_QUALITY_OPTIONS, WEBTV_XML_QUALITY_OPTION_COUNT, true, NULL, CRCInput::convertDigitToKey(shortcut++), "", true));
|
||||
}
|
||||
m->addItem(GenericMenuSeparator);
|
||||
|
||||
item_offset = m->getItemsCount();
|
||||
|
Reference in New Issue
Block a user