2001-03-31 08:42:27 +02:00
|
|
|
/*
|
|
|
|
* remux.c: A streaming MPEG2 remultiplexer
|
|
|
|
*
|
|
|
|
* See the main source file 'vdr.c' for copyright information and
|
|
|
|
* how to reach the author.
|
|
|
|
*
|
2001-06-02 10:47:40 +02:00
|
|
|
* The parts of this code that implement cTS2PES have been taken from
|
|
|
|
* the Linux DVB driver's 'tuxplayer' example and were rewritten to suit
|
|
|
|
* VDR's needs.
|
|
|
|
*
|
2005-08-28 11:46:44 +02:00
|
|
|
* The cRepacker family's code was originally written by Reinhard Nissl <rnissl@gmx.de>,
|
2005-01-15 12:09:22 +01:00
|
|
|
* and adapted to the VDR coding style by Klaus.Schmidinger@cadsoft.de.
|
|
|
|
*
|
2006-01-08 11:44:37 +01:00
|
|
|
* $Id: remux.c 1.53 2006/01/08 11:40:16 kls Exp $
|
2001-03-31 08:42:27 +02:00
|
|
|
*/
|
|
|
|
|
|
|
|
#include "remux.h"
|
2002-08-11 13:32:23 +02:00
|
|
|
#include <stdlib.h>
|
2005-01-16 14:40:47 +01:00
|
|
|
#include "channels.h"
|
2001-06-02 10:47:40 +02:00
|
|
|
#include "thread.h"
|
2001-03-31 08:42:27 +02:00
|
|
|
#include "tools.h"
|
|
|
|
|
2005-08-26 13:34:07 +02:00
|
|
|
ePesHeader AnalyzePesHeader(const uchar *Data, int Count, int &PesPayloadOffset, bool *ContinuationHeader)
|
2005-07-30 10:25:03 +02:00
|
|
|
{
|
|
|
|
if (Count < 7)
|
2005-08-26 13:34:07 +02:00
|
|
|
return phNeedMoreData; // too short
|
2005-07-30 10:25:03 +02:00
|
|
|
|
|
|
|
if ((Data[6] & 0xC0) == 0x80) { // MPEG 2
|
|
|
|
if (Count < 9)
|
2005-08-26 13:34:07 +02:00
|
|
|
return phNeedMoreData; // too short
|
2005-07-30 10:25:03 +02:00
|
|
|
|
|
|
|
PesPayloadOffset = 6 + 3 + Data[8];
|
|
|
|
if (Count < PesPayloadOffset)
|
2005-08-26 13:34:07 +02:00
|
|
|
return phNeedMoreData; // too short
|
2005-07-30 10:25:03 +02:00
|
|
|
|
|
|
|
if (ContinuationHeader)
|
|
|
|
*ContinuationHeader = ((Data[6] == 0x80) && !Data[7] && !Data[8]);
|
|
|
|
|
2005-08-26 13:34:07 +02:00
|
|
|
return phMPEG2; // MPEG 2
|
2005-07-30 10:25:03 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
// check for MPEG 1 ...
|
|
|
|
PesPayloadOffset = 6;
|
|
|
|
|
|
|
|
// skip up to 16 stuffing bytes
|
|
|
|
for (int i = 0; i < 16; i++) {
|
|
|
|
if (Data[PesPayloadOffset] != 0xFF)
|
|
|
|
break;
|
|
|
|
|
|
|
|
if (Count <= ++PesPayloadOffset)
|
2005-08-26 13:34:07 +02:00
|
|
|
return phNeedMoreData; // too short
|
2005-07-30 10:25:03 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
// skip STD_buffer_scale/size
|
|
|
|
if ((Data[PesPayloadOffset] & 0xC0) == 0x40) {
|
|
|
|
PesPayloadOffset += 2;
|
|
|
|
|
|
|
|
if (Count <= PesPayloadOffset)
|
2005-08-26 13:34:07 +02:00
|
|
|
return phNeedMoreData; // too short
|
2005-07-30 10:25:03 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
if (ContinuationHeader)
|
|
|
|
*ContinuationHeader = false;
|
|
|
|
|
|
|
|
if ((Data[PesPayloadOffset] & 0xF0) == 0x20) {
|
|
|
|
// skip PTS only
|
|
|
|
PesPayloadOffset += 5;
|
|
|
|
}
|
|
|
|
else if ((Data[PesPayloadOffset] & 0xF0) == 0x30) {
|
|
|
|
// skip PTS and DTS
|
|
|
|
PesPayloadOffset += 10;
|
|
|
|
}
|
|
|
|
else if (Data[PesPayloadOffset] == 0x0F) {
|
|
|
|
// continuation header
|
|
|
|
PesPayloadOffset++;
|
|
|
|
|
|
|
|
if (ContinuationHeader)
|
|
|
|
*ContinuationHeader = true;
|
|
|
|
}
|
|
|
|
else
|
2005-08-26 13:34:07 +02:00
|
|
|
return phInvalid; // unknown
|
2005-07-30 10:25:03 +02:00
|
|
|
|
|
|
|
if (Count < PesPayloadOffset)
|
2005-08-26 13:34:07 +02:00
|
|
|
return phNeedMoreData; // too short
|
2005-07-30 10:25:03 +02:00
|
|
|
|
2005-08-26 13:34:07 +02:00
|
|
|
return phMPEG1; // MPEG 1
|
2005-07-30 10:25:03 +02:00
|
|
|
}
|
|
|
|
|
2005-08-26 13:34:07 +02:00
|
|
|
// --- cRepacker -------------------------------------------------------------
|
2005-06-04 14:49:25 +02:00
|
|
|
|
2005-12-03 15:01:01 +01:00
|
|
|
#define MIN_LOG_INTERVAL 10 // min. # of seconds between two consecutive log messages of a cRepacker
|
|
|
|
#define LOG(a...) (LogAllowed() && (esyslog(a), true))
|
|
|
|
|
2005-08-26 13:34:07 +02:00
|
|
|
class cRepacker {
|
|
|
|
protected:
|
2005-08-28 11:23:23 +02:00
|
|
|
bool initiallySyncing;
|
2005-08-26 13:34:07 +02:00
|
|
|
int maxPacketSize;
|
|
|
|
uint8_t subStreamId;
|
2005-12-03 15:01:01 +01:00
|
|
|
time_t lastLog;
|
|
|
|
int suppressedLogMessages;
|
|
|
|
bool LogAllowed(void);
|
|
|
|
void DroppedData(const char *Reason, int Count) { LOG("%s (dropped %d bytes)", Reason, Count); }
|
2005-08-26 13:34:07 +02:00
|
|
|
public:
|
|
|
|
static int Put(cRingBufferLinear *ResultBuffer, const uchar *Data, int Count, int CapacityNeeded);
|
2005-12-03 15:01:01 +01:00
|
|
|
cRepacker(void);
|
2005-08-26 13:34:07 +02:00
|
|
|
virtual ~cRepacker() {}
|
2005-09-04 15:15:14 +02:00
|
|
|
virtual void Reset(void) { initiallySyncing = true; }
|
2005-08-26 13:34:07 +02:00
|
|
|
virtual void Repack(cRingBufferLinear *ResultBuffer, const uchar *Data, int Count) = 0;
|
|
|
|
virtual int BreakAt(const uchar *Data, int Count) = 0;
|
|
|
|
virtual int QuerySnoopSize(void) { return 0; }
|
|
|
|
void SetMaxPacketSize(int MaxPacketSize) { maxPacketSize = MaxPacketSize; }
|
|
|
|
void SetSubStreamId(uint8_t SubStreamId) { subStreamId = SubStreamId; }
|
|
|
|
};
|
|
|
|
|
2005-12-03 15:01:01 +01:00
|
|
|
cRepacker::cRepacker(void)
|
|
|
|
{
|
|
|
|
initiallySyncing = true;
|
|
|
|
maxPacketSize = 6 + 65535;
|
|
|
|
subStreamId = 0;
|
|
|
|
suppressedLogMessages = 0;;
|
|
|
|
lastLog = 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
bool cRepacker::LogAllowed(void)
|
|
|
|
{
|
2005-12-04 13:56:50 +01:00
|
|
|
bool Allowed = time(NULL) - lastLog >= MIN_LOG_INTERVAL;
|
2005-12-03 15:01:01 +01:00
|
|
|
lastLog = time(NULL);
|
|
|
|
if (Allowed) {
|
|
|
|
if (suppressedLogMessages) {
|
|
|
|
esyslog("%d cRepacker messages suppressed", suppressedLogMessages);
|
|
|
|
suppressedLogMessages = 0;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
else
|
|
|
|
suppressedLogMessages++;
|
|
|
|
return Allowed;
|
|
|
|
}
|
|
|
|
|
2005-08-26 13:34:07 +02:00
|
|
|
int cRepacker::Put(cRingBufferLinear *ResultBuffer, const uchar *Data, int Count, int CapacityNeeded)
|
|
|
|
{
|
|
|
|
if (CapacityNeeded >= Count && ResultBuffer->Free() < CapacityNeeded) {
|
|
|
|
esyslog("ERROR: possible result buffer overflow, dropped %d out of %d byte", CapacityNeeded, CapacityNeeded);
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
int n = ResultBuffer->Put(Data, Count);
|
|
|
|
if (n != Count)
|
|
|
|
esyslog("ERROR: result buffer overflow, dropped %d out of %d byte", Count - n, Count);
|
|
|
|
return n;
|
|
|
|
}
|
|
|
|
|
|
|
|
// --- cCommonRepacker --------------------------------------------------------
|
|
|
|
|
|
|
|
class cCommonRepacker : public cRepacker {
|
|
|
|
protected:
|
2005-06-04 14:49:25 +02:00
|
|
|
int skippedBytes;
|
|
|
|
int packetTodo;
|
|
|
|
uchar fragmentData[6 + 65535 + 3];
|
|
|
|
int fragmentLen;
|
|
|
|
uchar pesHeader[6 + 3 + 255 + 3];
|
|
|
|
int pesHeaderLen;
|
|
|
|
uchar pesHeaderBackup[6 + 3 + 255];
|
|
|
|
int pesHeaderBackupLen;
|
|
|
|
uint32_t scanner;
|
|
|
|
uint32_t localScanner;
|
|
|
|
int localStart;
|
|
|
|
bool PushOutPacket(cRingBufferLinear *ResultBuffer, const uchar *Data, int Count);
|
|
|
|
virtual int QuerySnoopSize() { return 4; }
|
2005-08-26 13:34:07 +02:00
|
|
|
virtual void Reset(void);
|
2005-06-04 14:49:25 +02:00
|
|
|
};
|
|
|
|
|
2005-08-26 13:34:07 +02:00
|
|
|
void cCommonRepacker::Reset(void)
|
2005-06-04 14:49:25 +02:00
|
|
|
{
|
2005-08-28 11:23:23 +02:00
|
|
|
cRepacker::Reset();
|
2005-06-04 14:49:25 +02:00
|
|
|
skippedBytes = 0;
|
2005-08-28 21:25:17 +02:00
|
|
|
packetTodo = 0;
|
2005-06-04 14:49:25 +02:00
|
|
|
fragmentLen = 0;
|
|
|
|
pesHeaderLen = 0;
|
|
|
|
pesHeaderBackupLen = 0;
|
|
|
|
localStart = -1;
|
|
|
|
}
|
|
|
|
|
2005-08-26 13:34:07 +02:00
|
|
|
bool cCommonRepacker::PushOutPacket(cRingBufferLinear *ResultBuffer, const uchar *Data, int Count)
|
2005-06-04 14:49:25 +02:00
|
|
|
{
|
|
|
|
// enter packet length into PES header ...
|
|
|
|
if (fragmentLen > 0) { // ... which is contained in the fragment buffer
|
|
|
|
// determine PES packet payload
|
|
|
|
int PacketLen = fragmentLen + Count - 6;
|
|
|
|
fragmentData[ 4 ] = PacketLen >> 8;
|
|
|
|
fragmentData[ 5 ] = PacketLen & 0xFF;
|
2005-08-26 13:34:07 +02:00
|
|
|
// just skip packets with no payload
|
|
|
|
int PesPayloadOffset = 0;
|
|
|
|
if (AnalyzePesHeader(fragmentData, fragmentLen, PesPayloadOffset) <= phInvalid)
|
2005-12-03 15:01:01 +01:00
|
|
|
LOG("cCommonRepacker: invalid PES packet encountered in fragment buffer!");
|
2005-09-11 11:00:00 +02:00
|
|
|
else if (6 + PacketLen <= PesPayloadOffset) {
|
|
|
|
fragmentLen = 0;
|
2005-08-26 13:34:07 +02:00
|
|
|
return true; // skip empty packet
|
2005-09-11 11:00:00 +02:00
|
|
|
}
|
2005-06-04 14:49:25 +02:00
|
|
|
// amount of data to put into result buffer: a negative Count value means
|
|
|
|
// to strip off any partially contained start code.
|
|
|
|
int Bite = fragmentLen + (Count >= 0 ? 0 : Count);
|
|
|
|
// put data into result buffer
|
2005-08-26 13:34:07 +02:00
|
|
|
int n = Put(ResultBuffer, fragmentData, Bite, 6 + PacketLen);
|
2005-06-04 14:49:25 +02:00
|
|
|
fragmentLen = 0;
|
2005-08-21 09:00:31 +02:00
|
|
|
if (n != Bite)
|
|
|
|
return false;
|
2005-06-04 14:49:25 +02:00
|
|
|
}
|
|
|
|
else if (pesHeaderLen > 0) { // ... which is contained in the PES header buffer
|
|
|
|
int PacketLen = pesHeaderLen + Count - 6;
|
|
|
|
pesHeader[ 4 ] = PacketLen >> 8;
|
|
|
|
pesHeader[ 5 ] = PacketLen & 0xFF;
|
2005-08-26 13:34:07 +02:00
|
|
|
// just skip packets with no payload
|
|
|
|
int PesPayloadOffset = 0;
|
|
|
|
if (AnalyzePesHeader(pesHeader, pesHeaderLen, PesPayloadOffset) <= phInvalid)
|
2005-12-03 15:01:01 +01:00
|
|
|
LOG("cCommonRepacker: invalid PES packet encountered in header buffer!");
|
2005-09-11 11:00:00 +02:00
|
|
|
else if (6 + PacketLen <= PesPayloadOffset) {
|
|
|
|
pesHeaderLen = 0;
|
2005-08-26 13:34:07 +02:00
|
|
|
return true; // skip empty packet
|
2005-09-11 11:00:00 +02:00
|
|
|
}
|
2005-06-04 14:49:25 +02:00
|
|
|
// amount of data to put into result buffer: a negative Count value means
|
|
|
|
// to strip off any partially contained start code.
|
|
|
|
int Bite = pesHeaderLen + (Count >= 0 ? 0 : Count);
|
|
|
|
// put data into result buffer
|
2005-08-26 13:34:07 +02:00
|
|
|
int n = Put(ResultBuffer, pesHeader, Bite, 6 + PacketLen);
|
2005-06-04 14:49:25 +02:00
|
|
|
pesHeaderLen = 0;
|
2005-08-21 09:00:31 +02:00
|
|
|
if (n != Bite)
|
|
|
|
return false;
|
2005-06-04 14:49:25 +02:00
|
|
|
}
|
|
|
|
// append further payload
|
|
|
|
if (Count > 0) {
|
|
|
|
// amount of data to put into result buffer
|
|
|
|
int Bite = Count;
|
|
|
|
// put data into result buffer
|
2005-08-26 13:34:07 +02:00
|
|
|
int n = Put(ResultBuffer, Data, Bite, Bite);
|
2005-08-21 09:00:31 +02:00
|
|
|
if (n != Bite)
|
2005-06-04 14:49:25 +02:00
|
|
|
return false;
|
|
|
|
}
|
|
|
|
// we did it ;-)
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
2005-08-26 13:34:07 +02:00
|
|
|
// --- cVideoRepacker --------------------------------------------------------
|
|
|
|
|
|
|
|
class cVideoRepacker : public cCommonRepacker {
|
|
|
|
private:
|
|
|
|
enum eState {
|
|
|
|
syncing,
|
|
|
|
findPicture,
|
|
|
|
scanPicture
|
2006-01-01 15:06:02 +01:00
|
|
|
};
|
|
|
|
int state;
|
2005-08-26 13:34:07 +02:00
|
|
|
public:
|
|
|
|
cVideoRepacker(void);
|
|
|
|
virtual void Reset(void);
|
|
|
|
virtual void Repack(cRingBufferLinear *ResultBuffer, const uchar *Data, int Count);
|
|
|
|
virtual int BreakAt(const uchar *Data, int Count);
|
|
|
|
};
|
|
|
|
|
|
|
|
cVideoRepacker::cVideoRepacker(void)
|
|
|
|
{
|
|
|
|
Reset();
|
|
|
|
}
|
|
|
|
|
|
|
|
void cVideoRepacker::Reset(void)
|
|
|
|
{
|
|
|
|
cCommonRepacker::Reset();
|
|
|
|
scanner = 0xFFFFFFFF;
|
|
|
|
state = syncing;
|
|
|
|
}
|
|
|
|
|
2005-07-30 10:25:03 +02:00
|
|
|
void cVideoRepacker::Repack(cRingBufferLinear *ResultBuffer, const uchar *Data, int Count)
|
2005-06-04 14:49:25 +02:00
|
|
|
{
|
2005-07-30 10:25:03 +02:00
|
|
|
// synchronisation is detected some bytes after frame start.
|
|
|
|
const int SkippedBytesLimit = 4;
|
|
|
|
|
2005-06-04 14:49:25 +02:00
|
|
|
// reset local scanner
|
|
|
|
localStart = -1;
|
|
|
|
|
2005-07-30 10:25:03 +02:00
|
|
|
int pesPayloadOffset = 0;
|
|
|
|
bool continuationHeader = false;
|
2005-08-26 13:34:07 +02:00
|
|
|
ePesHeader mpegLevel = AnalyzePesHeader(Data, Count, pesPayloadOffset, &continuationHeader);
|
|
|
|
if (mpegLevel <= phInvalid) {
|
2005-07-30 10:25:03 +02:00
|
|
|
DroppedData("cVideoRepacker: no valid PES packet header found", Count);
|
|
|
|
return;
|
2005-06-04 14:49:25 +02:00
|
|
|
}
|
2005-07-30 10:25:03 +02:00
|
|
|
if (!continuationHeader) {
|
|
|
|
// backup PES header
|
|
|
|
pesHeaderBackupLen = pesPayloadOffset;
|
|
|
|
memcpy(pesHeaderBackup, Data, pesHeaderBackupLen);
|
|
|
|
}
|
2005-06-04 14:49:25 +02:00
|
|
|
|
|
|
|
// skip PES header
|
2005-07-30 10:25:03 +02:00
|
|
|
int done = pesPayloadOffset;
|
2005-06-04 14:49:25 +02:00
|
|
|
int todo = Count - done;
|
|
|
|
const uchar *data = Data + done;
|
|
|
|
// remember start of the data
|
|
|
|
const uchar *payload = data;
|
|
|
|
|
|
|
|
while (todo > 0) {
|
|
|
|
// collect number of skipped bytes while syncing
|
|
|
|
if (state <= syncing)
|
|
|
|
skippedBytes++;
|
|
|
|
// did we reach a start code?
|
|
|
|
scanner <<= 8;
|
|
|
|
if (scanner != 0x00000100)
|
|
|
|
scanner |= *data;
|
|
|
|
else {
|
|
|
|
scanner |= *data;
|
|
|
|
|
|
|
|
// which kind of start code have we got?
|
|
|
|
switch (*data) {
|
|
|
|
case 0xB9 ... 0xFF: // system start codes
|
2005-12-03 15:01:01 +01:00
|
|
|
LOG("cVideoRepacker: found system start code: stream seems to be scrambled or not demultiplexed");
|
2005-06-04 14:49:25 +02:00
|
|
|
break;
|
|
|
|
case 0xB0 ... 0xB1: // reserved start codes
|
|
|
|
case 0xB6:
|
2005-12-03 15:01:01 +01:00
|
|
|
LOG("cVideoRepacker: found reserved start code: stream seems to be scrambled");
|
2005-06-04 14:49:25 +02:00
|
|
|
break;
|
|
|
|
case 0xB4: // sequence error code
|
2005-12-03 15:01:01 +01:00
|
|
|
LOG("cVideoRepacker: found sequence error code: stream seems to be damaged");
|
2005-06-04 14:49:25 +02:00
|
|
|
case 0xB2: // user data start code
|
|
|
|
case 0xB5: // extension start code
|
|
|
|
break;
|
|
|
|
case 0xB7: // sequence end code
|
|
|
|
case 0xB3: // sequence header code
|
|
|
|
case 0xB8: // group start code
|
|
|
|
case 0x00: // picture start code
|
|
|
|
if (state == scanPicture) {
|
|
|
|
// the above start codes indicate that the current picture is done. So
|
|
|
|
// push out the packet to start a new packet for the next picuture. If
|
|
|
|
// the byte count get's negative then the current buffer ends in a
|
|
|
|
// partitial start code that must be stripped off, as it shall be put
|
|
|
|
// in the next packet.
|
2005-08-28 11:23:23 +02:00
|
|
|
PushOutPacket(ResultBuffer, payload, data - 3 - payload);
|
2005-06-04 14:49:25 +02:00
|
|
|
// go on with syncing to the next picture
|
|
|
|
state = syncing;
|
|
|
|
}
|
|
|
|
if (state == syncing) {
|
2005-08-28 11:23:23 +02:00
|
|
|
if (initiallySyncing) // omit report for the typical initial case
|
|
|
|
initiallySyncing = false;
|
|
|
|
else if (skippedBytes > SkippedBytesLimit) // report that syncing dropped some bytes
|
2005-12-03 15:01:01 +01:00
|
|
|
LOG("cVideoRepacker: skipped %d bytes to sync on next picture", skippedBytes - SkippedBytesLimit);
|
2005-06-04 14:49:25 +02:00
|
|
|
skippedBytes = 0;
|
|
|
|
// if there is a PES header available, then use it ...
|
|
|
|
if (pesHeaderBackupLen > 0) {
|
|
|
|
// ISO 13818-1 says:
|
|
|
|
// In the case of video, if a PTS is present in a PES packet header
|
|
|
|
// it shall refer to the access unit containing the first picture start
|
|
|
|
// code that commences in this PES packet. A picture start code commences
|
|
|
|
// in PES packet if the first byte of the picture start code is present
|
|
|
|
// in the PES packet.
|
|
|
|
memcpy(pesHeader, pesHeaderBackup, pesHeaderBackupLen);
|
|
|
|
pesHeaderLen = pesHeaderBackupLen;
|
|
|
|
pesHeaderBackupLen = 0;
|
|
|
|
}
|
|
|
|
else {
|
|
|
|
// ... otherwise create a continuation PES header
|
|
|
|
pesHeaderLen = 0;
|
|
|
|
pesHeader[pesHeaderLen++] = 0x00;
|
|
|
|
pesHeader[pesHeaderLen++] = 0x00;
|
|
|
|
pesHeader[pesHeaderLen++] = 0x01;
|
|
|
|
pesHeader[pesHeaderLen++] = Data[3]; // video stream ID
|
|
|
|
pesHeader[pesHeaderLen++] = 0x00; // length still unknown
|
|
|
|
pesHeader[pesHeaderLen++] = 0x00; // length still unknown
|
2005-07-30 10:25:03 +02:00
|
|
|
|
2005-08-26 13:34:07 +02:00
|
|
|
if (mpegLevel == phMPEG2) {
|
2005-07-30 10:25:03 +02:00
|
|
|
pesHeader[pesHeaderLen++] = 0x80;
|
|
|
|
pesHeader[pesHeaderLen++] = 0x00;
|
|
|
|
pesHeader[pesHeaderLen++] = 0x00;
|
|
|
|
}
|
|
|
|
else
|
|
|
|
pesHeader[pesHeaderLen++] = 0x0F;
|
2005-06-04 14:49:25 +02:00
|
|
|
}
|
|
|
|
// append the first three bytes of the start code
|
|
|
|
pesHeader[pesHeaderLen++] = 0x00;
|
|
|
|
pesHeader[pesHeaderLen++] = 0x00;
|
|
|
|
pesHeader[pesHeaderLen++] = 0x01;
|
|
|
|
// the next packet's payload will begin with the fourth byte of
|
|
|
|
// the start code (= the actual code)
|
|
|
|
payload = data;
|
|
|
|
// as there is no length information available, assume the
|
|
|
|
// maximum we can hold in one PES packet
|
|
|
|
packetTodo = maxPacketSize - pesHeaderLen;
|
|
|
|
// go on with finding the picture data
|
2006-01-01 15:06:02 +01:00
|
|
|
state++;
|
2005-06-04 14:49:25 +02:00
|
|
|
}
|
|
|
|
break;
|
|
|
|
case 0x01 ... 0xAF: // slice start codes
|
|
|
|
if (state == findPicture) {
|
|
|
|
// go on with scanning the picture data
|
2006-01-01 15:06:02 +01:00
|
|
|
state++;
|
2005-06-04 14:49:25 +02:00
|
|
|
}
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
data++;
|
|
|
|
done++;
|
|
|
|
todo--;
|
|
|
|
// do we have to start a new packet as there is no more space left?
|
2005-08-28 21:25:17 +02:00
|
|
|
if (state != syncing && --packetTodo <= 0) {
|
2005-06-04 14:49:25 +02:00
|
|
|
// we connot start a new packet here if the current might end in a start
|
|
|
|
// code and this start code shall possibly be put in the next packet. So
|
|
|
|
// overfill the current packet until we can safely detect that we won't
|
|
|
|
// break a start code into pieces:
|
|
|
|
//
|
|
|
|
// A) the last four bytes were a start code.
|
|
|
|
// B) the current byte introduces a start code.
|
|
|
|
// C) the last three bytes begin a start code.
|
|
|
|
//
|
|
|
|
// Todo : Data : Rule : Result
|
|
|
|
// -----:-------------------------------:------:-------
|
|
|
|
// : XX 00 00 00 01 YY|YY YY YY YY : :
|
|
|
|
// 0 : ^^| : A : push
|
|
|
|
// -----:-------------------------------:------:-------
|
|
|
|
// : XX XX 00 00 00 01|YY YY YY YY : :
|
|
|
|
// 0 : ^^| : B : wait
|
|
|
|
// -1 : |^^ : A : push
|
|
|
|
// -----:-------------------------------:------:-------
|
|
|
|
// : XX XX XX 00 00 00|01 YY YY YY : :
|
|
|
|
// 0 : ^^| : C : wait
|
|
|
|
// -1 : |^^ : B : wait
|
|
|
|
// -2 : | ^^ : A : push
|
|
|
|
// -----:-------------------------------:------:-------
|
|
|
|
// : XX XX XX XX 00 00|00 01 YY YY : :
|
|
|
|
// 0 : ^^| : C : wait
|
|
|
|
// -1 : |^^ : C : wait
|
|
|
|
// -2 : | ^^ : B : wait
|
|
|
|
// -3 : | ^^ : A : push
|
|
|
|
// -----:-------------------------------:------:-------
|
|
|
|
// : XX XX XX XX XX 00|00 00 01 YY : :
|
|
|
|
// 0 : ^^| : C : wait
|
|
|
|
// -1 : |^^ : C : wait
|
|
|
|
// -2 : | ^^ : : push
|
|
|
|
// -----:-------------------------------:------:-------
|
|
|
|
bool A = ((scanner & 0xFFFFFF00) == 0x00000100);
|
|
|
|
bool B = ((scanner & 0xFFFFFF) == 0x000001);
|
|
|
|
bool C = ((scanner & 0xFF) == 0x00) && (packetTodo >= -1);
|
|
|
|
if (A || (!B && !C)) {
|
|
|
|
// actually we cannot push out an overfull packet. So we'll have to
|
|
|
|
// adjust the byte count and payload start as necessary. If the byte
|
|
|
|
// count get's negative we'll have to append the excess from fragment's
|
|
|
|
// tail to the next PES header.
|
|
|
|
int bite = data + packetTodo - payload;
|
|
|
|
const uchar *excessData = fragmentData + fragmentLen + bite;
|
|
|
|
// a negative byte count means to drop some bytes from the current
|
|
|
|
// fragment's tail, to not exceed the maximum packet size.
|
2005-08-28 11:23:23 +02:00
|
|
|
PushOutPacket(ResultBuffer, payload, bite);
|
2005-06-04 14:49:25 +02:00
|
|
|
// create a continuation PES header
|
|
|
|
pesHeaderLen = 0;
|
|
|
|
pesHeader[pesHeaderLen++] = 0x00;
|
|
|
|
pesHeader[pesHeaderLen++] = 0x00;
|
|
|
|
pesHeader[pesHeaderLen++] = 0x01;
|
|
|
|
pesHeader[pesHeaderLen++] = Data[3]; // video stream ID
|
|
|
|
pesHeader[pesHeaderLen++] = 0x00; // length still unknown
|
|
|
|
pesHeader[pesHeaderLen++] = 0x00; // length still unknown
|
2005-07-30 10:25:03 +02:00
|
|
|
|
2005-08-26 13:34:07 +02:00
|
|
|
if (mpegLevel == phMPEG2) {
|
2005-07-30 10:25:03 +02:00
|
|
|
pesHeader[pesHeaderLen++] = 0x80;
|
|
|
|
pesHeader[pesHeaderLen++] = 0x00;
|
|
|
|
pesHeader[pesHeaderLen++] = 0x00;
|
|
|
|
}
|
|
|
|
else
|
|
|
|
pesHeader[pesHeaderLen++] = 0x0F;
|
|
|
|
|
2005-06-04 14:49:25 +02:00
|
|
|
// copy any excess data
|
|
|
|
while (bite++ < 0) {
|
|
|
|
// append the excess data here
|
|
|
|
pesHeader[pesHeaderLen++] = *excessData++;
|
|
|
|
packetTodo++;
|
|
|
|
}
|
|
|
|
// the next packet's payload will begin here
|
|
|
|
payload = data + packetTodo;
|
|
|
|
// as there is no length information available, assume the
|
|
|
|
// maximum we can hold in one PES packet
|
|
|
|
packetTodo += maxPacketSize - pesHeaderLen;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
// the packet is done. Now store any remaining data into fragment buffer
|
|
|
|
// if we are no longer syncing.
|
|
|
|
if (state != syncing) {
|
|
|
|
// append the PES header ...
|
|
|
|
int bite = pesHeaderLen;
|
|
|
|
pesHeaderLen = 0;
|
|
|
|
if (bite > 0) {
|
|
|
|
memcpy(fragmentData + fragmentLen, pesHeader, bite);
|
|
|
|
fragmentLen += bite;
|
|
|
|
}
|
|
|
|
// append payload. It may contain part of a start code at it's end,
|
|
|
|
// which will be removed when the next packet gets processed.
|
|
|
|
bite = data - payload;
|
|
|
|
if (bite > 0) {
|
|
|
|
memcpy(fragmentData + fragmentLen, payload, bite);
|
|
|
|
fragmentLen += bite;
|
|
|
|
}
|
|
|
|
}
|
2005-07-30 10:25:03 +02:00
|
|
|
// report that syncing dropped some bytes
|
|
|
|
if (skippedBytes > SkippedBytesLimit) {
|
2005-08-28 11:23:23 +02:00
|
|
|
if (!initiallySyncing) // omit report for the typical initial case
|
2005-12-03 15:01:01 +01:00
|
|
|
LOG("cVideoRepacker: skipped %d bytes while syncing on next picture", skippedBytes - SkippedBytesLimit);
|
2005-07-30 10:25:03 +02:00
|
|
|
skippedBytes = SkippedBytesLimit;
|
|
|
|
}
|
2005-06-04 14:49:25 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
int cVideoRepacker::BreakAt(const uchar *Data, int Count)
|
|
|
|
{
|
2005-08-28 21:25:17 +02:00
|
|
|
if (initiallySyncing)
|
|
|
|
return -1; // fill the packet buffer completely until we have synced once
|
|
|
|
|
2005-07-30 10:25:03 +02:00
|
|
|
int PesPayloadOffset = 0;
|
|
|
|
|
2005-08-26 13:34:07 +02:00
|
|
|
if (AnalyzePesHeader(Data, Count, PesPayloadOffset) <= phInvalid)
|
2005-07-30 10:25:03 +02:00
|
|
|
return -1; // not enough data for test
|
|
|
|
|
2005-06-04 14:49:25 +02:00
|
|
|
// just detect end of picture
|
|
|
|
if (state == scanPicture) {
|
|
|
|
// setup local scanner
|
|
|
|
if (localStart < 0) {
|
|
|
|
localScanner = scanner;
|
|
|
|
localStart = 0;
|
|
|
|
}
|
|
|
|
// start where we've stopped at the last run
|
2005-07-30 10:25:03 +02:00
|
|
|
const uchar *data = Data + PesPayloadOffset + localStart;
|
2005-06-04 14:49:25 +02:00
|
|
|
const uchar *limit = Data + Count;
|
|
|
|
// scan data
|
|
|
|
while (data < limit) {
|
|
|
|
localStart++;
|
|
|
|
localScanner <<= 8;
|
|
|
|
localScanner |= *data++;
|
|
|
|
// check start codes which follow picture data
|
|
|
|
switch (localScanner) {
|
|
|
|
case 0x00000100: // picture start code
|
|
|
|
case 0x000001B8: // group start code
|
|
|
|
case 0x000001B3: // sequence header code
|
|
|
|
case 0x000001B7: // sequence end code
|
|
|
|
return data - Data;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
// just fill up packet and append next start code
|
2005-07-30 10:25:03 +02:00
|
|
|
return PesPayloadOffset + packetTodo + 4;
|
2005-06-04 14:49:25 +02:00
|
|
|
}
|
|
|
|
|
2005-08-26 13:34:07 +02:00
|
|
|
// --- cAudioRepacker --------------------------------------------------------
|
|
|
|
|
|
|
|
class cAudioRepacker : public cCommonRepacker {
|
|
|
|
private:
|
2005-08-28 11:23:23 +02:00
|
|
|
static int bitRates[2][3][16];
|
2005-08-26 13:34:07 +02:00
|
|
|
enum eState {
|
|
|
|
syncing,
|
|
|
|
scanFrame
|
2006-01-01 15:06:02 +01:00
|
|
|
};
|
|
|
|
int state;
|
2005-08-26 13:34:07 +02:00
|
|
|
int frameTodo;
|
|
|
|
int frameSize;
|
2005-09-04 15:15:14 +02:00
|
|
|
int cid;
|
2005-08-28 11:23:23 +02:00
|
|
|
static bool IsValidAudioHeader(uint32_t Header, bool Mpeg2, int *FrameSize = NULL);
|
2005-08-26 13:34:07 +02:00
|
|
|
public:
|
2005-09-04 15:15:14 +02:00
|
|
|
cAudioRepacker(int Cid);
|
2005-08-26 13:34:07 +02:00
|
|
|
virtual void Reset(void);
|
|
|
|
virtual void Repack(cRingBufferLinear *ResultBuffer, const uchar *Data, int Count);
|
|
|
|
virtual int BreakAt(const uchar *Data, int Count);
|
|
|
|
};
|
|
|
|
|
2005-08-28 11:23:23 +02:00
|
|
|
int cAudioRepacker::bitRates[2][3][16] = { // all values are specified as kbits/s
|
2005-08-28 21:07:37 +02:00
|
|
|
{
|
|
|
|
{ 0, 32, 64, 96, 128, 160, 192, 224, 256, 288, 320, 352, 384, 416, 448, -1 }, // MPEG 1, Layer I
|
|
|
|
{ 0, 32, 48, 56, 64, 80, 96, 112, 128, 160, 192, 224, 256, 320, 384, -1 }, // MPEG 1, Layer II
|
|
|
|
{ 0, 32, 40, 48, 56, 64, 80, 96, 112, 128, 160, 192, 224, 256, 320, -1 } // MPEG 1, Layer III
|
|
|
|
},
|
|
|
|
{
|
|
|
|
{ 0, 32, 48, 56, 64, 80, 96, 112, 128, 144, 160, 176, 192, 224, 256, -1 }, // MPEG 2, Layer I
|
|
|
|
{ 0, 8, 16, 24, 32, 40, 48, 56, 64, 80, 96, 112, 128, 144, 160, -1 }, // MPEG 2, Layer II/III
|
|
|
|
{ 0, 8, 16, 24, 32, 40, 48, 56, 64, 80, 96, 112, 128, 144, 160, -1 } // MPEG 2, Layer II/III
|
|
|
|
}
|
2005-08-26 13:34:07 +02:00
|
|
|
};
|
|
|
|
|
2005-09-04 15:15:14 +02:00
|
|
|
cAudioRepacker::cAudioRepacker(int Cid)
|
2005-08-26 13:34:07 +02:00
|
|
|
{
|
2005-09-04 15:15:14 +02:00
|
|
|
cid = Cid;
|
2005-08-26 13:34:07 +02:00
|
|
|
Reset();
|
|
|
|
}
|
|
|
|
|
|
|
|
void cAudioRepacker::Reset(void)
|
|
|
|
{
|
|
|
|
cCommonRepacker::Reset();
|
|
|
|
scanner = 0;
|
|
|
|
state = syncing;
|
|
|
|
frameTodo = 0;
|
|
|
|
frameSize = 0;
|
|
|
|
}
|
|
|
|
|
2005-08-28 11:23:23 +02:00
|
|
|
bool cAudioRepacker::IsValidAudioHeader(uint32_t Header, bool Mpeg2, int *FrameSize)
|
2005-08-26 13:34:07 +02:00
|
|
|
{
|
|
|
|
int syncword = (Header & 0xFFF00000) >> 20;
|
|
|
|
int id = (Header & 0x00080000) >> 19;
|
|
|
|
int layer = (Header & 0x00060000) >> 17;
|
|
|
|
//int protection_bit = (Header & 0x00010000) >> 16;
|
|
|
|
int bitrate_index = (Header & 0x0000F000) >> 12;
|
|
|
|
int sampling_frequency = (Header & 0x00000C00) >> 10;
|
|
|
|
int padding_bit = (Header & 0x00000200) >> 9;
|
|
|
|
//int private_bit = (Header & 0x00000100) >> 8;
|
|
|
|
//int mode = (Header & 0x000000C0) >> 6;
|
|
|
|
//int mode_extension = (Header & 0x00000030) >> 4;
|
|
|
|
//int copyright = (Header & 0x00000008) >> 3;
|
|
|
|
//int orignal_copy = (Header & 0x00000004) >> 2;
|
|
|
|
int emphasis = (Header & 0x00000003);
|
|
|
|
|
|
|
|
if (syncword != 0xFFF)
|
|
|
|
return false;
|
|
|
|
|
2005-08-28 11:23:23 +02:00
|
|
|
if (id == 0 && !Mpeg2) // reserved in MPEG 1
|
2005-08-26 13:34:07 +02:00
|
|
|
return false;
|
|
|
|
|
|
|
|
if (layer == 0) // reserved
|
|
|
|
return false;
|
|
|
|
|
|
|
|
if (bitrate_index == 0xF) // forbidden
|
|
|
|
return false;
|
|
|
|
|
|
|
|
if (sampling_frequency == 3) // reserved
|
|
|
|
return false;
|
|
|
|
|
|
|
|
if (emphasis == 2) // reserved
|
|
|
|
return false;
|
|
|
|
|
|
|
|
if (FrameSize) {
|
|
|
|
if (bitrate_index == 0)
|
|
|
|
*FrameSize = 0;
|
|
|
|
else {
|
2005-08-28 11:23:23 +02:00
|
|
|
static int samplingFrequencies[2][4] = { // all values are specified in Hz
|
2005-08-28 21:07:37 +02:00
|
|
|
{ 44100, 48000, 32000, -1 }, // MPEG 1
|
|
|
|
{ 22050, 24000, 16000, -1 } // MPEG 2
|
2005-08-28 11:23:23 +02:00
|
|
|
};
|
|
|
|
|
|
|
|
static int slots_per_frame[2][3] = {
|
2005-08-28 21:07:37 +02:00
|
|
|
{ 12, 144, 144 }, // MPEG 1, Layer I, II, III
|
|
|
|
{ 12, 144, 72 } // MPEG 2, Layer I, II, III
|
2005-08-28 11:23:23 +02:00
|
|
|
};
|
|
|
|
|
|
|
|
int mpegIndex = 1 - id;
|
|
|
|
int layerIndex = 3 - layer;
|
2005-08-26 13:34:07 +02:00
|
|
|
|
2005-08-28 11:23:23 +02:00
|
|
|
// Layer I (i. e., layerIndex == 0) has a larger slot size
|
|
|
|
int slotSize = (layerIndex == 0) ? 4 : 1; // bytes
|
2005-08-26 13:34:07 +02:00
|
|
|
|
2005-08-28 11:23:23 +02:00
|
|
|
int br = 1000 * bitRates[mpegIndex][layerIndex][bitrate_index]; // bits/s
|
|
|
|
int sf = samplingFrequencies[mpegIndex][sampling_frequency];
|
2005-08-26 13:34:07 +02:00
|
|
|
|
2005-08-28 11:23:23 +02:00
|
|
|
int N = slots_per_frame[mpegIndex][layerIndex] * br / sf; // slots
|
2005-08-26 13:34:07 +02:00
|
|
|
|
2005-08-28 11:23:23 +02:00
|
|
|
*FrameSize = (N + padding_bit) * slotSize; // bytes
|
2005-08-26 13:34:07 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
|
|
|
void cAudioRepacker::Repack(cRingBufferLinear *ResultBuffer, const uchar *Data, int Count)
|
|
|
|
{
|
|
|
|
// synchronisation is detected some bytes after frame start.
|
|
|
|
const int SkippedBytesLimit = 4;
|
|
|
|
|
|
|
|
// reset local scanner
|
|
|
|
localStart = -1;
|
|
|
|
|
|
|
|
int pesPayloadOffset = 0;
|
|
|
|
bool continuationHeader = false;
|
|
|
|
ePesHeader mpegLevel = AnalyzePesHeader(Data, Count, pesPayloadOffset, &continuationHeader);
|
|
|
|
if (mpegLevel <= phInvalid) {
|
|
|
|
DroppedData("cAudioRepacker: no valid PES packet header found", Count);
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
if (!continuationHeader) {
|
|
|
|
// backup PES header
|
|
|
|
pesHeaderBackupLen = pesPayloadOffset;
|
|
|
|
memcpy(pesHeaderBackup, Data, pesHeaderBackupLen);
|
|
|
|
}
|
|
|
|
|
|
|
|
// skip PES header
|
|
|
|
int done = pesPayloadOffset;
|
|
|
|
int todo = Count - done;
|
|
|
|
const uchar *data = Data + done;
|
|
|
|
// remember start of the data
|
|
|
|
const uchar *payload = data;
|
|
|
|
|
|
|
|
while (todo > 0) {
|
|
|
|
// collect number of skipped bytes while syncing
|
|
|
|
if (state <= syncing)
|
|
|
|
skippedBytes++;
|
|
|
|
// did we reach an audio frame header?
|
|
|
|
scanner <<= 8;
|
|
|
|
scanner |= *data;
|
|
|
|
if ((scanner & 0xFFF00000) == 0xFFF00000) {
|
2005-09-04 15:15:14 +02:00
|
|
|
if (frameTodo <= 0 && (frameSize == 0 || skippedBytes >= 4) && IsValidAudioHeader(scanner, mpegLevel == phMPEG2, &frameSize)) {
|
2005-08-26 13:34:07 +02:00
|
|
|
if (state == scanFrame) {
|
|
|
|
// As a new audio frame starts here, the previous one is done. So push
|
|
|
|
// out the packet to start a new packet for the next audio frame. If
|
|
|
|
// the byte count gets negative then the current buffer ends in a
|
|
|
|
// partitial audio frame header that must be stripped off, as it shall
|
|
|
|
// be put in the next packet.
|
2005-08-28 11:23:23 +02:00
|
|
|
PushOutPacket(ResultBuffer, payload, data - 3 - payload);
|
2005-08-26 13:34:07 +02:00
|
|
|
// go on with syncing to the next audio frame
|
|
|
|
state = syncing;
|
|
|
|
}
|
|
|
|
if (state == syncing) {
|
2005-08-28 11:23:23 +02:00
|
|
|
if (initiallySyncing) // omit report for the typical initial case
|
|
|
|
initiallySyncing = false;
|
|
|
|
else if (skippedBytes > SkippedBytesLimit) // report that syncing dropped some bytes
|
2005-12-03 15:01:01 +01:00
|
|
|
LOG("cAudioRepacker(0x%02X): skipped %d bytes to sync on next audio frame", cid, skippedBytes - SkippedBytesLimit);
|
2005-08-26 13:34:07 +02:00
|
|
|
skippedBytes = 0;
|
|
|
|
// if there is a PES header available, then use it ...
|
|
|
|
if (pesHeaderBackupLen > 0) {
|
|
|
|
// ISO 13818-1 says:
|
|
|
|
// In the case of audio, if a PTS is present in a PES packet header
|
|
|
|
// it shall refer to the access unit commencing in the PES packet. An
|
|
|
|
// audio access unit commences in a PES packet if the first byte of
|
|
|
|
// the audio access unit is present in the PES packet.
|
|
|
|
memcpy(pesHeader, pesHeaderBackup, pesHeaderBackupLen);
|
|
|
|
pesHeaderLen = pesHeaderBackupLen;
|
|
|
|
pesHeaderBackupLen = 0;
|
|
|
|
}
|
|
|
|
else {
|
|
|
|
// ... otherwise create a continuation PES header
|
|
|
|
pesHeaderLen = 0;
|
|
|
|
pesHeader[pesHeaderLen++] = 0x00;
|
|
|
|
pesHeader[pesHeaderLen++] = 0x00;
|
|
|
|
pesHeader[pesHeaderLen++] = 0x01;
|
|
|
|
pesHeader[pesHeaderLen++] = Data[3]; // audio stream ID
|
|
|
|
pesHeader[pesHeaderLen++] = 0x00; // length still unknown
|
|
|
|
pesHeader[pesHeaderLen++] = 0x00; // length still unknown
|
|
|
|
|
|
|
|
if (mpegLevel == phMPEG2) {
|
|
|
|
pesHeader[pesHeaderLen++] = 0x80;
|
|
|
|
pesHeader[pesHeaderLen++] = 0x00;
|
|
|
|
pesHeader[pesHeaderLen++] = 0x00;
|
|
|
|
}
|
|
|
|
else
|
|
|
|
pesHeader[pesHeaderLen++] = 0x0F;
|
|
|
|
}
|
|
|
|
// append the first three bytes of the audio frame header
|
|
|
|
pesHeader[pesHeaderLen++] = 0xFF;
|
|
|
|
pesHeader[pesHeaderLen++] = (scanner >> 16) & 0xFF;
|
|
|
|
pesHeader[pesHeaderLen++] = (scanner >> 8) & 0xFF;
|
|
|
|
// the next packet's payload will begin with the fourth byte of
|
|
|
|
// the audio frame header (= the actual byte)
|
|
|
|
payload = data;
|
|
|
|
// maximum we can hold in one PES packet
|
|
|
|
packetTodo = maxPacketSize - pesHeaderLen;
|
2006-01-08 11:44:37 +01:00
|
|
|
// expected remainder of audio frame: so far we have read 3 bytes from the frame header
|
2005-08-28 11:23:23 +02:00
|
|
|
frameTodo = frameSize - 3;
|
2005-08-26 13:34:07 +02:00
|
|
|
// go on with collecting the frame's data
|
2006-01-01 15:06:02 +01:00
|
|
|
state++;
|
2005-08-26 13:34:07 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
data++;
|
|
|
|
done++;
|
|
|
|
todo--;
|
2005-09-04 15:15:14 +02:00
|
|
|
// do we have to start a new packet as the current is done?
|
|
|
|
if (frameTodo > 0) {
|
|
|
|
if (--frameTodo == 0) {
|
|
|
|
// the current audio frame is is done now. So push out the packet to
|
|
|
|
// start a new packet for the next audio frame.
|
|
|
|
PushOutPacket(ResultBuffer, payload, data - payload);
|
|
|
|
// go on with syncing to the next audio frame
|
|
|
|
state = syncing;
|
|
|
|
}
|
|
|
|
}
|
2005-08-26 13:34:07 +02:00
|
|
|
// do we have to start a new packet as there is no more space left?
|
2005-08-28 21:25:17 +02:00
|
|
|
if (state != syncing && --packetTodo <= 0) {
|
2005-08-26 13:34:07 +02:00
|
|
|
// We connot start a new packet here if the current might end in an audio
|
|
|
|
// frame header and this header shall possibly be put in the next packet. So
|
|
|
|
// overfill the current packet until we can safely detect that we won't
|
|
|
|
// break an audio frame header into pieces:
|
|
|
|
//
|
|
|
|
// A) the last four bytes were an audio frame header.
|
|
|
|
// B) the last three bytes introduce an audio frame header.
|
|
|
|
// C) the last two bytes introduce an audio frame header.
|
|
|
|
// D) the last byte introduces an audio frame header.
|
|
|
|
//
|
|
|
|
// Todo : Data : Rule : Result
|
|
|
|
// -----:-------------------------------:------:-------
|
|
|
|
// : XX XX FF Fz zz zz|YY YY YY YY : :
|
|
|
|
// 0 : ^^| : A : push
|
|
|
|
// -----:-------------------------------:------:-------
|
|
|
|
// : XX XX XX FF Fz zz|zz YY YY YY : :
|
|
|
|
// 0 : ^^| : B : wait
|
|
|
|
// -1 : |^^ : A : push
|
|
|
|
// -----:-------------------------------:------:-------
|
|
|
|
// : XX XX XX XX FF Fz|zz zz YY YY : :
|
|
|
|
// 0 : ^^| : C : wait
|
|
|
|
// -1 : |^^ : B : wait
|
|
|
|
// -2 : | ^^ : A : push
|
|
|
|
// -----:-------------------------------:------:-------
|
|
|
|
// : XX XX XX XX XX FF|Fz zz zz YY : :
|
|
|
|
// 0 : ^^| : D : wait
|
|
|
|
// -1 : |^^ : C : wait
|
|
|
|
// -2 : | ^^ : B : wait
|
|
|
|
// -3 : | ^^ : A : push
|
|
|
|
// -----:-------------------------------:------:-------
|
|
|
|
bool A = ((scanner & 0xFFF00000) == 0xFFF00000);
|
|
|
|
bool B = ((scanner & 0xFFF000) == 0xFFF000);
|
|
|
|
bool C = ((scanner & 0xFFF0) == 0xFFF0);
|
|
|
|
bool D = ((scanner & 0xFF) == 0xFF);
|
|
|
|
if (A || (!B && !C && !D)) {
|
|
|
|
// Actually we cannot push out an overfull packet. So we'll have to
|
|
|
|
// adjust the byte count and payload start as necessary. If the byte
|
|
|
|
// count gets negative we'll have to append the excess from fragment's
|
|
|
|
// tail to the next PES header.
|
|
|
|
int bite = data + packetTodo - payload;
|
|
|
|
const uchar *excessData = fragmentData + fragmentLen + bite;
|
|
|
|
// A negative byte count means to drop some bytes from the current
|
|
|
|
// fragment's tail, to not exceed the maximum packet size.
|
2005-08-28 11:23:23 +02:00
|
|
|
PushOutPacket(ResultBuffer, payload, bite);
|
2005-08-26 13:34:07 +02:00
|
|
|
// create a continuation PES header
|
|
|
|
pesHeaderLen = 0;
|
|
|
|
pesHeader[pesHeaderLen++] = 0x00;
|
|
|
|
pesHeader[pesHeaderLen++] = 0x00;
|
|
|
|
pesHeader[pesHeaderLen++] = 0x01;
|
|
|
|
pesHeader[pesHeaderLen++] = Data[3]; // audio stream ID
|
|
|
|
pesHeader[pesHeaderLen++] = 0x00; // length still unknown
|
|
|
|
pesHeader[pesHeaderLen++] = 0x00; // length still unknown
|
|
|
|
|
|
|
|
if (mpegLevel == phMPEG2) {
|
|
|
|
pesHeader[pesHeaderLen++] = 0x80;
|
|
|
|
pesHeader[pesHeaderLen++] = 0x00;
|
|
|
|
pesHeader[pesHeaderLen++] = 0x00;
|
|
|
|
}
|
|
|
|
else
|
|
|
|
pesHeader[pesHeaderLen++] = 0x0F;
|
|
|
|
|
|
|
|
// copy any excess data
|
|
|
|
while (bite++ < 0) {
|
|
|
|
// append the excess data here
|
|
|
|
pesHeader[pesHeaderLen++] = *excessData++;
|
|
|
|
packetTodo++;
|
|
|
|
}
|
|
|
|
// the next packet's payload will begin here
|
|
|
|
payload = data + packetTodo;
|
|
|
|
// as there is no length information available, assume the
|
|
|
|
// maximum we can hold in one PES packet
|
|
|
|
packetTodo += maxPacketSize - pesHeaderLen;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
// The packet is done. Now store any remaining data into fragment buffer
|
|
|
|
// if we are no longer syncing.
|
|
|
|
if (state != syncing) {
|
|
|
|
// append the PES header ...
|
|
|
|
int bite = pesHeaderLen;
|
|
|
|
pesHeaderLen = 0;
|
|
|
|
if (bite > 0) {
|
|
|
|
memcpy(fragmentData + fragmentLen, pesHeader, bite);
|
|
|
|
fragmentLen += bite;
|
|
|
|
}
|
|
|
|
// append payload. It may contain part of an audio frame header at it's
|
|
|
|
// end, which will be removed when the next packet gets processed.
|
|
|
|
bite = data - payload;
|
|
|
|
if (bite > 0) {
|
|
|
|
memcpy(fragmentData + fragmentLen, payload, bite);
|
|
|
|
fragmentLen += bite;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
// report that syncing dropped some bytes
|
|
|
|
if (skippedBytes > SkippedBytesLimit) {
|
2005-08-28 11:23:23 +02:00
|
|
|
if (!initiallySyncing) // omit report for the typical initial case
|
2005-12-03 15:01:01 +01:00
|
|
|
LOG("cAudioRepacker(0x%02X): skipped %d bytes while syncing on next audio frame", cid, skippedBytes - SkippedBytesLimit);
|
2005-08-26 13:34:07 +02:00
|
|
|
skippedBytes = SkippedBytesLimit;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
int cAudioRepacker::BreakAt(const uchar *Data, int Count)
|
|
|
|
{
|
2005-08-28 21:25:17 +02:00
|
|
|
if (initiallySyncing)
|
|
|
|
return -1; // fill the packet buffer completely until we have synced once
|
|
|
|
|
2005-08-26 13:34:07 +02:00
|
|
|
int PesPayloadOffset = 0;
|
|
|
|
|
2005-08-28 11:23:23 +02:00
|
|
|
ePesHeader MpegLevel = AnalyzePesHeader(Data, Count, PesPayloadOffset);
|
|
|
|
if (MpegLevel <= phInvalid)
|
2005-08-26 13:34:07 +02:00
|
|
|
return -1; // not enough data for test
|
|
|
|
|
|
|
|
// determine amount of data to fill up packet and to append next audio frame header
|
|
|
|
int packetRemainder = PesPayloadOffset + packetTodo + 4;
|
|
|
|
|
|
|
|
// just detect end of an audio frame
|
|
|
|
if (state == scanFrame) {
|
|
|
|
// when remaining audio frame size is known, then omit scanning
|
|
|
|
if (frameTodo > 0) {
|
|
|
|
// determine amount of data to fill up audio frame and to append next audio frame header
|
|
|
|
int remaining = PesPayloadOffset + frameTodo + 4;
|
|
|
|
if (remaining < packetRemainder)
|
|
|
|
return remaining;
|
|
|
|
return packetRemainder;
|
|
|
|
}
|
|
|
|
// setup local scanner
|
|
|
|
if (localStart < 0) {
|
|
|
|
localScanner = scanner;
|
|
|
|
localStart = 0;
|
|
|
|
}
|
|
|
|
// start where we've stopped at the last run
|
|
|
|
const uchar *data = Data + PesPayloadOffset + localStart;
|
|
|
|
const uchar *limit = Data + Count;
|
|
|
|
// scan data
|
|
|
|
while (data < limit) {
|
|
|
|
localStart++;
|
|
|
|
localScanner <<= 8;
|
|
|
|
localScanner |= *data++;
|
|
|
|
// check whether the next audio frame follows
|
2005-08-28 11:23:23 +02:00
|
|
|
if (((localScanner & 0xFFF00000) == 0xFFF00000) && IsValidAudioHeader(localScanner, MpegLevel == phMPEG2))
|
2005-08-26 13:34:07 +02:00
|
|
|
return data - Data;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
// just fill up packet and append next audio frame header
|
|
|
|
return packetRemainder;
|
|
|
|
}
|
|
|
|
|
2005-01-15 12:09:22 +01:00
|
|
|
// --- cDolbyRepacker --------------------------------------------------------
|
|
|
|
|
|
|
|
class cDolbyRepacker : public cRepacker {
|
|
|
|
private:
|
|
|
|
static int frameSizes[];
|
|
|
|
uchar fragmentData[6 + 65535];
|
|
|
|
int fragmentLen;
|
2005-02-05 11:59:19 +01:00
|
|
|
int fragmentTodo;
|
2005-01-23 14:10:15 +01:00
|
|
|
uchar pesHeader[6 + 3 + 255 + 4 + 4];
|
2005-01-15 12:09:22 +01:00
|
|
|
int pesHeaderLen;
|
2005-03-13 12:05:30 +01:00
|
|
|
uchar pesHeaderBackup[6 + 3 + 255];
|
|
|
|
int pesHeaderBackupLen;
|
2005-01-15 12:09:22 +01:00
|
|
|
uchar chk1;
|
|
|
|
uchar chk2;
|
|
|
|
int ac3todo;
|
2006-01-01 15:06:02 +01:00
|
|
|
enum eState {
|
2005-01-15 12:09:22 +01:00
|
|
|
find_0b,
|
|
|
|
find_77,
|
|
|
|
store_chk1,
|
|
|
|
store_chk2,
|
2005-02-05 11:59:19 +01:00
|
|
|
get_length,
|
|
|
|
output_packet
|
2006-01-01 15:06:02 +01:00
|
|
|
};
|
|
|
|
int state;
|
2005-07-30 10:25:03 +02:00
|
|
|
int skippedBytes;
|
2005-03-20 13:18:15 +01:00
|
|
|
void ResetPesHeader(bool ContinuationFrame = false);
|
|
|
|
void AppendSubStreamID(bool ContinuationFrame = false);
|
2005-08-28 11:23:23 +02:00
|
|
|
bool FinishRemainder(cRingBufferLinear *ResultBuffer, const uchar *const Data, const int Todo, int &Bite);
|
|
|
|
bool StartNewPacket(cRingBufferLinear *ResultBuffer, const uchar *const Data, const int Todo, int &Bite);
|
2005-01-15 12:09:22 +01:00
|
|
|
public:
|
|
|
|
cDolbyRepacker(void);
|
2005-02-13 14:38:08 +01:00
|
|
|
virtual void Reset(void);
|
2005-07-30 10:25:03 +02:00
|
|
|
virtual void Repack(cRingBufferLinear *ResultBuffer, const uchar *Data, int Count);
|
2005-01-15 12:09:22 +01:00
|
|
|
virtual int BreakAt(const uchar *Data, int Count);
|
|
|
|
};
|
|
|
|
|
2005-02-05 11:59:19 +01:00
|
|
|
// frameSizes are in words, i. e. multiply them by 2 to get bytes
|
2005-01-15 12:09:22 +01:00
|
|
|
int cDolbyRepacker::frameSizes[] = {
|
|
|
|
// fs = 48 kHz
|
|
|
|
64, 64, 80, 80, 96, 96, 112, 112, 128, 128, 160, 160, 192, 192, 224, 224,
|
|
|
|
256, 256, 320, 320, 384, 384, 448, 448, 512, 512, 640, 640, 768, 768, 896, 896,
|
|
|
|
1024, 1024, 1152, 1152, 1280, 1280, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
|
|
|
|
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
|
|
|
|
// fs = 44.1 kHz
|
|
|
|
69, 70, 87, 88, 104, 105, 121, 122, 139, 140, 174, 175, 208, 209, 243, 244,
|
|
|
|
278, 279, 348, 349, 417, 418, 487, 488, 557, 558, 696, 697, 835, 836, 975, 976,
|
|
|
|
1114, 1115, 1253, 1254, 1393, 1394, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
|
|
|
|
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
|
|
|
|
// fs = 32 kHz
|
|
|
|
96, 96, 120, 120, 144, 144, 168, 168, 192, 192, 240, 240, 288, 288, 336, 336,
|
|
|
|
384, 384, 480, 480, 576, 576, 672, 672, 768, 768, 960, 960, 1152, 1152, 1344, 1344,
|
|
|
|
1536, 1536, 1728, 1728, 1920, 1920, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
|
|
|
|
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
|
|
|
|
//
|
|
|
|
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
|
|
|
|
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
|
|
|
|
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
|
|
|
|
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
|
|
|
|
};
|
|
|
|
|
|
|
|
cDolbyRepacker::cDolbyRepacker(void)
|
|
|
|
{
|
|
|
|
pesHeader[0] = 0x00;
|
|
|
|
pesHeader[1] = 0x00;
|
|
|
|
pesHeader[2] = 0x01;
|
|
|
|
pesHeader[3] = 0xBD;
|
|
|
|
pesHeader[4] = 0x00;
|
|
|
|
pesHeader[5] = 0x00;
|
|
|
|
Reset();
|
|
|
|
}
|
|
|
|
|
2005-03-20 13:18:15 +01:00
|
|
|
void cDolbyRepacker::AppendSubStreamID(bool ContinuationFrame)
|
2005-02-05 11:59:19 +01:00
|
|
|
{
|
|
|
|
if (subStreamId) {
|
|
|
|
pesHeader[pesHeaderLen++] = subStreamId;
|
2005-03-20 13:18:15 +01:00
|
|
|
// number of ac3 frames "starting" in this packet (1 by design).
|
|
|
|
pesHeader[pesHeaderLen++] = 0x01;
|
|
|
|
// offset to start of first ac3 frame (0 means "no ac3 frame starting"
|
|
|
|
// so 1 (by design) addresses the first byte after the next two bytes).
|
2005-02-05 11:59:19 +01:00
|
|
|
pesHeader[pesHeaderLen++] = 0x00;
|
2005-03-20 13:18:15 +01:00
|
|
|
pesHeader[pesHeaderLen++] = (ContinuationFrame ? 0x00 : 0x01);
|
2005-02-05 11:59:19 +01:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2005-03-20 13:18:15 +01:00
|
|
|
void cDolbyRepacker::ResetPesHeader(bool ContinuationFrame)
|
2005-01-15 12:09:22 +01:00
|
|
|
{
|
|
|
|
pesHeader[6] = 0x80;
|
|
|
|
pesHeader[7] = 0x00;
|
|
|
|
pesHeader[8] = 0x00;
|
|
|
|
pesHeaderLen = 9;
|
2005-03-20 13:18:15 +01:00
|
|
|
AppendSubStreamID(ContinuationFrame);
|
2005-02-05 11:59:19 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
void cDolbyRepacker::Reset(void)
|
|
|
|
{
|
2005-08-28 11:23:23 +02:00
|
|
|
cRepacker::Reset();
|
2005-02-05 11:59:19 +01:00
|
|
|
ResetPesHeader();
|
|
|
|
state = find_0b;
|
2005-01-15 12:09:22 +01:00
|
|
|
ac3todo = 0;
|
|
|
|
chk1 = 0;
|
|
|
|
chk2 = 0;
|
|
|
|
fragmentLen = 0;
|
2005-02-05 11:59:19 +01:00
|
|
|
fragmentTodo = 0;
|
2005-03-13 12:05:30 +01:00
|
|
|
pesHeaderBackupLen = 0;
|
2005-07-30 10:25:03 +02:00
|
|
|
skippedBytes = 0;
|
2005-01-15 12:09:22 +01:00
|
|
|
}
|
|
|
|
|
2005-08-28 11:23:23 +02:00
|
|
|
bool cDolbyRepacker::FinishRemainder(cRingBufferLinear *ResultBuffer, const uchar *const Data, const int Todo, int &Bite)
|
2005-01-15 12:09:22 +01:00
|
|
|
{
|
2005-08-28 11:23:23 +02:00
|
|
|
bool success = true;
|
2005-02-05 11:59:19 +01:00
|
|
|
// enough data available to put PES packet into buffer?
|
|
|
|
if (fragmentTodo <= Todo) {
|
|
|
|
// output a previous fragment first
|
|
|
|
if (fragmentLen > 0) {
|
|
|
|
Bite = fragmentLen;
|
2005-08-26 13:34:07 +02:00
|
|
|
int n = Put(ResultBuffer, fragmentData, Bite, fragmentLen + fragmentTodo);
|
2005-08-28 11:23:23 +02:00
|
|
|
if (Bite != n)
|
|
|
|
success = false;
|
2005-02-05 11:59:19 +01:00
|
|
|
fragmentLen = 0;
|
2005-01-15 12:09:22 +01:00
|
|
|
}
|
2005-02-05 11:59:19 +01:00
|
|
|
Bite = fragmentTodo;
|
2005-08-28 11:23:23 +02:00
|
|
|
if (success) {
|
|
|
|
int n = Put(ResultBuffer, Data, Bite, Bite);
|
|
|
|
if (Bite != n)
|
|
|
|
success = false;
|
2005-02-05 11:59:19 +01:00
|
|
|
}
|
|
|
|
fragmentTodo = 0;
|
|
|
|
// ac3 frame completely processed?
|
|
|
|
if (Bite >= ac3todo)
|
|
|
|
state = find_0b; // go on with finding start of next packet
|
|
|
|
}
|
|
|
|
else {
|
|
|
|
// copy the fragment into separate buffer for later processing
|
|
|
|
Bite = Todo;
|
|
|
|
memcpy(fragmentData + fragmentLen, Data, Bite);
|
|
|
|
fragmentLen += Bite;
|
|
|
|
fragmentTodo -= Bite;
|
2005-01-15 12:09:22 +01:00
|
|
|
}
|
2005-08-28 11:23:23 +02:00
|
|
|
return success;
|
2005-02-05 11:59:19 +01:00
|
|
|
}
|
2005-01-15 12:09:22 +01:00
|
|
|
|
2005-08-28 11:23:23 +02:00
|
|
|
bool cDolbyRepacker::StartNewPacket(cRingBufferLinear *ResultBuffer, const uchar *const Data, const int Todo, int &Bite)
|
2005-02-05 11:59:19 +01:00
|
|
|
{
|
2005-08-28 11:23:23 +02:00
|
|
|
bool success = true;
|
2005-02-05 11:59:19 +01:00
|
|
|
int packetLen = pesHeaderLen + ac3todo;
|
|
|
|
// limit packet to maximum size
|
|
|
|
if (packetLen > maxPacketSize)
|
|
|
|
packetLen = maxPacketSize;
|
|
|
|
pesHeader[4] = (packetLen - 6) >> 8;
|
|
|
|
pesHeader[5] = (packetLen - 6) & 0xFF;
|
|
|
|
Bite = pesHeaderLen;
|
|
|
|
// enough data available to put PES packet into buffer?
|
|
|
|
if (packetLen - pesHeaderLen <= Todo) {
|
2005-08-26 13:34:07 +02:00
|
|
|
int n = Put(ResultBuffer, pesHeader, Bite, packetLen);
|
2005-08-28 11:23:23 +02:00
|
|
|
if (Bite != n)
|
|
|
|
success = false;
|
2005-02-05 11:59:19 +01:00
|
|
|
Bite = packetLen - pesHeaderLen;
|
2005-08-28 11:23:23 +02:00
|
|
|
if (success) {
|
|
|
|
n = Put(ResultBuffer, Data, Bite, Bite);
|
|
|
|
if (Bite != n)
|
|
|
|
success = false;
|
2005-02-05 11:59:19 +01:00
|
|
|
}
|
|
|
|
// ac3 frame completely processed?
|
|
|
|
if (Bite >= ac3todo)
|
|
|
|
state = find_0b; // go on with finding start of next packet
|
|
|
|
}
|
|
|
|
else {
|
|
|
|
fragmentTodo = packetLen;
|
|
|
|
// copy the pesheader into separate buffer for later processing
|
|
|
|
memcpy(fragmentData + fragmentLen, pesHeader, Bite);
|
|
|
|
fragmentLen += Bite;
|
|
|
|
fragmentTodo -= Bite;
|
|
|
|
// copy the fragment into separate buffer for later processing
|
|
|
|
Bite = Todo;
|
|
|
|
memcpy(fragmentData + fragmentLen, Data, Bite);
|
|
|
|
fragmentLen += Bite;
|
|
|
|
fragmentTodo -= Bite;
|
|
|
|
}
|
2005-08-28 11:23:23 +02:00
|
|
|
return success;
|
2005-02-05 11:59:19 +01:00
|
|
|
}
|
|
|
|
|
2005-07-30 10:25:03 +02:00
|
|
|
void cDolbyRepacker::Repack(cRingBufferLinear *ResultBuffer, const uchar *Data, int Count)
|
2005-02-05 11:59:19 +01:00
|
|
|
{
|
2005-07-30 10:25:03 +02:00
|
|
|
// synchronisation is detected some bytes after frame start.
|
|
|
|
const int SkippedBytesLimit = 4;
|
|
|
|
|
2005-02-05 11:59:19 +01:00
|
|
|
// check for MPEG 2
|
2005-07-30 10:25:03 +02:00
|
|
|
if ((Data[6] & 0xC0) != 0x80) {
|
|
|
|
DroppedData("cDolbyRepacker: MPEG 2 PES header expected", Count);
|
|
|
|
return;
|
|
|
|
}
|
2005-02-05 11:59:19 +01:00
|
|
|
|
2005-03-13 12:05:30 +01:00
|
|
|
// backup PES header
|
|
|
|
if (Data[6] != 0x80 || Data[7] != 0x00 || Data[8] != 0x00) {
|
|
|
|
pesHeaderBackupLen = 6 + 3 + Data[8];
|
|
|
|
memcpy(pesHeaderBackup, Data, pesHeaderBackupLen);
|
|
|
|
}
|
|
|
|
|
2005-02-05 11:59:19 +01:00
|
|
|
// skip PES header
|
|
|
|
int done = 6 + 3 + Data[8];
|
|
|
|
int todo = Count - done;
|
|
|
|
const uchar *data = Data + done;
|
2005-03-13 12:05:30 +01:00
|
|
|
|
2005-01-15 12:09:22 +01:00
|
|
|
// look for 0x0B 0x77 <chk1> <chk2> <frameSize>
|
|
|
|
while (todo > 0) {
|
|
|
|
switch (state) {
|
|
|
|
case find_0b:
|
2005-02-05 11:59:19 +01:00
|
|
|
if (*data == 0x0B) {
|
2006-01-01 15:06:02 +01:00
|
|
|
state++;
|
2005-02-05 11:59:19 +01:00
|
|
|
// copy header information once for later use
|
2005-03-13 12:05:30 +01:00
|
|
|
if (pesHeaderBackupLen > 0) {
|
|
|
|
pesHeaderLen = pesHeaderBackupLen;
|
|
|
|
pesHeaderBackupLen = 0;
|
|
|
|
memcpy(pesHeader, pesHeaderBackup, pesHeaderLen);
|
2005-02-05 11:59:19 +01:00
|
|
|
AppendSubStreamID();
|
|
|
|
}
|
|
|
|
}
|
2005-01-15 12:09:22 +01:00
|
|
|
data++;
|
|
|
|
done++;
|
|
|
|
todo--;
|
2005-07-30 10:25:03 +02:00
|
|
|
skippedBytes++; // collect number of skipped bytes while syncing
|
2005-01-15 12:09:22 +01:00
|
|
|
continue;
|
|
|
|
case find_77:
|
|
|
|
if (*data != 0x77) {
|
|
|
|
state = find_0b;
|
|
|
|
continue;
|
|
|
|
}
|
|
|
|
data++;
|
|
|
|
done++;
|
|
|
|
todo--;
|
2005-07-30 10:25:03 +02:00
|
|
|
skippedBytes++; // collect number of skipped bytes while syncing
|
2006-01-01 15:06:02 +01:00
|
|
|
state++;
|
2005-01-15 12:09:22 +01:00
|
|
|
continue;
|
|
|
|
case store_chk1:
|
|
|
|
chk1 = *data++;
|
|
|
|
done++;
|
|
|
|
todo--;
|
2005-07-30 10:25:03 +02:00
|
|
|
skippedBytes++; // collect number of skipped bytes while syncing
|
2006-01-01 15:06:02 +01:00
|
|
|
state++;
|
2005-01-15 12:09:22 +01:00
|
|
|
continue;
|
|
|
|
case store_chk2:
|
|
|
|
chk2 = *data++;
|
|
|
|
done++;
|
|
|
|
todo--;
|
2005-07-30 10:25:03 +02:00
|
|
|
skippedBytes++; // collect number of skipped bytes while syncing
|
2006-01-01 15:06:02 +01:00
|
|
|
state++;
|
2005-01-15 12:09:22 +01:00
|
|
|
continue;
|
2005-02-05 11:59:19 +01:00
|
|
|
case get_length:
|
2005-01-15 12:09:22 +01:00
|
|
|
ac3todo = 2 * frameSizes[*data];
|
|
|
|
// frameSizeCode was invalid => restart searching
|
|
|
|
if (ac3todo <= 0) {
|
2005-03-13 12:05:30 +01:00
|
|
|
// reset PES header instead of using a wrong one
|
2005-02-05 11:59:19 +01:00
|
|
|
ResetPesHeader();
|
2005-01-15 12:09:22 +01:00
|
|
|
if (chk1 == 0x0B) {
|
|
|
|
if (chk2 == 0x77) {
|
|
|
|
state = store_chk1;
|
|
|
|
continue;
|
|
|
|
}
|
|
|
|
if (chk2 == 0x0B) {
|
|
|
|
state = find_77;
|
|
|
|
continue;
|
|
|
|
}
|
|
|
|
state = find_0b;
|
|
|
|
continue;
|
|
|
|
}
|
|
|
|
if (chk2 == 0x0B) {
|
|
|
|
state = find_77;
|
|
|
|
continue;
|
|
|
|
}
|
|
|
|
state = find_0b;
|
|
|
|
continue;
|
|
|
|
}
|
2005-08-28 11:23:23 +02:00
|
|
|
if (initiallySyncing) // omit report for the typical initial case
|
|
|
|
initiallySyncing = false;
|
|
|
|
else if (skippedBytes > SkippedBytesLimit) // report that syncing dropped some bytes
|
2005-12-03 15:01:01 +01:00
|
|
|
LOG("cDolbyRepacker: skipped %d bytes to sync on next AC3 frame", skippedBytes - SkippedBytesLimit);
|
2005-07-30 10:25:03 +02:00
|
|
|
skippedBytes = 0;
|
2005-02-05 11:59:19 +01:00
|
|
|
// append read data to header for common output processing
|
|
|
|
pesHeader[pesHeaderLen++] = 0x0B;
|
|
|
|
pesHeader[pesHeaderLen++] = 0x77;
|
|
|
|
pesHeader[pesHeaderLen++] = chk1;
|
|
|
|
pesHeader[pesHeaderLen++] = chk2;
|
2005-01-15 12:09:22 +01:00
|
|
|
ac3todo -= 4;
|
2006-01-01 15:06:02 +01:00
|
|
|
state++;
|
2005-02-05 11:59:19 +01:00
|
|
|
// fall through to output
|
|
|
|
case output_packet: {
|
|
|
|
int bite = 0;
|
|
|
|
// finish remainder of ac3 frame?
|
2005-08-28 11:23:23 +02:00
|
|
|
if (fragmentTodo > 0)
|
|
|
|
FinishRemainder(ResultBuffer, data, todo, bite);
|
2005-01-15 12:09:22 +01:00
|
|
|
else {
|
2005-02-05 11:59:19 +01:00
|
|
|
// start a new packet
|
2005-08-28 11:23:23 +02:00
|
|
|
StartNewPacket(ResultBuffer, data, todo, bite);
|
2005-03-20 13:18:15 +01:00
|
|
|
// prepare for next (continuation) packet
|
|
|
|
ResetPesHeader(state == output_packet);
|
2005-01-15 12:09:22 +01:00
|
|
|
}
|
|
|
|
data += bite;
|
|
|
|
done += bite;
|
|
|
|
todo -= bite;
|
|
|
|
ac3todo -= bite;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2005-07-30 10:25:03 +02:00
|
|
|
// report that syncing dropped some bytes
|
|
|
|
if (skippedBytes > SkippedBytesLimit) {
|
2005-08-28 11:23:23 +02:00
|
|
|
if (!initiallySyncing) // omit report for the typical initial case
|
2005-12-03 15:01:01 +01:00
|
|
|
LOG("cDolbyRepacker: skipped %d bytes while syncing on next AC3 frame", skippedBytes - 4);
|
2005-07-30 10:25:03 +02:00
|
|
|
skippedBytes = SkippedBytesLimit;
|
|
|
|
}
|
2005-01-15 12:09:22 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
int cDolbyRepacker::BreakAt(const uchar *Data, int Count)
|
|
|
|
{
|
2005-08-28 21:25:17 +02:00
|
|
|
if (initiallySyncing)
|
|
|
|
return -1; // fill the packet buffer completely until we have synced once
|
2005-01-15 12:09:22 +01:00
|
|
|
// enough data for test?
|
|
|
|
if (Count < 6 + 3)
|
|
|
|
return -1;
|
|
|
|
// check for MPEG 2
|
|
|
|
if ((Data[6] & 0xC0) != 0x80)
|
|
|
|
return -1;
|
|
|
|
int headerLen = Data[8] + 6 + 3;
|
|
|
|
// break after fragment tail?
|
|
|
|
if (ac3todo > 0)
|
|
|
|
return headerLen + ac3todo;
|
|
|
|
// enough data for test?
|
|
|
|
if (Count < headerLen + 5)
|
|
|
|
return -1;
|
|
|
|
const uchar *data = Data + headerLen;
|
|
|
|
// break after ac3 frame?
|
|
|
|
if (data[0] == 0x0B && data[1] == 0x77 && frameSizes[data[4]] > 0)
|
2005-02-05 11:59:19 +01:00
|
|
|
return headerLen + 2 * frameSizes[data[4]];
|
2005-01-15 12:09:22 +01:00
|
|
|
return -1;
|
|
|
|
}
|
|
|
|
|
2001-06-02 10:47:40 +02:00
|
|
|
// --- cTS2PES ---------------------------------------------------------------
|
|
|
|
|
|
|
|
#include <netinet/in.h>
|
|
|
|
|
|
|
|
//XXX TODO: these should really be available in some driver header file!
|
|
|
|
#define PROG_STREAM_MAP 0xBC
|
|
|
|
#ifndef PRIVATE_STREAM1
|
|
|
|
#define PRIVATE_STREAM1 0xBD
|
|
|
|
#endif
|
|
|
|
#define PADDING_STREAM 0xBE
|
|
|
|
#ifndef PRIVATE_STREAM2
|
|
|
|
#define PRIVATE_STREAM2 0xBF
|
|
|
|
#endif
|
|
|
|
#define AUDIO_STREAM_S 0xC0
|
|
|
|
#define AUDIO_STREAM_E 0xDF
|
|
|
|
#define VIDEO_STREAM_S 0xE0
|
|
|
|
#define VIDEO_STREAM_E 0xEF
|
|
|
|
#define ECM_STREAM 0xF0
|
|
|
|
#define EMM_STREAM 0xF1
|
|
|
|
#define DSM_CC_STREAM 0xF2
|
|
|
|
#define ISO13522_STREAM 0xF3
|
|
|
|
#define PROG_STREAM_DIR 0xFF
|
|
|
|
|
|
|
|
//pts_dts flags
|
|
|
|
#define PTS_ONLY 0x80
|
|
|
|
|
|
|
|
#define TS_SIZE 188
|
|
|
|
#define PID_MASK_HI 0x1F
|
2003-01-24 17:22:29 +01:00
|
|
|
#define CONT_CNT_MASK 0x0F
|
|
|
|
|
|
|
|
// Flags:
|
2006-01-03 11:00:38 +01:00
|
|
|
#define PAY_LOAD 0x10
|
|
|
|
#define ADAPT_FIELD 0x20
|
2003-01-24 17:22:29 +01:00
|
|
|
#define PAY_START 0x40
|
|
|
|
#define TS_ERROR 0x80
|
2001-06-02 10:47:40 +02:00
|
|
|
|
2003-01-24 14:30:02 +01:00
|
|
|
#define MAX_PLENGTH 0xFFFF // the maximum PES packet length (theoretically)
|
2005-01-16 15:30:43 +01:00
|
|
|
#define MMAX_PLENGTH (64*MAX_PLENGTH) // some stations send PES packets that are extremely large, e.g. DVB-T in Finland or HDTV 1920x1080
|
2001-06-02 10:47:40 +02:00
|
|
|
|
|
|
|
#define IPACKS 2048
|
|
|
|
|
2001-06-14 15:57:30 +02:00
|
|
|
// Start codes:
|
|
|
|
#define SC_PICTURE 0x00 // "picture header"
|
|
|
|
|
|
|
|
#define MAXNONUSEFULDATA (10*1024*1024)
|
2004-02-14 10:43:57 +01:00
|
|
|
#define MAXNUMUPTERRORS 10
|
2001-06-14 15:57:30 +02:00
|
|
|
|
2001-06-02 10:47:40 +02:00
|
|
|
class cTS2PES {
|
|
|
|
private:
|
2005-01-16 14:40:47 +01:00
|
|
|
int pid;
|
2001-06-02 10:47:40 +02:00
|
|
|
int size;
|
|
|
|
int found;
|
|
|
|
int count;
|
|
|
|
uint8_t *buf;
|
|
|
|
uint8_t cid;
|
2005-08-28 21:49:34 +02:00
|
|
|
uint8_t rewriteCid;
|
2005-01-23 14:10:15 +01:00
|
|
|
uint8_t subStreamId;
|
2001-06-02 10:47:40 +02:00
|
|
|
int plength;
|
|
|
|
uint8_t plen[2];
|
|
|
|
uint8_t flag1;
|
|
|
|
uint8_t flag2;
|
|
|
|
uint8_t hlength;
|
|
|
|
int mpeg;
|
|
|
|
uint8_t check;
|
2005-08-26 13:34:07 +02:00
|
|
|
int mpeg1_required;
|
|
|
|
int mpeg1_stuffing;
|
2001-06-02 10:47:40 +02:00
|
|
|
bool done;
|
2004-10-16 09:36:28 +02:00
|
|
|
cRingBufferLinear *resultBuffer;
|
2003-01-24 17:22:29 +01:00
|
|
|
int tsErrors;
|
|
|
|
int ccErrors;
|
|
|
|
int ccCounter;
|
2005-01-15 12:09:22 +01:00
|
|
|
cRepacker *repacker;
|
2001-06-02 10:47:40 +02:00
|
|
|
static uint8_t headr[];
|
|
|
|
void store(uint8_t *Data, int Count);
|
|
|
|
void reset_ipack(void);
|
|
|
|
void send_ipack(void);
|
|
|
|
void write_ipack(const uint8_t *Data, int Count);
|
|
|
|
void instant_repack(const uint8_t *Buf, int Count);
|
|
|
|
public:
|
2005-08-28 21:49:34 +02:00
|
|
|
cTS2PES(int Pid, cRingBufferLinear *ResultBuffer, int Size, uint8_t RewriteCid = 0x00, uint8_t SubStreamId = 0x00, cRepacker *Repacker = NULL);
|
2001-06-02 10:47:40 +02:00
|
|
|
~cTS2PES();
|
2005-01-16 14:40:47 +01:00
|
|
|
int Pid(void) { return pid; }
|
2001-06-02 10:47:40 +02:00
|
|
|
void ts_to_pes(const uint8_t *Buf); // don't need count (=188)
|
2001-06-03 13:07:20 +02:00
|
|
|
void Clear(void);
|
2001-06-02 10:47:40 +02:00
|
|
|
};
|
|
|
|
|
|
|
|
uint8_t cTS2PES::headr[] = { 0x00, 0x00, 0x01 };
|
|
|
|
|
2005-08-28 21:49:34 +02:00
|
|
|
cTS2PES::cTS2PES(int Pid, cRingBufferLinear *ResultBuffer, int Size, uint8_t RewriteCid, uint8_t SubStreamId, cRepacker *Repacker)
|
2001-06-02 10:47:40 +02:00
|
|
|
{
|
2005-01-16 14:40:47 +01:00
|
|
|
pid = Pid;
|
2001-06-02 10:47:40 +02:00
|
|
|
resultBuffer = ResultBuffer;
|
|
|
|
size = Size;
|
2005-08-28 21:49:34 +02:00
|
|
|
rewriteCid = RewriteCid;
|
2005-01-23 14:10:15 +01:00
|
|
|
subStreamId = SubStreamId;
|
2005-01-15 12:09:22 +01:00
|
|
|
repacker = Repacker;
|
2005-02-05 11:59:19 +01:00
|
|
|
if (repacker) {
|
|
|
|
repacker->SetMaxPacketSize(size);
|
2005-01-23 14:10:15 +01:00
|
|
|
repacker->SetSubStreamId(subStreamId);
|
2005-06-04 14:49:25 +02:00
|
|
|
size += repacker->QuerySnoopSize();
|
2005-02-05 11:59:19 +01:00
|
|
|
}
|
2001-06-02 10:47:40 +02:00
|
|
|
|
2003-01-24 17:22:29 +01:00
|
|
|
tsErrors = 0;
|
|
|
|
ccErrors = 0;
|
|
|
|
ccCounter = -1;
|
|
|
|
|
2002-08-11 13:32:23 +02:00
|
|
|
if (!(buf = MALLOC(uint8_t, size)))
|
2002-05-13 16:35:49 +02:00
|
|
|
esyslog("Not enough memory for ts_transform");
|
2001-06-02 10:47:40 +02:00
|
|
|
|
|
|
|
reset_ipack();
|
|
|
|
}
|
|
|
|
|
|
|
|
cTS2PES::~cTS2PES()
|
|
|
|
{
|
2003-01-24 17:22:29 +01:00
|
|
|
if (tsErrors || ccErrors)
|
|
|
|
dsyslog("cTS2PES got %d TS errors, %d TS continuity errors", tsErrors, ccErrors);
|
2002-08-11 13:32:23 +02:00
|
|
|
free(buf);
|
2005-01-15 12:09:22 +01:00
|
|
|
delete repacker;
|
2001-06-02 10:47:40 +02:00
|
|
|
}
|
|
|
|
|
2001-06-03 13:07:20 +02:00
|
|
|
void cTS2PES::Clear(void)
|
|
|
|
{
|
|
|
|
reset_ipack();
|
2005-02-13 14:38:08 +01:00
|
|
|
if (repacker)
|
|
|
|
repacker->Reset();
|
2001-06-03 13:07:20 +02:00
|
|
|
}
|
|
|
|
|
2001-06-02 10:47:40 +02:00
|
|
|
void cTS2PES::store(uint8_t *Data, int Count)
|
|
|
|
{
|
2005-07-30 10:25:03 +02:00
|
|
|
if (repacker)
|
|
|
|
repacker->Repack(resultBuffer, Data, Count);
|
2005-08-26 13:34:07 +02:00
|
|
|
else
|
|
|
|
cRepacker::Put(resultBuffer, Data, Count, Count);
|
2001-06-02 10:47:40 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
void cTS2PES::reset_ipack(void)
|
|
|
|
{
|
|
|
|
found = 0;
|
|
|
|
cid = 0;
|
|
|
|
plength = 0;
|
|
|
|
flag1 = 0;
|
|
|
|
flag2 = 0;
|
|
|
|
hlength = 0;
|
|
|
|
mpeg = 0;
|
|
|
|
check = 0;
|
2005-08-26 13:34:07 +02:00
|
|
|
mpeg1_required = 0;
|
|
|
|
mpeg1_stuffing = 0;
|
2001-06-02 10:47:40 +02:00
|
|
|
done = false;
|
|
|
|
count = 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
void cTS2PES::send_ipack(void)
|
|
|
|
{
|
2005-07-30 10:25:03 +02:00
|
|
|
if (count <= ((mpeg == 2) ? 9 : 7)) // skip empty packets
|
2001-06-02 10:47:40 +02:00
|
|
|
return;
|
2005-08-28 21:49:34 +02:00
|
|
|
buf[3] = rewriteCid ? rewriteCid : cid;
|
2001-06-02 10:47:40 +02:00
|
|
|
buf[4] = (uint8_t)(((count - 6) & 0xFF00) >> 8);
|
|
|
|
buf[5] = (uint8_t)((count - 6) & 0x00FF);
|
|
|
|
store(buf, count);
|
|
|
|
|
|
|
|
switch (mpeg) {
|
|
|
|
case 2:
|
|
|
|
buf[6] = 0x80;
|
|
|
|
buf[7] = 0x00;
|
|
|
|
buf[8] = 0x00;
|
|
|
|
count = 9;
|
|
|
|
break;
|
|
|
|
case 1:
|
|
|
|
buf[6] = 0x0F;
|
|
|
|
count = 7;
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
void cTS2PES::write_ipack(const uint8_t *Data, int Count)
|
|
|
|
{
|
|
|
|
if (count < 6) {
|
|
|
|
memcpy(buf, headr, 3);
|
|
|
|
count = 6;
|
|
|
|
}
|
|
|
|
|
2005-01-15 12:09:22 +01:00
|
|
|
// determine amount of data to process
|
|
|
|
int bite = Count;
|
|
|
|
if (count + bite > size)
|
|
|
|
bite = size - count;
|
|
|
|
if (repacker) {
|
|
|
|
int breakAt = repacker->BreakAt(buf, count);
|
|
|
|
// avoid memcpy of data after break location
|
|
|
|
if (0 <= breakAt && breakAt < count + bite) {
|
|
|
|
bite = breakAt - count;
|
|
|
|
if (bite < 0) // should never happen
|
|
|
|
bite = 0;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
memcpy(buf + count, Data, bite);
|
|
|
|
count += bite;
|
|
|
|
|
|
|
|
if (repacker) {
|
|
|
|
// determine break location
|
|
|
|
int breakAt = repacker->BreakAt(buf, count);
|
|
|
|
if (breakAt > size) // won't fit into packet?
|
|
|
|
breakAt = -1;
|
|
|
|
if (breakAt > count) // not enough data?
|
|
|
|
breakAt = -1;
|
|
|
|
// push out data before break location
|
|
|
|
if (breakAt > 0) {
|
|
|
|
// adjust bite if above memcpy was to large
|
|
|
|
bite -= count - breakAt;
|
|
|
|
count = breakAt;
|
|
|
|
send_ipack();
|
|
|
|
// recurse for data after break location
|
|
|
|
if (Count - bite > 0)
|
|
|
|
write_ipack(Data + bite, Count - bite);
|
|
|
|
}
|
2001-06-02 10:47:40 +02:00
|
|
|
}
|
2005-01-15 12:09:22 +01:00
|
|
|
|
|
|
|
// push out data when buffer is full
|
|
|
|
if (count >= size) {
|
2001-06-02 10:47:40 +02:00
|
|
|
send_ipack();
|
2005-01-15 12:09:22 +01:00
|
|
|
// recurse for remaining data
|
|
|
|
if (Count - bite > 0)
|
|
|
|
write_ipack(Data + bite, Count - bite);
|
2001-06-02 10:47:40 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
void cTS2PES::instant_repack(const uint8_t *Buf, int Count)
|
|
|
|
{
|
|
|
|
int c = 0;
|
|
|
|
|
2005-08-26 13:34:07 +02:00
|
|
|
while (c < Count && (mpeg == 0 || (mpeg == 1 && found < mpeg1_required) || (mpeg == 2 && found < 9)) && (found < 5 || !done)) {
|
2001-06-02 10:47:40 +02:00
|
|
|
switch (found ) {
|
|
|
|
case 0:
|
|
|
|
case 1:
|
|
|
|
if (Buf[c] == 0x00)
|
|
|
|
found++;
|
|
|
|
else
|
|
|
|
found = 0;
|
|
|
|
c++;
|
|
|
|
break;
|
|
|
|
case 2:
|
|
|
|
if (Buf[c] == 0x01)
|
|
|
|
found++;
|
|
|
|
else if (Buf[c] != 0)
|
|
|
|
found = 0;
|
|
|
|
c++;
|
|
|
|
break;
|
|
|
|
case 3:
|
|
|
|
cid = 0;
|
|
|
|
switch (Buf[c]) {
|
|
|
|
case PROG_STREAM_MAP:
|
|
|
|
case PRIVATE_STREAM2:
|
|
|
|
case PROG_STREAM_DIR:
|
|
|
|
case ECM_STREAM :
|
|
|
|
case EMM_STREAM :
|
|
|
|
case PADDING_STREAM :
|
|
|
|
case DSM_CC_STREAM :
|
|
|
|
case ISO13522_STREAM:
|
|
|
|
done = true;
|
|
|
|
case PRIVATE_STREAM1:
|
|
|
|
case VIDEO_STREAM_S ... VIDEO_STREAM_E:
|
|
|
|
case AUDIO_STREAM_S ... AUDIO_STREAM_E:
|
|
|
|
found++;
|
|
|
|
cid = Buf[c++];
|
|
|
|
break;
|
|
|
|
default:
|
|
|
|
found = 0;
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
break;
|
|
|
|
case 4:
|
|
|
|
if (Count - c > 1) {
|
|
|
|
unsigned short *pl = (unsigned short *)(Buf + c);
|
|
|
|
plength = ntohs(*pl);
|
|
|
|
c += 2;
|
|
|
|
found += 2;
|
2005-08-26 13:34:07 +02:00
|
|
|
mpeg1_stuffing = 0;
|
2001-06-02 10:47:40 +02:00
|
|
|
}
|
|
|
|
else {
|
|
|
|
plen[0] = Buf[c];
|
|
|
|
found++;
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
break;
|
|
|
|
case 5: {
|
|
|
|
plen[1] = Buf[c++];
|
|
|
|
unsigned short *pl = (unsigned short *)plen;
|
|
|
|
plength = ntohs(*pl);
|
|
|
|
found++;
|
2005-08-26 13:34:07 +02:00
|
|
|
mpeg1_stuffing = 0;
|
2001-06-02 10:47:40 +02:00
|
|
|
}
|
|
|
|
break;
|
|
|
|
case 6:
|
|
|
|
if (!done) {
|
|
|
|
flag1 = Buf[c++];
|
|
|
|
found++;
|
2005-08-26 13:34:07 +02:00
|
|
|
if (mpeg1_stuffing == 0) { // first stuffing iteration: determine MPEG level
|
|
|
|
if ((flag1 & 0xC0) == 0x80)
|
|
|
|
mpeg = 2;
|
2005-08-27 09:03:56 +02:00
|
|
|
else {
|
2005-08-26 13:34:07 +02:00
|
|
|
mpeg = 1;
|
|
|
|
mpeg1_required = 7;
|
2005-08-27 09:03:56 +02:00
|
|
|
}
|
2005-08-26 13:34:07 +02:00
|
|
|
}
|
|
|
|
if (mpeg == 1) {
|
|
|
|
if (flag1 == 0xFF) { // MPEG1 stuffing
|
|
|
|
if (++mpeg1_stuffing > 16)
|
|
|
|
found = 0; // invalid MPEG1 header
|
|
|
|
else { // ignore stuffing
|
|
|
|
found--;
|
|
|
|
if (plength > 0)
|
|
|
|
plength--;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
else if ((flag1 & 0xC0) == 0x40) // STD_buffer_scale/size
|
|
|
|
mpeg1_required += 2;
|
|
|
|
else if (flag1 != 0x0F && (flag1 & 0xF0) != 0x20 && (flag1 & 0xF0) != 0x30)
|
|
|
|
found = 0; // invalid MPEG1 header
|
|
|
|
else {
|
|
|
|
flag2 = 0;
|
|
|
|
hlength = 0;
|
|
|
|
}
|
2001-06-02 10:47:40 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
break;
|
|
|
|
case 7:
|
2005-08-26 13:34:07 +02:00
|
|
|
if (!done && (mpeg == 2 || mpeg1_required > 7)) {
|
2001-06-02 10:47:40 +02:00
|
|
|
flag2 = Buf[c++];
|
|
|
|
found++;
|
|
|
|
}
|
|
|
|
break;
|
|
|
|
case 8:
|
2005-08-26 13:34:07 +02:00
|
|
|
if (!done && (mpeg == 2 || mpeg1_required > 7)) {
|
2001-06-02 10:47:40 +02:00
|
|
|
hlength = Buf[c++];
|
|
|
|
found++;
|
2005-08-26 13:34:07 +02:00
|
|
|
if (mpeg == 1 && hlength != 0x0F && (hlength & 0xF0) != 0x20 && (hlength & 0xF0) != 0x30)
|
|
|
|
found = 0; // invalid MPEG1 header
|
2001-06-02 10:47:40 +02:00
|
|
|
}
|
|
|
|
break;
|
|
|
|
default:
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
if (!plength)
|
|
|
|
plength = MMAX_PLENGTH - 6;
|
|
|
|
|
2005-08-26 13:34:07 +02:00
|
|
|
if (done || ((mpeg == 2 && found >= 9) || (mpeg == 1 && found >= mpeg1_required))) {
|
2001-06-02 10:47:40 +02:00
|
|
|
switch (cid) {
|
|
|
|
case AUDIO_STREAM_S ... AUDIO_STREAM_E:
|
|
|
|
case VIDEO_STREAM_S ... VIDEO_STREAM_E:
|
|
|
|
case PRIVATE_STREAM1:
|
|
|
|
|
|
|
|
if (mpeg == 2 && found == 9) {
|
|
|
|
write_ipack(&flag1, 1);
|
|
|
|
write_ipack(&flag2, 1);
|
|
|
|
write_ipack(&hlength, 1);
|
|
|
|
}
|
|
|
|
|
2005-08-26 13:34:07 +02:00
|
|
|
if (mpeg == 1 && found == mpeg1_required) {
|
2003-08-06 14:52:50 +02:00
|
|
|
write_ipack(&flag1, 1);
|
2005-08-26 13:34:07 +02:00
|
|
|
if (mpeg1_required > 7) {
|
|
|
|
write_ipack(&flag2, 1);
|
|
|
|
write_ipack(&hlength, 1);
|
|
|
|
}
|
|
|
|
}
|
2003-08-06 14:52:50 +02:00
|
|
|
|
2001-06-02 10:47:40 +02:00
|
|
|
if (mpeg == 2 && (flag2 & PTS_ONLY) && found < 14) {
|
|
|
|
while (c < Count && found < 14) {
|
|
|
|
write_ipack(Buf + c, 1);
|
|
|
|
c++;
|
|
|
|
found++;
|
|
|
|
}
|
|
|
|
if (c == Count)
|
|
|
|
return;
|
|
|
|
}
|
2001-03-31 08:42:27 +02:00
|
|
|
|
2001-06-02 10:47:40 +02:00
|
|
|
while (c < Count && found < plength + 6) {
|
|
|
|
int l = Count - c;
|
|
|
|
if (l + found > plength + 6)
|
|
|
|
l = plength + 6 - found;
|
|
|
|
write_ipack(Buf + c, l);
|
|
|
|
found += l;
|
|
|
|
c += l;
|
|
|
|
}
|
|
|
|
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (done) {
|
|
|
|
if (found + Count - c < plength + 6) {
|
|
|
|
found += Count - c;
|
|
|
|
c = Count;
|
|
|
|
}
|
|
|
|
else {
|
|
|
|
c += plength + 6 - found;
|
|
|
|
found = plength + 6;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
if (plength && found == plength + 6) {
|
2003-01-24 14:30:02 +01:00
|
|
|
if (plength == MMAX_PLENGTH - 6)
|
|
|
|
esyslog("ERROR: PES packet length overflow in remuxer (stream corruption)");
|
2001-06-02 10:47:40 +02:00
|
|
|
send_ipack();
|
|
|
|
reset_ipack();
|
|
|
|
if (c < Count)
|
|
|
|
instant_repack(Buf + c, Count - c);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
void cTS2PES::ts_to_pes(const uint8_t *Buf) // don't need count (=188)
|
|
|
|
{
|
|
|
|
if (!Buf)
|
|
|
|
return;
|
|
|
|
|
2003-01-24 17:22:29 +01:00
|
|
|
if (Buf[1] & TS_ERROR)
|
|
|
|
tsErrors++;
|
2006-01-03 11:00:38 +01:00
|
|
|
|
|
|
|
if (!(Buf[3] & (ADAPT_FIELD | PAY_LOAD)))
|
|
|
|
return; // discard TS packet with adaption_field_control set to '00'.
|
|
|
|
|
|
|
|
if ((Buf[3] & PAY_LOAD) && ((Buf[3] ^ ccCounter) & CONT_CNT_MASK)) {
|
2003-01-24 17:22:29 +01:00
|
|
|
// This should check duplicates and packets which do not increase the counter.
|
|
|
|
// But as the errors usually come in bursts this should be enough to
|
|
|
|
// show you there is something wrong with signal quality.
|
|
|
|
if (ccCounter != -1 && ((Buf[3] ^ (ccCounter + 1)) & CONT_CNT_MASK)) {
|
|
|
|
ccErrors++;
|
|
|
|
// Enable this if you are having problems with signal quality.
|
|
|
|
// These are the errors I used to get with Nova-T when antenna
|
|
|
|
// was not positioned correcly (not transport errors). //tvr
|
|
|
|
//dsyslog("TS continuity error (%d)", ccCounter);
|
|
|
|
}
|
|
|
|
ccCounter = Buf[3] & CONT_CNT_MASK;
|
|
|
|
}
|
|
|
|
|
2001-06-02 10:47:40 +02:00
|
|
|
if (Buf[1] & PAY_START) {
|
2005-12-03 12:18:15 +01:00
|
|
|
if (found > 6) {
|
2006-01-03 11:00:38 +01:00
|
|
|
if (plength != MMAX_PLENGTH - 6 && plength != found - 6)
|
|
|
|
dsyslog("PES packet shortened to %d bytes (expected: %d bytes)", found, plength + 6);
|
2001-06-02 10:47:40 +02:00
|
|
|
plength = found - 6;
|
|
|
|
send_ipack();
|
|
|
|
reset_ipack();
|
|
|
|
}
|
2006-01-03 11:00:38 +01:00
|
|
|
found = 0;
|
2001-06-02 10:47:40 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
uint8_t off = 0;
|
|
|
|
|
|
|
|
if (Buf[3] & ADAPT_FIELD) { // adaptation field?
|
|
|
|
off = Buf[4] + 1;
|
|
|
|
if (off + 4 > 187)
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2006-01-03 11:00:38 +01:00
|
|
|
if (Buf[3] & PAY_LOAD)
|
|
|
|
instant_repack(Buf + 4 + off, TS_SIZE - 4 - off);
|
2001-06-02 10:47:40 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
// --- cRemux ----------------------------------------------------------------
|
|
|
|
|
2004-10-16 09:36:28 +02:00
|
|
|
#define RESULTBUFFERSIZE KILOBYTE(256)
|
|
|
|
|
2005-01-16 14:40:47 +01:00
|
|
|
cRemux::cRemux(int VPid, const int *APids, const int *DPids, const int *SPids, bool ExitOnFailure)
|
2001-03-31 08:42:27 +02:00
|
|
|
{
|
2001-06-02 10:47:40 +02:00
|
|
|
exitOnFailure = ExitOnFailure;
|
2005-01-16 14:40:47 +01:00
|
|
|
isRadio = VPid == 0 || VPid == 1 || VPid == 0x1FFF;
|
2004-02-14 10:43:57 +01:00
|
|
|
numUPTerrors = 0;
|
2001-03-31 08:42:27 +02:00
|
|
|
synced = false;
|
2001-06-02 10:47:40 +02:00
|
|
|
skipped = 0;
|
2005-01-16 14:40:47 +01:00
|
|
|
numTracks = 0;
|
2004-10-16 09:36:28 +02:00
|
|
|
resultSkipped = 0;
|
|
|
|
resultBuffer = new cRingBufferLinear(RESULTBUFFERSIZE, IPACKS, false, "Result");
|
|
|
|
resultBuffer->SetTimeouts(0, 100);
|
2005-01-16 14:40:47 +01:00
|
|
|
if (VPid)
|
2005-07-30 10:25:03 +02:00
|
|
|
#define TEST_cVideoRepacker
|
2005-06-19 10:19:13 +02:00
|
|
|
#ifdef TEST_cVideoRepacker
|
2005-08-28 21:49:34 +02:00
|
|
|
ts2pes[numTracks++] = new cTS2PES(VPid, resultBuffer, IPACKS, 0xE0, 0x00, new cVideoRepacker);
|
2005-06-19 10:19:13 +02:00
|
|
|
#else
|
2005-08-28 21:49:34 +02:00
|
|
|
ts2pes[numTracks++] = new cTS2PES(VPid, resultBuffer, IPACKS, 0xE0);
|
2005-06-19 10:19:13 +02:00
|
|
|
#endif
|
2005-01-16 14:40:47 +01:00
|
|
|
if (APids) {
|
|
|
|
int n = 0;
|
2005-09-04 15:15:14 +02:00
|
|
|
while (*APids && numTracks < MAXTRACKS && n < MAXAPIDS) {
|
2005-08-26 13:34:07 +02:00
|
|
|
#define TEST_cAudioRepacker
|
|
|
|
#ifdef TEST_cAudioRepacker
|
2005-09-04 15:15:14 +02:00
|
|
|
ts2pes[numTracks++] = new cTS2PES(*APids++, resultBuffer, IPACKS, 0xC0 + n, 0x00, new cAudioRepacker(0xC0 + n));
|
|
|
|
n++;
|
2005-08-26 13:34:07 +02:00
|
|
|
#else
|
2005-01-16 14:40:47 +01:00
|
|
|
ts2pes[numTracks++] = new cTS2PES(*APids++, resultBuffer, IPACKS, 0xC0 + n++);
|
2005-08-26 13:34:07 +02:00
|
|
|
#endif
|
2005-09-04 15:15:14 +02:00
|
|
|
}
|
2005-01-16 14:40:47 +01:00
|
|
|
}
|
|
|
|
if (DPids) {
|
|
|
|
int n = 0;
|
2005-01-23 14:10:15 +01:00
|
|
|
while (*DPids && numTracks < MAXTRACKS && n < MAXDPIDS)
|
|
|
|
ts2pes[numTracks++] = new cTS2PES(*DPids++, resultBuffer, IPACKS, 0x00, 0x80 + n++, new cDolbyRepacker);
|
2005-01-16 14:40:47 +01:00
|
|
|
}
|
|
|
|
/* future...
|
|
|
|
if (SPids) {
|
|
|
|
int n = 0;
|
|
|
|
while (*SPids && numTracks < MAXTRACKS && n < MAXSPIDS)
|
2005-01-23 14:10:15 +01:00
|
|
|
ts2pes[numTracks++] = new cTS2PES(*SPids++, resultBuffer, IPACKS, 0x00, 0x28 + n++);
|
2005-01-16 14:40:47 +01:00
|
|
|
}
|
|
|
|
*/
|
2001-03-31 08:42:27 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
cRemux::~cRemux()
|
|
|
|
{
|
2005-01-16 14:40:47 +01:00
|
|
|
for (int t = 0; t < numTracks; t++)
|
|
|
|
delete ts2pes[t];
|
2004-10-16 09:36:28 +02:00
|
|
|
delete resultBuffer;
|
2001-06-02 10:47:40 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
int cRemux::GetPid(const uchar *Data)
|
|
|
|
{
|
|
|
|
return (((uint16_t)Data[0] & PID_MASK_HI) << 8) | (Data[1] & 0xFF);
|
2001-03-31 08:42:27 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
int cRemux::GetPacketLength(const uchar *Data, int Count, int Offset)
|
|
|
|
{
|
2004-10-16 09:36:28 +02:00
|
|
|
// Returns the length of the packet starting at Offset, or -1 if Count is
|
|
|
|
// too small to contain the entire packet.
|
|
|
|
int Length = (Offset + 5 < Count) ? (Data[Offset + 4] << 8) + Data[Offset + 5] + 6 : -1;
|
|
|
|
if (Length > 0 && Offset + Length <= Count)
|
|
|
|
return Length;
|
|
|
|
return -1;
|
2001-03-31 08:42:27 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
int cRemux::ScanVideoPacket(const uchar *Data, int Count, int Offset, uchar &PictureType)
|
|
|
|
{
|
|
|
|
// Scans the video packet starting at Offset and returns its length.
|
|
|
|
// If the return value is -1 the packet was not completely in the buffer.
|
|
|
|
int Length = GetPacketLength(Data, Count, Offset);
|
2004-10-16 09:36:28 +02:00
|
|
|
if (Length > 0) {
|
2005-08-26 13:34:07 +02:00
|
|
|
int PesPayloadOffset = 0;
|
|
|
|
if (AnalyzePesHeader(Data + Offset, Length, PesPayloadOffset) >= phMPEG1) {
|
|
|
|
for (int i = Offset + PesPayloadOffset; i < Offset + Length - 5; i++) {
|
2004-10-16 09:36:28 +02:00
|
|
|
if (Data[i] == 0 && Data[i + 1] == 0 && Data[i + 2] == 1) {
|
|
|
|
switch (Data[i + 3]) {
|
|
|
|
case SC_PICTURE: PictureType = (Data[i + 5] >> 3) & 0x07;
|
|
|
|
return Length;
|
|
|
|
}
|
|
|
|
}
|
2001-03-31 08:42:27 +02:00
|
|
|
}
|
2004-10-16 09:36:28 +02:00
|
|
|
}
|
2001-03-31 08:42:27 +02:00
|
|
|
PictureType = NO_PICTURE;
|
|
|
|
return Length;
|
|
|
|
}
|
|
|
|
return -1;
|
|
|
|
}
|
|
|
|
|
2001-08-19 14:37:17 +02:00
|
|
|
#define TS_SYNC_BYTE 0x47
|
|
|
|
|
2004-10-16 09:36:28 +02:00
|
|
|
int cRemux::Put(const uchar *Data, int Count)
|
2001-03-31 08:42:27 +02:00
|
|
|
{
|
2001-08-19 14:37:17 +02:00
|
|
|
int used = 0;
|
|
|
|
|
|
|
|
// Make sure we are looking at a TS packet:
|
|
|
|
|
|
|
|
while (Count > TS_SIZE) {
|
|
|
|
if (Data[0] == TS_SYNC_BYTE && Data[TS_SIZE] == TS_SYNC_BYTE)
|
|
|
|
break;
|
|
|
|
Data++;
|
|
|
|
Count--;
|
|
|
|
used++;
|
|
|
|
}
|
|
|
|
if (used)
|
2002-05-13 16:35:49 +02:00
|
|
|
esyslog("ERROR: skipped %d byte to sync on TS packet", used);
|
2001-08-19 14:37:17 +02:00
|
|
|
|
2001-06-02 10:47:40 +02:00
|
|
|
// Convert incoming TS data into multiplexed PES:
|
|
|
|
|
|
|
|
for (int i = 0; i < Count; i += TS_SIZE) {
|
|
|
|
if (Count - i < TS_SIZE)
|
|
|
|
break;
|
2001-08-19 14:37:17 +02:00
|
|
|
if (Data[i] != TS_SYNC_BYTE)
|
|
|
|
break;
|
2004-10-24 09:26:23 +02:00
|
|
|
if (resultBuffer->Free() < 2 * IPACKS)
|
|
|
|
break; // A cTS2PES might write one full packet and also a small rest
|
2001-06-24 17:42:19 +02:00
|
|
|
int pid = GetPid(Data + i + 1);
|
2001-06-02 10:47:40 +02:00
|
|
|
if (Data[i + 3] & 0x10) { // got payload
|
2005-01-16 14:40:47 +01:00
|
|
|
for (int t = 0; t < numTracks; t++) {
|
|
|
|
if (ts2pes[t]->Pid() == pid) {
|
|
|
|
ts2pes[t]->ts_to_pes(Data + i);
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
2001-06-02 10:47:40 +02:00
|
|
|
}
|
|
|
|
used += TS_SIZE;
|
|
|
|
}
|
2002-02-03 16:22:05 +01:00
|
|
|
|
2001-06-02 10:47:40 +02:00
|
|
|
// Check if we're getting anywhere here:
|
|
|
|
if (!synced && skipped >= 0) {
|
2001-06-14 15:57:30 +02:00
|
|
|
if (skipped > MAXNONUSEFULDATA) {
|
2002-05-13 16:35:49 +02:00
|
|
|
esyslog("ERROR: no useful data seen within %d byte of video stream", skipped);
|
2001-06-02 10:47:40 +02:00
|
|
|
skipped = -1;
|
|
|
|
if (exitOnFailure)
|
|
|
|
cThread::EmergencyExit(true);
|
|
|
|
}
|
|
|
|
else
|
2004-10-16 09:36:28 +02:00
|
|
|
skipped += used;
|
|
|
|
}
|
|
|
|
|
|
|
|
return used;
|
|
|
|
}
|
|
|
|
|
|
|
|
uchar *cRemux::Get(int &Count, uchar *PictureType)
|
|
|
|
{
|
|
|
|
// Remove any previously skipped data from the result buffer:
|
|
|
|
|
|
|
|
if (resultSkipped > 0) {
|
|
|
|
resultBuffer->Del(resultSkipped);
|
|
|
|
resultSkipped = 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
#if 0
|
|
|
|
// Test recording without determining the real frame borders:
|
|
|
|
if (PictureType)
|
|
|
|
*PictureType = I_FRAME;
|
|
|
|
return resultBuffer->Get(Count);
|
|
|
|
#endif
|
|
|
|
|
2001-06-02 10:47:40 +02:00
|
|
|
// Check for frame borders:
|
|
|
|
|
2004-10-16 09:36:28 +02:00
|
|
|
if (PictureType)
|
|
|
|
*PictureType = NO_PICTURE;
|
|
|
|
|
|
|
|
Count = 0;
|
|
|
|
uchar *resultData = NULL;
|
|
|
|
int resultCount = 0;
|
|
|
|
uchar *data = resultBuffer->Get(resultCount);
|
|
|
|
if (data) {
|
|
|
|
for (int i = 0; i < resultCount - 3; i++) {
|
|
|
|
if (data[i] == 0 && data[i + 1] == 0 && data[i + 2] == 1) {
|
|
|
|
int l = 0;
|
|
|
|
uchar StreamType = data[i + 3];
|
|
|
|
if (VIDEO_STREAM_S <= StreamType && StreamType <= VIDEO_STREAM_E) {
|
|
|
|
uchar pt = NO_PICTURE;
|
|
|
|
l = ScanVideoPacket(data, resultCount, i, pt);
|
|
|
|
if (l < 0)
|
|
|
|
return resultData;
|
|
|
|
if (pt != NO_PICTURE) {
|
|
|
|
if (pt < I_FRAME || B_FRAME < pt) {
|
|
|
|
esyslog("ERROR: unknown picture type '%d'", pt);
|
|
|
|
if (++numUPTerrors > MAXNUMUPTERRORS && exitOnFailure)
|
|
|
|
cThread::EmergencyExit(true);
|
|
|
|
}
|
|
|
|
else if (!synced) {
|
|
|
|
if (pt == I_FRAME) {
|
|
|
|
if (PictureType)
|
|
|
|
*PictureType = pt;
|
|
|
|
resultSkipped = i; // will drop everything before this position
|
|
|
|
SetBrokenLink(data + i, l);
|
|
|
|
synced = true;
|
2001-06-02 10:47:40 +02:00
|
|
|
}
|
2004-10-16 09:36:28 +02:00
|
|
|
}
|
|
|
|
else if (Count)
|
|
|
|
return resultData;
|
|
|
|
else if (PictureType)
|
|
|
|
*PictureType = pt;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
else { //if (AUDIO_STREAM_S <= StreamType && StreamType <= AUDIO_STREAM_E || StreamType == PRIVATE_STREAM1) {
|
|
|
|
l = GetPacketLength(data, resultCount, i);
|
|
|
|
if (l < 0)
|
|
|
|
return resultData;
|
2005-08-26 13:37:42 +02:00
|
|
|
if (isRadio) {
|
|
|
|
if (!synced) {
|
|
|
|
if (PictureType)
|
|
|
|
*PictureType = I_FRAME;
|
|
|
|
resultSkipped = i; // will drop everything before this position
|
|
|
|
synced = true;
|
|
|
|
}
|
|
|
|
else if (Count)
|
|
|
|
return resultData;
|
|
|
|
else if (PictureType)
|
|
|
|
*PictureType = I_FRAME;
|
|
|
|
}
|
2004-10-16 09:36:28 +02:00
|
|
|
}
|
|
|
|
if (synced) {
|
|
|
|
if (!Count)
|
|
|
|
resultData = data + i;
|
|
|
|
Count += l;
|
|
|
|
}
|
|
|
|
else
|
2004-10-23 12:06:13 +02:00
|
|
|
resultSkipped = i + l;
|
2004-10-16 09:36:28 +02:00
|
|
|
if (l > 0)
|
|
|
|
i += l - 1; // the loop increments, too
|
2001-03-31 08:42:27 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2004-10-16 09:36:28 +02:00
|
|
|
return resultData;
|
|
|
|
}
|
|
|
|
|
|
|
|
void cRemux::Del(int Count)
|
|
|
|
{
|
|
|
|
resultBuffer->Del(Count);
|
|
|
|
}
|
|
|
|
|
|
|
|
void cRemux::Clear(void)
|
|
|
|
{
|
2005-01-16 14:40:47 +01:00
|
|
|
for (int t = 0; t < numTracks; t++)
|
|
|
|
ts2pes[t]->Clear();
|
2004-10-16 09:36:28 +02:00
|
|
|
resultBuffer->Clear();
|
2005-02-12 10:59:03 +01:00
|
|
|
synced = false;
|
|
|
|
skipped = 0;
|
2005-02-13 10:29:27 +01:00
|
|
|
resultSkipped = 0;
|
2001-03-31 08:42:27 +02:00
|
|
|
}
|
|
|
|
|
2003-04-26 15:11:17 +02:00
|
|
|
void cRemux::SetBrokenLink(uchar *Data, int Length)
|
|
|
|
{
|
2005-08-26 13:34:07 +02:00
|
|
|
int PesPayloadOffset = 0;
|
|
|
|
if (AnalyzePesHeader(Data, Length, PesPayloadOffset) >= phMPEG1 && (Data[3] & 0xF0) == VIDEO_STREAM_S) {
|
|
|
|
for (int i = PesPayloadOffset; i < Length - 7; i++) {
|
2003-04-26 15:11:17 +02:00
|
|
|
if (Data[i] == 0 && Data[i + 1] == 0 && Data[i + 2] == 1 && Data[i + 3] == 0xB8) {
|
|
|
|
if (!(Data[i + 7] & 0x40)) // set flag only if GOP is not closed
|
|
|
|
Data[i + 7] |= 0x20;
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
dsyslog("SetBrokenLink: no GOP header found in video packet");
|
|
|
|
}
|
|
|
|
else
|
|
|
|
dsyslog("SetBrokenLink: no video packet in frame");
|
|
|
|
}
|