2001-03-31 08:42:27 +02:00
|
|
|
/*
|
|
|
|
* remux.h: A streaming MPEG2 remultiplexer
|
|
|
|
*
|
|
|
|
* See the main source file 'vdr.c' for copyright information and
|
|
|
|
* how to reach the author.
|
|
|
|
*
|
2005-08-26 13:34:07 +02:00
|
|
|
* $Id: remux.h 1.15 2005/08/26 13:22:19 kls Exp $
|
2001-03-31 08:42:27 +02:00
|
|
|
*/
|
|
|
|
|
|
|
|
#ifndef __REMUX_H
|
|
|
|
#define __REMUX_H
|
|
|
|
|
2002-08-10 14:58:25 +02:00
|
|
|
#include <time.h> //XXX FIXME: DVB/linux/dvb/dmx.h should include <time.h> itself!!!
|
|
|
|
#include <linux/dvb/dmx.h>
|
2004-10-16 09:36:28 +02:00
|
|
|
#include "ringbuffer.h"
|
2002-08-04 14:57:29 +02:00
|
|
|
#include "tools.h"
|
2001-03-31 08:42:27 +02:00
|
|
|
|
2005-08-26 13:34:07 +02:00
|
|
|
enum ePesHeader {
|
|
|
|
phNeedMoreData = -1,
|
|
|
|
phInvalid = 0,
|
|
|
|
phMPEG1 = 1,
|
|
|
|
phMPEG2 = 2
|
|
|
|
};
|
|
|
|
|
|
|
|
ePesHeader AnalyzePesHeader(const uchar *Data, int Count, int &PesPayloadOffset, bool *ContinuationHeader = NULL);
|
|
|
|
|
2001-03-31 08:42:27 +02:00
|
|
|
// Picture types:
|
|
|
|
#define NO_PICTURE 0
|
|
|
|
#define I_FRAME 1
|
|
|
|
#define P_FRAME 2
|
|
|
|
#define B_FRAME 3
|
|
|
|
|
2005-01-16 14:40:47 +01:00
|
|
|
#define MAXTRACKS 64
|
|
|
|
|
2001-06-02 10:47:40 +02:00
|
|
|
class cTS2PES;
|
2001-03-31 08:42:27 +02:00
|
|
|
|
|
|
|
class cRemux {
|
|
|
|
private:
|
2001-06-02 10:47:40 +02:00
|
|
|
bool exitOnFailure;
|
2005-01-16 14:40:47 +01:00
|
|
|
bool isRadio;
|
2004-02-14 10:43:57 +01:00
|
|
|
int numUPTerrors;
|
2001-03-31 08:42:27 +02:00
|
|
|
bool synced;
|
2001-06-02 10:47:40 +02:00
|
|
|
int skipped;
|
2005-01-16 14:40:47 +01:00
|
|
|
cTS2PES *ts2pes[MAXTRACKS];
|
|
|
|
int numTracks;
|
2004-10-16 09:36:28 +02:00
|
|
|
cRingBufferLinear *resultBuffer;
|
|
|
|
int resultSkipped;
|
2001-06-02 10:47:40 +02:00
|
|
|
int GetPid(const uchar *Data);
|
2001-03-31 08:42:27 +02:00
|
|
|
int GetPacketLength(const uchar *Data, int Count, int Offset);
|
|
|
|
int ScanVideoPacket(const uchar *Data, int Count, int Offset, uchar &PictureType);
|
|
|
|
public:
|
2005-01-16 14:40:47 +01:00
|
|
|
cRemux(int VPid, const int *APids, const int *DPids, const int *SPids, bool ExitOnFailure = false);
|
|
|
|
///< Creates a new remuxer for the given PIDs. VPid is the video PID, while
|
|
|
|
///< APids, DPids and SPids are pointers to zero terminated lists of audio,
|
|
|
|
///< dolby and subtitle PIDs (the pointers may be NULL if there is no such
|
|
|
|
///< PID). If ExitOnFailure is true, the remuxer will initiate an "emergency
|
|
|
|
///< exit" in case of problems with the data stream.
|
2001-03-31 08:42:27 +02:00
|
|
|
~cRemux();
|
2005-08-07 10:29:36 +02:00
|
|
|
void SetTimeouts(int PutTimeout, int GetTimeout) { resultBuffer->SetTimeouts(PutTimeout, GetTimeout); }
|
|
|
|
///< By default cRemux assumes that Put() and Get() are called from different
|
|
|
|
///< threads, and uses a timeout in the Get() function in case there is no
|
|
|
|
///< data available. SetTimeouts() can be used to modify these timeouts.
|
|
|
|
///< Especially if Put() and Get() are called from the same thread, setting
|
|
|
|
///< both timeouts to 0 is recommended.
|
2004-10-16 09:36:28 +02:00
|
|
|
int Put(const uchar *Data, int Count);
|
|
|
|
///< Puts at most Count bytes of Data into the remuxer.
|
|
|
|
///< \return Returns the number of bytes actually consumed from Data.
|
|
|
|
uchar *Get(int &Count, uchar *PictureType = NULL);
|
|
|
|
///< Gets all currently available data from the remuxer.
|
|
|
|
///< \return Count contains the number of bytes the result points to, and
|
|
|
|
///< PictureType (if not NULL) will contain one of NO_PICTURE, I_FRAME, P_FRAME
|
|
|
|
///< or B_FRAME.
|
|
|
|
void Del(int Count);
|
|
|
|
///< Deletes Count bytes from the remuxer. Count must be the number returned
|
|
|
|
///< from a previous call to Get(). Several calls to Del() with fractions of
|
|
|
|
///< a previously returned Count may be made, but the total sum of all Count
|
|
|
|
///< values must be exactly what the previous Get() has returned.
|
|
|
|
void Clear(void);
|
|
|
|
///< Clears the remuxer of all data it might still contain, keeping the PID
|
|
|
|
///< settings as they are.
|
2003-04-26 15:11:17 +02:00
|
|
|
static void SetBrokenLink(uchar *Data, int Length);
|
2001-03-31 08:42:27 +02:00
|
|
|
};
|
|
|
|
|
|
|
|
#endif // __REMUX_H
|