mirror of
https://github.com/tuxbox-fork-migrations/recycled-ni-libstb-hal.git
synced 2025-08-26 23:12:44 +02:00
This might actually even work, but is untested.
Origin commit data
------------------
Branch: master
Commit: 9e3c6b445a
Author: Stefan Seyfried <seife@tuxbox-git.slipkontur.de>
Date: 2012-02-05 (Sun, 05 Feb 2012)
------------------
This commit was generated by Migit
67 lines
1.6 KiB
C++
67 lines
1.6 KiB
C++
#ifndef __DEMUX_TD_H
|
|
#define __DEMUX_TD_H
|
|
|
|
#include <cstdlib>
|
|
#include <vector>
|
|
#include <inttypes.h>
|
|
#include <sys/ioctl.h>
|
|
#include <linux/dvb/dmx.h>
|
|
|
|
typedef enum
|
|
{
|
|
DMX_INVALID = 0,
|
|
DMX_VIDEO_CHANNEL = 1,
|
|
DMX_AUDIO_CHANNEL,
|
|
DMX_PES_CHANNEL,
|
|
DMX_PSI_CHANNEL,
|
|
DMX_PIP_CHANNEL,
|
|
DMX_TP_CHANNEL,
|
|
DMX_PCR_ONLY_CHANNEL
|
|
} DMX_CHANNEL_TYPE;
|
|
|
|
typedef struct
|
|
{
|
|
int fd;
|
|
unsigned short pid;
|
|
} pes_pids;
|
|
|
|
class cDemux
|
|
{
|
|
private:
|
|
int num;
|
|
int fd;
|
|
int buffersize;
|
|
bool measure;
|
|
uint64_t last_measure, last_data;
|
|
DMX_CHANNEL_TYPE dmx_type;
|
|
std::vector<pes_pids> pesfds;
|
|
struct dmx_sct_filter_params s_flt;
|
|
struct dmx_pes_filter_params p_flt;
|
|
public:
|
|
|
|
bool Open(DMX_CHANNEL_TYPE pes_type, void * x = NULL, int y = 0);
|
|
void Close(void);
|
|
bool Start(bool record = false);
|
|
bool Stop(void);
|
|
int Read(unsigned char *buff, int len, int Timeout = 0);
|
|
bool sectionFilter(unsigned short pid, const unsigned char * const filter, const unsigned char * const mask, int len, int Timeout = 0, const unsigned char * const negmask = NULL);
|
|
bool pesFilter(const unsigned short pid);
|
|
#define AVSYNC_TYPE int
|
|
void SetSyncMode(AVSYNC_TYPE mode);
|
|
void * getBuffer();
|
|
void * getChannel();
|
|
DMX_CHANNEL_TYPE getChannelType(void) { return dmx_type; };
|
|
bool addPid(unsigned short pid);
|
|
void getSTC(int64_t * STC);
|
|
int getUnit(void);
|
|
// TD only functions
|
|
int getFD(void) { return fd; }; /* needed by cPlayback class */
|
|
void removePid(unsigned short Pid); /* needed by cRecord class */
|
|
std::vector<pes_pids> getPesPids(void) { return pesfds; };
|
|
//
|
|
cDemux(int num = 0);
|
|
~cDemux();
|
|
};
|
|
|
|
#endif //__DEMUX_H
|