fix build hd60

Origin commit data
------------------
Branch: master
Commit: e2d3c57ade
Author: max_10 <max_10@gmx.de>
Date: 2020-06-19 (Fri, 19 Jun 2020)

Origin message was:
------------------
- fix build hd60

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

------------------
This commit was generated by Migit
This commit is contained in:
max_10
2020-06-19 23:51:54 +02:00
committed by vanhofen
parent 28b5a58b9c
commit 69b736f33f
2 changed files with 5 additions and 5 deletions

View File

@@ -76,12 +76,12 @@ void cPlayback::Close(void)
}
bool cPlayback::Start(std::string filename, std::string headers)
bool cPlayback::Start(std::string filename, std::string headers, std::string filename2)
{
return Start((char *) filename.c_str(), 0, 0, 0, 0, 0, headers);
return Start((char *) filename.c_str(), 0, 0, 0, 0, 0, headers,filename2);
}
bool cPlayback::Start(char *filename, int vpid, int vtype, int apid, int ac3, int, std::string headers __attribute__((unused)))
bool cPlayback::Start(char *filename, int vpid, int vtype, int apid, int ac3, int, std::string headers __attribute__((unused)), std::string filename2 __attribute__((unused)))
{
bool ret = false;

View File

@@ -77,8 +77,8 @@ public:
bool Open(playmode_t PlayMode);
void Close(void);
bool Start(char *filename, int vpid, int vtype, int apid, int ac3, int duration, std::string headers = "");
bool Start(std::string filename, std::string headers = "");
bool Start(char *filename, int vpid, int vtype, int apid, int ac3, int duration, std::string headers = "", std::string filename2 = "");
bool Start(std::string filename, std::string headers = "", std::string filename2 = "");
bool SetAPid(int pid, bool ac3 = false);
bool SetVPid(int /*pid*/);
bool SetSubtitlePid(int pid);