porting cookie.patch to generic

This commit is contained in:
TangoCash
2016-04-03 09:35:35 +02:00
parent 182baf4e57
commit 36f199b2fa
4 changed files with 6 additions and 6 deletions

View File

@@ -15,10 +15,10 @@ void cPlayback::Close(void)
bool cPlayback::Start(std::string filename, std::string headers)
{
Start((char *) filename.c_str(),0,0,0,0,0);
return Start((char*) filename.c_str(),0,0,0,0,0, headers);
}
bool cPlayback::Start(char * filename, int vpid, int vtype, int apid, int ac3, int duration)
bool cPlayback::Start(char *filename, int vpid, int vtype, int apid, int ac3, int, std::string headers)
{
printf("%s:%s - filename=%s vpid=%u vtype=%d apid=%u ac3=%d duration=%i\n",
FILENAME, __func__, filename, vpid, vtype, apid, ac3, duration);