activate streaminfo2 for non COOL_HARDWARE

Origin commit data
------------------
Branch: ni/coolstream
Commit: 96598252a9
Author: GetAway <get-away@t-online.de>
Date: 2018-11-13 (Tue, 13 Nov 2018)


------------------
No further description and justification available within origin commit message!

------------------
This commit was generated by Migit
This commit is contained in:
GetAway
2018-11-13 20:52:29 +01:00
committed by vanhofen
parent af42cd6d60
commit 899c60593a
5 changed files with 33 additions and 8 deletions

View File

@@ -2756,6 +2756,24 @@ void CMoviePlayerGui::selectChapter()
}
}
std::string CMoviePlayerGui::getAPIDDesc(unsigned int i)
{
std::string apidtitle;
if (i < numpida)
getAudioName(apids[i], apidtitle);
if (apidtitle == "")
apidtitle = "Stream " + to_string(i);
return apidtitle;
}
unsigned int CMoviePlayerGui::getAPID(void)
{
for (unsigned int i = 0; i < numpida; i++)
if (apids[i] == currentapid)
return i;
return -1;
}
void CMoviePlayerGui::selectSubtitle()
{
if (!is_file_player)