playback: fix compiling generic pc

Origin commit data
------------------
Branch: master
Commit: ddc3bf3d30
Author: TangoCash <eric@loxat.de>
Date: 2017-05-04 (Thu, 04 May 2017)

Origin message was:
------------------
-playback: fix compiling generic pc

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

------------------
This commit was generated by Migit
This commit is contained in:
TangoCash
2017-05-04 12:39:23 +02:00
parent a03593f877
commit 09b0114775

View File

@@ -18,7 +18,7 @@ bool cPlayback::Start(std::string filename, std::string headers)
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, std::string headers)
bool cPlayback::Start(char *filename, int vpid, int vtype, int apid, int ac3, int duration, 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);
@@ -140,3 +140,8 @@ cPlayback::~cPlayback()
{
printf("%s:%s\n", FILENAME, __func__);
}
uint64_t cPlayback::GetReadCount()
{
return 0;
}