2002-06-16 12:57:31 +02:00
|
|
|
/*
|
|
|
|
* dvbplayer.c: The DVB player
|
|
|
|
*
|
|
|
|
* See the main source file 'vdr.c' for copyright information and
|
|
|
|
* how to reach the author.
|
|
|
|
*
|
2006-01-08 11:44:37 +01:00
|
|
|
* $Id: dvbplayer.c 1.42 2006/01/08 11:39:41 kls Exp $
|
2002-06-16 12:57:31 +02:00
|
|
|
*/
|
|
|
|
|
|
|
|
#include "dvbplayer.h"
|
2002-08-11 10:47:11 +02:00
|
|
|
#include <stdlib.h>
|
2002-06-16 12:57:31 +02:00
|
|
|
#include "recording.h"
|
2003-04-27 09:55:53 +02:00
|
|
|
#include "remux.h"
|
2002-06-16 12:57:31 +02:00
|
|
|
#include "ringbuffer.h"
|
|
|
|
#include "thread.h"
|
2002-08-15 10:13:03 +02:00
|
|
|
#include "tools.h"
|
2002-06-16 12:57:31 +02:00
|
|
|
|
|
|
|
// --- cBackTrace ----------------------------------------------------------
|
|
|
|
|
|
|
|
#define AVG_FRAME_SIZE 15000 // an assumption about the average frame size
|
|
|
|
#define DVB_BUF_SIZE (256 * 1024) // an assumption about the dvb firmware buffer size
|
|
|
|
#define BACKTRACE_ENTRIES (DVB_BUF_SIZE / AVG_FRAME_SIZE + 20) // how many entries are needed to backtrace buffer contents
|
|
|
|
|
|
|
|
class cBackTrace {
|
|
|
|
private:
|
|
|
|
int index[BACKTRACE_ENTRIES];
|
|
|
|
int length[BACKTRACE_ENTRIES];
|
|
|
|
int pos, num;
|
|
|
|
public:
|
|
|
|
cBackTrace(void);
|
|
|
|
void Clear(void);
|
|
|
|
void Add(int Index, int Length);
|
|
|
|
int Get(bool Forward);
|
|
|
|
};
|
|
|
|
|
|
|
|
cBackTrace::cBackTrace(void)
|
|
|
|
{
|
|
|
|
Clear();
|
|
|
|
}
|
|
|
|
|
|
|
|
void cBackTrace::Clear(void)
|
|
|
|
{
|
|
|
|
pos = num = 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
void cBackTrace::Add(int Index, int Length)
|
|
|
|
{
|
|
|
|
index[pos] = Index;
|
|
|
|
length[pos] = Length;
|
|
|
|
if (++pos >= BACKTRACE_ENTRIES)
|
|
|
|
pos = 0;
|
|
|
|
if (num < BACKTRACE_ENTRIES)
|
|
|
|
num++;
|
|
|
|
}
|
|
|
|
|
|
|
|
int cBackTrace::Get(bool Forward)
|
|
|
|
{
|
|
|
|
int p = pos;
|
|
|
|
int n = num;
|
|
|
|
int l = DVB_BUF_SIZE + (Forward ? 0 : 256 * 1024); //XXX (256 * 1024) == DVB_BUF_SIZE ???
|
|
|
|
int i = -1;
|
|
|
|
|
|
|
|
while (n && l > 0) {
|
|
|
|
if (--p < 0)
|
|
|
|
p = BACKTRACE_ENTRIES - 1;
|
|
|
|
i = index[p] - 1;
|
|
|
|
l -= length[p];
|
2002-08-16 09:22:29 +02:00
|
|
|
n--;
|
2002-06-16 12:57:31 +02:00
|
|
|
}
|
|
|
|
return i;
|
|
|
|
}
|
|
|
|
|
2003-01-19 15:43:58 +01:00
|
|
|
// --- cNonBlockingFileReader ------------------------------------------------
|
|
|
|
|
|
|
|
class cNonBlockingFileReader : public cThread {
|
|
|
|
private:
|
2005-10-31 13:14:26 +01:00
|
|
|
cUnbufferedFile *f;
|
2003-01-19 15:43:58 +01:00
|
|
|
uchar *buffer;
|
|
|
|
int wanted;
|
|
|
|
int length;
|
|
|
|
bool hasData;
|
2004-10-16 09:36:28 +02:00
|
|
|
cCondWait newSet;
|
2003-01-19 15:43:58 +01:00
|
|
|
protected:
|
|
|
|
void Action(void);
|
|
|
|
public:
|
|
|
|
cNonBlockingFileReader(void);
|
|
|
|
~cNonBlockingFileReader();
|
|
|
|
void Clear(void);
|
2005-10-31 13:14:26 +01:00
|
|
|
int Read(cUnbufferedFile *File, uchar *Buffer, int Length);
|
2003-01-19 15:43:58 +01:00
|
|
|
bool Reading(void) { return buffer; }
|
|
|
|
};
|
|
|
|
|
|
|
|
cNonBlockingFileReader::cNonBlockingFileReader(void)
|
2003-10-18 12:29:08 +02:00
|
|
|
:cThread("non blocking file reader")
|
2003-01-19 15:43:58 +01:00
|
|
|
{
|
2005-10-31 13:14:26 +01:00
|
|
|
f = NULL;
|
2003-01-19 15:43:58 +01:00
|
|
|
buffer = NULL;
|
|
|
|
wanted = length = 0;
|
|
|
|
hasData = false;
|
|
|
|
Start();
|
|
|
|
}
|
|
|
|
|
|
|
|
cNonBlockingFileReader::~cNonBlockingFileReader()
|
|
|
|
{
|
2004-10-16 09:36:28 +02:00
|
|
|
newSet.Signal();
|
2003-01-19 15:43:58 +01:00
|
|
|
Cancel(3);
|
|
|
|
free(buffer);
|
|
|
|
}
|
|
|
|
|
|
|
|
void cNonBlockingFileReader::Clear(void)
|
|
|
|
{
|
2004-10-16 09:36:28 +02:00
|
|
|
Lock();
|
2005-10-31 13:14:26 +01:00
|
|
|
f = NULL;
|
2003-05-24 09:10:07 +02:00
|
|
|
free(buffer);
|
2003-01-19 15:43:58 +01:00
|
|
|
buffer = NULL;
|
|
|
|
wanted = length = 0;
|
|
|
|
hasData = false;
|
2004-10-16 09:36:28 +02:00
|
|
|
Unlock();
|
|
|
|
newSet.Signal();
|
2003-01-19 15:43:58 +01:00
|
|
|
}
|
|
|
|
|
2005-10-31 13:14:26 +01:00
|
|
|
int cNonBlockingFileReader::Read(cUnbufferedFile *File, uchar *Buffer, int Length)
|
2003-01-19 15:43:58 +01:00
|
|
|
{
|
|
|
|
if (hasData && buffer) {
|
|
|
|
if (buffer != Buffer) {
|
|
|
|
esyslog("ERROR: cNonBlockingFileReader::Read() called with different buffer!");
|
|
|
|
errno = EINVAL;
|
|
|
|
return -1;
|
|
|
|
}
|
|
|
|
buffer = NULL;
|
|
|
|
return length;
|
|
|
|
}
|
|
|
|
if (!buffer) {
|
2005-10-31 13:14:26 +01:00
|
|
|
f = File;
|
2003-01-19 15:43:58 +01:00
|
|
|
buffer = Buffer;
|
|
|
|
wanted = Length;
|
|
|
|
length = 0;
|
|
|
|
hasData = false;
|
2004-10-16 09:36:28 +02:00
|
|
|
newSet.Signal();
|
2003-01-19 15:43:58 +01:00
|
|
|
}
|
|
|
|
errno = EAGAIN;
|
|
|
|
return -1;
|
|
|
|
}
|
|
|
|
|
|
|
|
void cNonBlockingFileReader::Action(void)
|
|
|
|
{
|
2005-08-14 11:24:57 +02:00
|
|
|
while (Running()) {
|
2004-10-16 09:36:28 +02:00
|
|
|
Lock();
|
2005-10-31 13:14:26 +01:00
|
|
|
if (!hasData && f && buffer) {
|
|
|
|
int r = f->Read(buffer + length, wanted - length);
|
2003-01-19 15:43:58 +01:00
|
|
|
if (r >= 0) {
|
|
|
|
length += r;
|
|
|
|
if (!r || length == wanted) // r == 0 means EOF
|
|
|
|
hasData = true;
|
|
|
|
}
|
|
|
|
else if (r < 0 && FATALERRNO) {
|
|
|
|
LOG_ERROR;
|
|
|
|
length = r; // this will forward the error status to the caller
|
|
|
|
hasData = true;
|
|
|
|
}
|
|
|
|
}
|
2004-10-16 09:36:28 +02:00
|
|
|
Unlock();
|
|
|
|
newSet.Wait(1000);
|
2003-01-19 15:43:58 +01:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2002-06-16 12:57:31 +02:00
|
|
|
// --- cDvbPlayer ------------------------------------------------------------
|
|
|
|
|
2004-10-16 09:36:28 +02:00
|
|
|
#define PLAYERBUFSIZE MEGABYTE(1)
|
2002-06-16 12:57:31 +02:00
|
|
|
|
|
|
|
// The number of frames to back up when resuming an interrupted replay session:
|
|
|
|
#define RESUMEBACKUP (10 * FRAMESPERSEC)
|
|
|
|
|
|
|
|
class cDvbPlayer : public cPlayer, cThread {
|
|
|
|
private:
|
|
|
|
enum ePlayModes { pmPlay, pmPause, pmSlow, pmFast, pmStill };
|
|
|
|
enum ePlayDirs { pdForward, pdBackward };
|
|
|
|
static int Speeds[];
|
2003-01-19 15:43:58 +01:00
|
|
|
cNonBlockingFileReader *nonBlockingFileReader;
|
2002-06-16 12:57:31 +02:00
|
|
|
cRingBufferFrame *ringBuffer;
|
|
|
|
cBackTrace *backTrace;
|
|
|
|
cFileName *fileName;
|
|
|
|
cIndexFile *index;
|
2005-10-31 13:14:26 +01:00
|
|
|
cUnbufferedFile *replayFile;
|
2002-06-16 12:57:31 +02:00
|
|
|
bool eof;
|
2003-04-27 09:55:53 +02:00
|
|
|
bool firstPacket;
|
2002-06-16 12:57:31 +02:00
|
|
|
ePlayModes playMode;
|
|
|
|
ePlayDirs playDir;
|
|
|
|
int trickSpeed;
|
|
|
|
int readIndex, writeIndex;
|
|
|
|
cFrame *readFrame;
|
2003-04-27 09:55:53 +02:00
|
|
|
cFrame *playFrame;
|
2002-06-16 12:57:31 +02:00
|
|
|
void TrickSpeed(int Increment);
|
|
|
|
void Empty(void);
|
|
|
|
bool NextFile(uchar FileNumber = 0, int FileOffset = -1);
|
|
|
|
int Resume(void);
|
|
|
|
bool Save(void);
|
|
|
|
protected:
|
|
|
|
virtual void Activate(bool On);
|
|
|
|
virtual void Action(void);
|
|
|
|
public:
|
|
|
|
cDvbPlayer(const char *FileName);
|
|
|
|
virtual ~cDvbPlayer();
|
2005-08-14 11:24:57 +02:00
|
|
|
bool Active(void) { return cThread::Running(); }
|
2002-06-16 12:57:31 +02:00
|
|
|
void Pause(void);
|
|
|
|
void Play(void);
|
|
|
|
void Forward(void);
|
|
|
|
void Backward(void);
|
|
|
|
int SkipFrames(int Frames);
|
|
|
|
void SkipSeconds(int Seconds);
|
|
|
|
void Goto(int Position, bool Still = false);
|
2002-07-13 11:16:27 +02:00
|
|
|
virtual bool GetIndex(int &Current, int &Total, bool SnapToIFrame = false);
|
|
|
|
virtual bool GetReplayMode(bool &Play, bool &Forward, int &Speed);
|
2002-06-16 12:57:31 +02:00
|
|
|
};
|
|
|
|
|
|
|
|
#define MAX_VIDEO_SLOWMOTION 63 // max. arg to pass to VIDEO_SLOWMOTION // TODO is this value correct?
|
|
|
|
#define NORMAL_SPEED 4 // the index of the '1' entry in the following array
|
|
|
|
#define MAX_SPEEDS 3 // the offset of the maximum speed from normal speed in either direction
|
|
|
|
#define SPEED_MULT 12 // the speed multiplier
|
|
|
|
int cDvbPlayer::Speeds[] = { 0, -2, -4, -8, 1, 2, 4, 12, 0 };
|
|
|
|
|
|
|
|
cDvbPlayer::cDvbPlayer(const char *FileName)
|
2003-10-18 12:29:08 +02:00
|
|
|
:cThread("dvbplayer")
|
2002-06-16 12:57:31 +02:00
|
|
|
{
|
2003-01-19 15:43:58 +01:00
|
|
|
nonBlockingFileReader = NULL;
|
2002-06-16 12:57:31 +02:00
|
|
|
ringBuffer = NULL;
|
|
|
|
backTrace = NULL;
|
|
|
|
index = NULL;
|
|
|
|
eof = false;
|
2003-04-27 09:55:53 +02:00
|
|
|
firstPacket = true;
|
2002-06-16 12:57:31 +02:00
|
|
|
playMode = pmPlay;
|
|
|
|
playDir = pdForward;
|
|
|
|
trickSpeed = NORMAL_SPEED;
|
|
|
|
readIndex = writeIndex = -1;
|
|
|
|
readFrame = NULL;
|
|
|
|
playFrame = NULL;
|
|
|
|
isyslog("replay %s", FileName);
|
|
|
|
fileName = new cFileName(FileName, false);
|
|
|
|
replayFile = fileName->Open();
|
2005-10-31 13:14:26 +01:00
|
|
|
if (!replayFile)
|
2002-06-16 12:57:31 +02:00
|
|
|
return;
|
2004-10-16 09:36:28 +02:00
|
|
|
ringBuffer = new cRingBufferFrame(PLAYERBUFSIZE);
|
2002-06-16 12:57:31 +02:00
|
|
|
// Create the index file:
|
|
|
|
index = new cIndexFile(FileName, false);
|
|
|
|
if (!index)
|
|
|
|
esyslog("ERROR: can't allocate index");
|
|
|
|
else if (!index->Ok()) {
|
|
|
|
delete index;
|
|
|
|
index = NULL;
|
|
|
|
}
|
|
|
|
backTrace = new cBackTrace;
|
|
|
|
}
|
|
|
|
|
|
|
|
cDvbPlayer::~cDvbPlayer()
|
|
|
|
{
|
|
|
|
Detach();
|
|
|
|
Save();
|
2005-05-05 12:53:43 +02:00
|
|
|
delete readFrame; // might not have been stored in the buffer in Action()
|
2002-06-16 12:57:31 +02:00
|
|
|
delete index;
|
|
|
|
delete fileName;
|
|
|
|
delete backTrace;
|
|
|
|
delete ringBuffer;
|
|
|
|
}
|
|
|
|
|
|
|
|
void cDvbPlayer::TrickSpeed(int Increment)
|
|
|
|
{
|
|
|
|
int nts = trickSpeed + Increment;
|
|
|
|
if (Speeds[nts] == 1) {
|
|
|
|
trickSpeed = nts;
|
|
|
|
if (playMode == pmFast)
|
|
|
|
Play();
|
|
|
|
else
|
|
|
|
Pause();
|
|
|
|
}
|
|
|
|
else if (Speeds[nts]) {
|
|
|
|
trickSpeed = nts;
|
|
|
|
int Mult = (playMode == pmSlow && playDir == pdForward) ? 1 : SPEED_MULT;
|
|
|
|
int sp = (Speeds[nts] > 0) ? Mult / Speeds[nts] : -Speeds[nts] * Mult;
|
|
|
|
if (sp > MAX_VIDEO_SLOWMOTION)
|
|
|
|
sp = MAX_VIDEO_SLOWMOTION;
|
|
|
|
DeviceTrickSpeed(sp);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
void cDvbPlayer::Empty(void)
|
|
|
|
{
|
2003-01-19 15:43:58 +01:00
|
|
|
LOCK_THREAD;
|
|
|
|
if (nonBlockingFileReader)
|
|
|
|
nonBlockingFileReader->Clear();
|
2002-06-16 12:57:31 +02:00
|
|
|
if ((readIndex = backTrace->Get(playDir == pdForward)) < 0)
|
|
|
|
readIndex = writeIndex;
|
2005-05-05 12:53:43 +02:00
|
|
|
delete readFrame; // might not have been stored in the buffer in Action()
|
2002-06-16 12:57:31 +02:00
|
|
|
readFrame = NULL;
|
|
|
|
playFrame = NULL;
|
|
|
|
ringBuffer->Clear();
|
|
|
|
backTrace->Clear();
|
|
|
|
DeviceClear();
|
2003-04-27 09:55:53 +02:00
|
|
|
firstPacket = true;
|
2002-06-16 12:57:31 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
bool cDvbPlayer::NextFile(uchar FileNumber, int FileOffset)
|
|
|
|
{
|
|
|
|
if (FileNumber > 0)
|
|
|
|
replayFile = fileName->SetOffset(FileNumber, FileOffset);
|
2005-10-31 13:14:26 +01:00
|
|
|
else if (replayFile && eof)
|
2002-06-16 12:57:31 +02:00
|
|
|
replayFile = fileName->NextFile();
|
|
|
|
eof = false;
|
2005-10-31 13:14:26 +01:00
|
|
|
return replayFile != NULL;
|
2002-06-16 12:57:31 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
int cDvbPlayer::Resume(void)
|
|
|
|
{
|
|
|
|
if (index) {
|
|
|
|
int Index = index->GetResume();
|
|
|
|
if (Index >= 0) {
|
|
|
|
uchar FileNumber;
|
|
|
|
int FileOffset;
|
|
|
|
if (index->Get(Index, &FileNumber, &FileOffset) && NextFile(FileNumber, FileOffset))
|
|
|
|
return Index;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return -1;
|
|
|
|
}
|
|
|
|
|
|
|
|
bool cDvbPlayer::Save(void)
|
|
|
|
{
|
|
|
|
if (index) {
|
|
|
|
int Index = writeIndex;
|
|
|
|
if (Index >= 0) {
|
|
|
|
Index -= RESUMEBACKUP;
|
|
|
|
if (Index > 0)
|
|
|
|
Index = index->GetNextIFrame(Index, false);
|
|
|
|
else
|
|
|
|
Index = 0;
|
|
|
|
if (Index >= 0)
|
|
|
|
return index->StoreResume(Index);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
void cDvbPlayer::Activate(bool On)
|
|
|
|
{
|
|
|
|
if (On) {
|
2005-10-31 13:14:26 +01:00
|
|
|
if (replayFile)
|
2002-06-16 12:57:31 +02:00
|
|
|
Start();
|
|
|
|
}
|
2005-08-13 13:17:24 +02:00
|
|
|
else
|
2005-05-22 11:29:19 +02:00
|
|
|
Cancel(9);
|
2002-06-16 12:57:31 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
void cDvbPlayer::Action(void)
|
|
|
|
{
|
2003-01-19 15:43:58 +01:00
|
|
|
uchar *b = NULL;
|
2003-04-27 09:55:53 +02:00
|
|
|
uchar *p = NULL;
|
2002-06-16 12:57:31 +02:00
|
|
|
int pc = 0;
|
|
|
|
|
|
|
|
readIndex = Resume();
|
|
|
|
if (readIndex >= 0)
|
2004-12-26 12:45:22 +01:00
|
|
|
isyslog("resuming replay at index %d (%s)", readIndex, *IndexToHMSF(readIndex, true));
|
2002-06-16 12:57:31 +02:00
|
|
|
|
2003-01-19 15:43:58 +01:00
|
|
|
nonBlockingFileReader = new cNonBlockingFileReader;
|
|
|
|
int Length = 0;
|
2005-05-08 14:07:00 +02:00
|
|
|
bool Sleep = false;
|
2003-01-19 15:43:58 +01:00
|
|
|
|
2005-08-14 11:24:57 +02:00
|
|
|
while (Running() && (NextFile() || readIndex >= 0 || ringBuffer->Available() || !DeviceFlush(100))) {
|
2005-05-08 14:07:00 +02:00
|
|
|
if (Sleep) {
|
|
|
|
cCondWait::SleepMs(3); // this keeps the CPU load low
|
|
|
|
Sleep = false;
|
|
|
|
}
|
2002-08-16 09:22:29 +02:00
|
|
|
cPoller Poller;
|
|
|
|
if (DevicePoll(Poller, 100)) {
|
|
|
|
|
|
|
|
LOCK_THREAD;
|
|
|
|
|
|
|
|
// Read the next frame from the file:
|
|
|
|
|
2005-05-08 14:06:21 +02:00
|
|
|
if (playMode != pmStill && playMode != pmPause) {
|
2005-10-31 13:14:26 +01:00
|
|
|
if (!readFrame && (replayFile || readIndex >= 0)) {
|
2003-01-19 15:43:58 +01:00
|
|
|
if (!nonBlockingFileReader->Reading()) {
|
|
|
|
if (playMode == pmFast || (playMode == pmSlow && playDir == pdBackward)) {
|
|
|
|
uchar FileNumber;
|
|
|
|
int FileOffset;
|
|
|
|
int Index = index->GetNextIFrame(readIndex, playDir == pdForward, &FileNumber, &FileOffset, &Length, true);
|
|
|
|
if (Index >= 0) {
|
|
|
|
if (!NextFile(FileNumber, FileOffset))
|
|
|
|
continue;
|
|
|
|
}
|
|
|
|
else {
|
2004-06-19 08:58:14 +02:00
|
|
|
// hit begin of recording: wait for device buffers to drain
|
|
|
|
// before changing play mode:
|
|
|
|
if (!DeviceFlush(100))
|
|
|
|
continue;
|
2003-01-19 15:43:58 +01:00
|
|
|
// can't call Play() here, because those functions may only be
|
|
|
|
// called from the foreground thread - and we also don't need
|
|
|
|
// to empty the buffer here
|
|
|
|
DevicePlay();
|
|
|
|
playMode = pmPlay;
|
|
|
|
playDir = pdForward;
|
2002-08-24 15:08:25 +02:00
|
|
|
continue;
|
2003-01-19 15:43:58 +01:00
|
|
|
}
|
|
|
|
readIndex = Index;
|
2002-08-16 09:22:29 +02:00
|
|
|
}
|
2003-01-19 15:43:58 +01:00
|
|
|
else if (index) {
|
|
|
|
uchar FileNumber;
|
|
|
|
int FileOffset;
|
|
|
|
readIndex++;
|
|
|
|
if (!(index->Get(readIndex, &FileNumber, &FileOffset, NULL, &Length) && NextFile(FileNumber, FileOffset))) {
|
|
|
|
readIndex = -1;
|
|
|
|
eof = true;
|
|
|
|
continue;
|
|
|
|
}
|
2002-08-16 09:22:29 +02:00
|
|
|
}
|
2004-12-17 14:55:49 +01:00
|
|
|
else // allows replay even if the index file is missing
|
2003-01-19 15:43:58 +01:00
|
|
|
Length = MAXFRAMESIZE;
|
|
|
|
if (Length == -1)
|
|
|
|
Length = MAXFRAMESIZE; // this means we read up to EOF (see cIndex)
|
|
|
|
else if (Length > MAXFRAMESIZE) {
|
|
|
|
esyslog("ERROR: frame larger than buffer (%d > %d)", Length, MAXFRAMESIZE);
|
|
|
|
Length = MAXFRAMESIZE;
|
2002-08-24 15:08:25 +02:00
|
|
|
}
|
2003-01-19 15:43:58 +01:00
|
|
|
b = MALLOC(uchar, Length);
|
|
|
|
}
|
|
|
|
int r = nonBlockingFileReader->Read(replayFile, b, Length);
|
|
|
|
if (r > 0) {
|
|
|
|
readFrame = new cFrame(b, -r, ftUnknown, readIndex); // hands over b to the ringBuffer
|
|
|
|
b = NULL;
|
2002-08-16 09:22:29 +02:00
|
|
|
}
|
|
|
|
else if (r == 0)
|
|
|
|
eof = true;
|
|
|
|
else if (r < 0 && FATALERRNO) {
|
|
|
|
LOG_ERROR;
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2005-05-08 14:06:21 +02:00
|
|
|
// Store the frame in the buffer:
|
2002-08-16 09:22:29 +02:00
|
|
|
|
2005-05-08 14:06:21 +02:00
|
|
|
if (readFrame) {
|
|
|
|
if (ringBuffer->Put(readFrame))
|
|
|
|
readFrame = NULL;
|
|
|
|
}
|
2002-08-16 09:22:29 +02:00
|
|
|
}
|
2005-05-08 14:06:21 +02:00
|
|
|
else
|
2005-05-08 14:07:00 +02:00
|
|
|
Sleep = true;
|
2002-08-16 09:22:29 +02:00
|
|
|
|
|
|
|
// Get the next frame from the buffer:
|
|
|
|
|
|
|
|
if (!playFrame) {
|
|
|
|
playFrame = ringBuffer->Get();
|
|
|
|
p = NULL;
|
|
|
|
pc = 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
// Play the frame:
|
|
|
|
|
|
|
|
if (playFrame) {
|
|
|
|
if (!p) {
|
|
|
|
p = playFrame->Data();
|
|
|
|
pc = playFrame->Count();
|
2003-05-24 08:48:49 +02:00
|
|
|
if (p) {
|
|
|
|
if (firstPacket) {
|
2004-12-17 14:55:49 +01:00
|
|
|
PlayPes(NULL, 0);
|
2003-05-24 08:48:49 +02:00
|
|
|
cRemux::SetBrokenLink(p, pc);
|
|
|
|
firstPacket = false;
|
|
|
|
}
|
2003-04-27 09:55:53 +02:00
|
|
|
}
|
2002-08-16 09:22:29 +02:00
|
|
|
}
|
|
|
|
if (p) {
|
2004-12-17 14:55:49 +01:00
|
|
|
int w = PlayPes(p, pc, playMode != pmPlay);
|
2002-08-16 09:22:29 +02:00
|
|
|
if (w > 0) {
|
|
|
|
p += w;
|
|
|
|
pc -= w;
|
|
|
|
}
|
|
|
|
else if (w < 0 && FATALERRNO) {
|
|
|
|
LOG_ERROR;
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
if (pc == 0) {
|
|
|
|
writeIndex = playFrame->Index();
|
|
|
|
backTrace->Add(playFrame->Index(), playFrame->Count());
|
|
|
|
ringBuffer->Drop(playFrame);
|
|
|
|
playFrame = NULL;
|
2003-02-15 11:01:04 +01:00
|
|
|
p = NULL;
|
2002-08-16 09:22:29 +02:00
|
|
|
}
|
|
|
|
}
|
2005-07-30 09:23:29 +02:00
|
|
|
else
|
|
|
|
Sleep = true;
|
2002-08-16 09:22:29 +02:00
|
|
|
}
|
2002-06-16 12:57:31 +02:00
|
|
|
}
|
|
|
|
|
2003-01-19 15:43:58 +01:00
|
|
|
cNonBlockingFileReader *nbfr = nonBlockingFileReader;
|
|
|
|
nonBlockingFileReader = NULL;
|
|
|
|
delete nbfr;
|
2002-06-16 12:57:31 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
void cDvbPlayer::Pause(void)
|
|
|
|
{
|
|
|
|
if (playMode == pmPause || playMode == pmStill)
|
|
|
|
Play();
|
|
|
|
else {
|
|
|
|
LOCK_THREAD;
|
|
|
|
if (playMode == pmFast || (playMode == pmSlow && playDir == pdBackward))
|
|
|
|
Empty();
|
|
|
|
DeviceFreeze();
|
|
|
|
playMode = pmPause;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
void cDvbPlayer::Play(void)
|
|
|
|
{
|
|
|
|
if (playMode != pmPlay) {
|
|
|
|
LOCK_THREAD;
|
|
|
|
if (playMode == pmStill || playMode == pmFast || (playMode == pmSlow && playDir == pdBackward))
|
|
|
|
Empty();
|
|
|
|
DevicePlay();
|
|
|
|
playMode = pmPlay;
|
|
|
|
playDir = pdForward;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
void cDvbPlayer::Forward(void)
|
|
|
|
{
|
|
|
|
if (index) {
|
|
|
|
switch (playMode) {
|
|
|
|
case pmFast:
|
|
|
|
if (Setup.MultiSpeedMode) {
|
|
|
|
TrickSpeed(playDir == pdForward ? 1 : -1);
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
else if (playDir == pdForward) {
|
|
|
|
Play();
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
// run into pmPlay
|
|
|
|
case pmPlay: {
|
|
|
|
LOCK_THREAD;
|
|
|
|
Empty();
|
|
|
|
DeviceMute();
|
|
|
|
playMode = pmFast;
|
|
|
|
playDir = pdForward;
|
|
|
|
trickSpeed = NORMAL_SPEED;
|
|
|
|
TrickSpeed(Setup.MultiSpeedMode ? 1 : MAX_SPEEDS);
|
|
|
|
}
|
|
|
|
break;
|
|
|
|
case pmSlow:
|
|
|
|
if (Setup.MultiSpeedMode) {
|
|
|
|
TrickSpeed(playDir == pdForward ? -1 : 1);
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
else if (playDir == pdForward) {
|
|
|
|
Pause();
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
// run into pmPause
|
|
|
|
case pmStill:
|
|
|
|
case pmPause:
|
|
|
|
DeviceMute();
|
|
|
|
playMode = pmSlow;
|
|
|
|
playDir = pdForward;
|
|
|
|
trickSpeed = NORMAL_SPEED;
|
|
|
|
TrickSpeed(Setup.MultiSpeedMode ? -1 : -MAX_SPEEDS);
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
void cDvbPlayer::Backward(void)
|
|
|
|
{
|
|
|
|
if (index) {
|
|
|
|
switch (playMode) {
|
|
|
|
case pmFast:
|
|
|
|
if (Setup.MultiSpeedMode) {
|
|
|
|
TrickSpeed(playDir == pdBackward ? 1 : -1);
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
else if (playDir == pdBackward) {
|
|
|
|
Play();
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
// run into pmPlay
|
|
|
|
case pmPlay: {
|
|
|
|
LOCK_THREAD;
|
|
|
|
Empty();
|
|
|
|
DeviceMute();
|
|
|
|
playMode = pmFast;
|
|
|
|
playDir = pdBackward;
|
|
|
|
trickSpeed = NORMAL_SPEED;
|
|
|
|
TrickSpeed(Setup.MultiSpeedMode ? 1 : MAX_SPEEDS);
|
|
|
|
}
|
|
|
|
break;
|
|
|
|
case pmSlow:
|
|
|
|
if (Setup.MultiSpeedMode) {
|
|
|
|
TrickSpeed(playDir == pdBackward ? -1 : 1);
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
else if (playDir == pdBackward) {
|
|
|
|
Pause();
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
// run into pmPause
|
|
|
|
case pmStill:
|
|
|
|
case pmPause: {
|
|
|
|
LOCK_THREAD;
|
|
|
|
Empty();
|
|
|
|
DeviceMute();
|
|
|
|
playMode = pmSlow;
|
|
|
|
playDir = pdBackward;
|
|
|
|
trickSpeed = NORMAL_SPEED;
|
|
|
|
TrickSpeed(Setup.MultiSpeedMode ? -1 : -MAX_SPEEDS);
|
|
|
|
}
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
int cDvbPlayer::SkipFrames(int Frames)
|
|
|
|
{
|
|
|
|
if (index && Frames) {
|
|
|
|
int Current, Total;
|
|
|
|
GetIndex(Current, Total, true);
|
|
|
|
int OldCurrent = Current;
|
2006-01-08 11:44:37 +01:00
|
|
|
// As GetNextIFrame() increments/decrements at least once, the
|
2005-08-29 15:45:38 +02:00
|
|
|
// destination frame (= Current + Frames) must be adjusted by
|
|
|
|
// -1/+1 respectively.
|
|
|
|
Current = index->GetNextIFrame(Current + Frames + (Frames > 0 ? -1 : 1), Frames > 0);
|
2002-06-16 12:57:31 +02:00
|
|
|
return Current >= 0 ? Current : OldCurrent;
|
|
|
|
}
|
|
|
|
return -1;
|
|
|
|
}
|
|
|
|
|
|
|
|
void cDvbPlayer::SkipSeconds(int Seconds)
|
|
|
|
{
|
|
|
|
if (index && Seconds) {
|
|
|
|
LOCK_THREAD;
|
|
|
|
Empty();
|
|
|
|
int Index = writeIndex;
|
|
|
|
if (Index >= 0) {
|
|
|
|
Index = max(Index + Seconds * FRAMESPERSEC, 0);
|
|
|
|
if (Index > 0)
|
|
|
|
Index = index->GetNextIFrame(Index, false, NULL, NULL, NULL, true);
|
|
|
|
if (Index >= 0)
|
2002-08-24 15:08:25 +02:00
|
|
|
readIndex = writeIndex = Index - 1; // Action() will first increment it!
|
2002-06-16 12:57:31 +02:00
|
|
|
}
|
|
|
|
Play();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
void cDvbPlayer::Goto(int Index, bool Still)
|
|
|
|
{
|
|
|
|
if (index) {
|
|
|
|
LOCK_THREAD;
|
|
|
|
Empty();
|
|
|
|
if (++Index <= 0)
|
|
|
|
Index = 1; // not '0', to allow GetNextIFrame() below to work!
|
|
|
|
uchar FileNumber;
|
|
|
|
int FileOffset, Length;
|
|
|
|
Index = index->GetNextIFrame(Index, false, &FileNumber, &FileOffset, &Length);
|
|
|
|
if (Index >= 0 && NextFile(FileNumber, FileOffset) && Still) {
|
2005-07-30 10:04:18 +02:00
|
|
|
uchar b[MAXFRAMESIZE + 4 + 5 + 4];
|
2002-06-16 12:57:31 +02:00
|
|
|
int r = ReadFrame(replayFile, b, Length, sizeof(b));
|
|
|
|
if (r > 0) {
|
|
|
|
if (playMode == pmPause)
|
|
|
|
DevicePlay();
|
2005-07-30 10:04:18 +02:00
|
|
|
// append sequence end code to get the image shown immediately with softdevices
|
2005-08-28 21:20:58 +02:00
|
|
|
if (r > 6 && (b[3] & 0xF0) == 0xE0) { // make sure to append it only to a video packet
|
2005-07-30 10:04:18 +02:00
|
|
|
b[r++] = 0x00;
|
|
|
|
b[r++] = 0x00;
|
|
|
|
b[r++] = 0x01;
|
|
|
|
b[r++] = b[3];
|
|
|
|
if (b[6] & 0x80) { // MPEG 2
|
|
|
|
b[r++] = 0x00;
|
|
|
|
b[r++] = 0x07;
|
|
|
|
b[r++] = 0x80;
|
|
|
|
b[r++] = 0x00;
|
|
|
|
b[r++] = 0x00;
|
|
|
|
}
|
|
|
|
else { // MPEG 1
|
|
|
|
b[r++] = 0x00;
|
|
|
|
b[r++] = 0x05;
|
|
|
|
b[r++] = 0x0F;
|
|
|
|
}
|
|
|
|
b[r++] = 0x00;
|
|
|
|
b[r++] = 0x00;
|
|
|
|
b[r++] = 0x01;
|
|
|
|
b[r++] = 0xB7;
|
|
|
|
}
|
2002-06-16 12:57:31 +02:00
|
|
|
DeviceStillPicture(b, r);
|
|
|
|
}
|
|
|
|
playMode = pmStill;
|
|
|
|
}
|
|
|
|
readIndex = writeIndex = Index;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2002-07-13 11:16:27 +02:00
|
|
|
bool cDvbPlayer::GetIndex(int &Current, int &Total, bool SnapToIFrame)
|
2002-06-16 12:57:31 +02:00
|
|
|
{
|
|
|
|
if (index) {
|
|
|
|
if (playMode == pmStill)
|
|
|
|
Current = max(readIndex, 0);
|
|
|
|
else {
|
|
|
|
Current = max(writeIndex, 0);
|
|
|
|
if (SnapToIFrame) {
|
|
|
|
int i1 = index->GetNextIFrame(Current + 1, false);
|
|
|
|
int i2 = index->GetNextIFrame(Current, true);
|
|
|
|
Current = (abs(Current - i1) <= abs(Current - i2)) ? i1 : i2;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
Total = index->Last();
|
2002-07-13 11:16:27 +02:00
|
|
|
return true;
|
2002-06-16 12:57:31 +02:00
|
|
|
}
|
2002-07-13 11:16:27 +02:00
|
|
|
Current = Total = -1;
|
|
|
|
return false;
|
2002-06-16 12:57:31 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
bool cDvbPlayer::GetReplayMode(bool &Play, bool &Forward, int &Speed)
|
|
|
|
{
|
|
|
|
Play = (playMode == pmPlay || playMode == pmFast);
|
|
|
|
Forward = (playDir == pdForward);
|
|
|
|
if (playMode == pmFast || playMode == pmSlow)
|
|
|
|
Speed = Setup.MultiSpeedMode ? abs(trickSpeed - NORMAL_SPEED) : 0;
|
|
|
|
else
|
|
|
|
Speed = -1;
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
|
|
|
// --- cDvbPlayerControl -----------------------------------------------------
|
|
|
|
|
2002-06-23 11:23:34 +02:00
|
|
|
cDvbPlayerControl::cDvbPlayerControl(const char *FileName)
|
|
|
|
:cControl(player = new cDvbPlayer(FileName))
|
2002-06-16 12:57:31 +02:00
|
|
|
{
|
|
|
|
}
|
|
|
|
|
|
|
|
cDvbPlayerControl::~cDvbPlayerControl()
|
|
|
|
{
|
|
|
|
Stop();
|
|
|
|
}
|
|
|
|
|
|
|
|
bool cDvbPlayerControl::Active(void)
|
|
|
|
{
|
|
|
|
return player && player->Active();
|
|
|
|
}
|
|
|
|
|
|
|
|
void cDvbPlayerControl::Stop(void)
|
|
|
|
{
|
|
|
|
delete player;
|
|
|
|
player = NULL;
|
|
|
|
}
|
|
|
|
|
|
|
|
void cDvbPlayerControl::Pause(void)
|
|
|
|
{
|
|
|
|
if (player)
|
|
|
|
player->Pause();
|
|
|
|
}
|
|
|
|
|
|
|
|
void cDvbPlayerControl::Play(void)
|
|
|
|
{
|
|
|
|
if (player)
|
|
|
|
player->Play();
|
|
|
|
}
|
|
|
|
|
|
|
|
void cDvbPlayerControl::Forward(void)
|
|
|
|
{
|
|
|
|
if (player)
|
|
|
|
player->Forward();
|
|
|
|
}
|
|
|
|
|
|
|
|
void cDvbPlayerControl::Backward(void)
|
|
|
|
{
|
|
|
|
if (player)
|
|
|
|
player->Backward();
|
|
|
|
}
|
|
|
|
|
|
|
|
void cDvbPlayerControl::SkipSeconds(int Seconds)
|
|
|
|
{
|
|
|
|
if (player)
|
|
|
|
player->SkipSeconds(Seconds);
|
|
|
|
}
|
|
|
|
|
|
|
|
int cDvbPlayerControl::SkipFrames(int Frames)
|
|
|
|
{
|
|
|
|
if (player)
|
|
|
|
return player->SkipFrames(Frames);
|
|
|
|
return -1;
|
|
|
|
}
|
|
|
|
|
|
|
|
bool cDvbPlayerControl::GetIndex(int &Current, int &Total, bool SnapToIFrame)
|
|
|
|
{
|
|
|
|
if (player) {
|
|
|
|
player->GetIndex(Current, Total, SnapToIFrame);
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
bool cDvbPlayerControl::GetReplayMode(bool &Play, bool &Forward, int &Speed)
|
|
|
|
{
|
|
|
|
return player && player->GetReplayMode(Play, Forward, Speed);
|
|
|
|
}
|
|
|
|
|
|
|
|
void cDvbPlayerControl::Goto(int Position, bool Still)
|
|
|
|
{
|
|
|
|
if (player)
|
|
|
|
player->Goto(Position, Still);
|
|
|
|
}
|