Files
recycled-ni-neutrino/lib/libtriple/record_td.h
Stefan Seyfried f67eaf6a4f libtriple: add ChangePids() to cRecord
This is pretty much untested for now, handle with care!


Origin commit data
------------------
Branch: ni/coolstream
Commit: d812673a4e
Author: Stefan Seyfried <seife@tuxbox-git.slipkontur.de>
Date: 2011-02-05 (Sat, 05 Feb 2011)



------------------
This commit was generated by Migit
2012-04-17 19:33:46 +02:00

41 lines
880 B
C++

#ifndef __RECORD_TD_H
#define __RECORD_TD_H
#include <pthread.h>
#include "dmx_td.h"
typedef enum {
RECORD_RUNNING,
RECORD_STOPPED,
RECORD_FAILED_READ, /* failed to read from DMX */
RECORD_FAILED_OVERFLOW, /* cannot write fast enough */
RECORD_FAILED_FILE, /* cannot write to file */
RECORD_FAILED_MEMORY /* out of memory */
} record_state_t;
class cRecord
{
private:
int file_fd;
cDemux *dmx;
pthread_t record_thread;
bool record_thread_running;
record_state_t exit_flag;
public:
cRecord(int num = 0);
~cRecord();
bool Open(int numpids);
bool Start(int fd, unsigned short vpid, unsigned short *apids, int numpids);
bool Stop(void);
bool ChangePids(unsigned short vpid, unsigned short *apids, int numapids);
void RecordThread();
#if 0
/* apparently unused */
void Close(void);
void RecordNotify(int Event, void *pData);
#endif
};
#endif