libtriple: bring cRecord::Open in line with CS code

Origin commit data
------------------
Branch: master
Commit: 776f4ba518
Author: Stefan Seyfried <seife@tuxbox-git.slipkontur.de>
Date: 2011-10-01 (Sat, 01 Oct 2011)


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

------------------
This commit was generated by Migit
This commit is contained in:
Stefan Seyfried
2011-10-01 20:29:49 +02:00
parent c0e4acce10
commit a97c0c317e
2 changed files with 3 additions and 8 deletions

View File

@@ -44,7 +44,7 @@ cRecord::~cRecord()
INFO("end\n"); INFO("end\n");
} }
bool cRecord::Open(int /*numpids*/) bool cRecord::Open(void)
{ {
INFO("\n"); INFO("\n");
exit_flag = RECORD_STOPPED; exit_flag = RECORD_STOPPED;

View File

@@ -25,16 +25,11 @@ class cRecord
cRecord(int num = 0); cRecord(int num = 0);
~cRecord(); ~cRecord();
bool Open(int numpids); bool Open();
bool Start(int fd, unsigned short vpid, unsigned short *apids, int numpids); bool Start(int fd, unsigned short vpid, unsigned short *apids, int numapids);
bool Stop(void); bool Stop(void);
bool ChangePids(unsigned short vpid, unsigned short *apids, int numapids); bool ChangePids(unsigned short vpid, unsigned short *apids, int numapids);
void RecordThread(); void RecordThread();
#if 0
/* apparently unused */
void Close(void);
void RecordNotify(int Event, void *pData);
#endif
}; };
#endif #endif