adapt cRecord API to coolstream changes

This commit is contained in:
Stefan Seyfried
2012-10-12 06:24:16 +02:00
parent 9f433f9dfa
commit c4422bcfbb
4 changed files with 38 additions and 4 deletions

View File

@@ -54,7 +54,7 @@ void cRecord::Close(void)
}
#endif
bool cRecord::Start(int fd, unsigned short vpid, unsigned short * apids, int numpids)
bool cRecord::Start(int fd, unsigned short vpid, unsigned short *apids, int numpids, uint64_t)
{
lt_info("%s: fd %d, vpid 0x%03x\n", __func__, fd, vpid);
int i;
@@ -306,3 +306,13 @@ void cRecord::RecordThread()
pthread_exit(NULL);
}
int GetStatus()
{
/* dummy for now */
return REC_STATUS_OK;
}
void ResetStatus()
{
return;
}