movieplayer arm: add option to play separate audio file

This commit is contained in:
Jacek Jendrzej
2019-11-03 18:42:05 +01:00
parent a603c5d8a4
commit fa951c883c
6 changed files with 39 additions and 15 deletions

View File

@@ -811,8 +811,8 @@ bool CStreamStream::Open()
if (url.empty())
return false;
std::string pretty_name, livestreamInfo1, livestreamInfo2, headers;
if (!CMoviePlayerGui::getInstance(true).getLiveUrl(channel->getUrl(), channel->getScriptName(), url, pretty_name, livestreamInfo1, livestreamInfo2,headers)) {
std::string pretty_name, livestreamInfo1, livestreamInfo2, headers, dumb;
if (!CMoviePlayerGui::getInstance(true).getLiveUrl(channel->getUrl(), channel->getScriptName(), url, pretty_name, livestreamInfo1, livestreamInfo2,headers,dumb)) {
printf("%s: getLiveUrl() [%s] failed!\n", __FUNCTION__, url.c_str());
return false;
}