2000-02-19 13:36:48 +01:00
|
|
|
/*
|
|
|
|
* dvbapi.c: Interface to the DVB driver
|
|
|
|
*
|
2000-04-24 09:46:05 +02:00
|
|
|
* See the main source file 'vdr.c' for copyright information and
|
2000-02-19 13:36:48 +01:00
|
|
|
* how to reach the author.
|
|
|
|
*
|
2001-03-31 08:42:27 +02:00
|
|
|
* $Id: dvbapi.c 1.64 2001/03/18 16:47:16 kls Exp $
|
2000-02-19 13:36:48 +01:00
|
|
|
*/
|
|
|
|
|
|
|
|
#include "dvbapi.h"
|
2000-04-15 17:38:11 +02:00
|
|
|
#include <errno.h>
|
2000-02-19 13:36:48 +01:00
|
|
|
#include <fcntl.h>
|
2000-09-17 11:53:35 +02:00
|
|
|
extern "C" {
|
|
|
|
#include <jpeglib.h>
|
|
|
|
}
|
2000-04-15 17:38:11 +02:00
|
|
|
#include <stdlib.h>
|
2000-02-19 13:36:48 +01:00
|
|
|
#include <sys/ioctl.h>
|
2000-09-17 11:53:35 +02:00
|
|
|
#include <sys/mman.h>
|
2000-04-15 17:38:11 +02:00
|
|
|
#include <sys/stat.h>
|
|
|
|
#include <sys/time.h>
|
2000-02-19 13:36:48 +01:00
|
|
|
#include <unistd.h>
|
2000-10-08 16:18:23 +02:00
|
|
|
#include "config.h"
|
2000-02-19 13:36:48 +01:00
|
|
|
#include "interface.h"
|
2000-12-28 12:57:16 +01:00
|
|
|
#include "recording.h"
|
2001-03-31 08:42:27 +02:00
|
|
|
#include "remux.h"
|
|
|
|
#include "ringbuffer.h"
|
2000-02-19 13:36:48 +01:00
|
|
|
#include "tools.h"
|
2000-07-29 15:21:42 +02:00
|
|
|
#include "videodir.h"
|
2000-02-19 13:36:48 +01:00
|
|
|
|
|
|
|
#define VIDEODEVICE "/dev/video"
|
2000-10-29 13:17:22 +01:00
|
|
|
#define VBIDEVICE "/dev/vbi"
|
2000-02-19 13:36:48 +01:00
|
|
|
|
2000-04-15 17:38:11 +02:00
|
|
|
// The size of the array used to buffer video data:
|
2001-03-31 08:42:27 +02:00
|
|
|
// (must be larger than MINVIDEODATA - see remux.h)
|
2000-04-15 17:38:11 +02:00
|
|
|
#define VIDEOBUFSIZE (1024*1024)
|
2000-02-19 13:36:48 +01:00
|
|
|
|
2000-04-15 17:38:11 +02:00
|
|
|
#define FRAMESPERSEC 25
|
|
|
|
|
|
|
|
// The maximum file size is limited by the range that can be covered
|
|
|
|
// with 'int'. 4GB might be possible (if the range is considered
|
|
|
|
// 'unsigned'), 2GB should be possible (even if the range is considered
|
|
|
|
// 'signed'), so let's use 1GB for absolute safety (the actual file size
|
|
|
|
// may be slightly higher because we stop recording only before the next
|
|
|
|
// 'I' frame, to have a complete Group Of Pictures):
|
2000-07-29 15:21:42 +02:00
|
|
|
#define MAXVIDEOFILESIZE (1024*1024*1024) // Byte
|
2000-04-15 17:38:11 +02:00
|
|
|
#define MAXFILESPERRECORDING 255
|
|
|
|
|
2000-07-29 15:21:42 +02:00
|
|
|
#define MINFREEDISKSPACE (512) // MB
|
|
|
|
#define DISKCHECKINTERVAL 100 // seconds
|
|
|
|
|
2000-04-15 17:38:11 +02:00
|
|
|
#define INDEXFILESUFFIX "/index.vdr"
|
|
|
|
#define RECORDFILESUFFIX "/%03d.vdr"
|
|
|
|
#define RECORDFILESUFFIXLEN 20 // some additional bytes for safety...
|
|
|
|
|
|
|
|
// The number of frames to back up when resuming an interrupted replay session:
|
|
|
|
#define RESUMEBACKUP (10 * FRAMESPERSEC)
|
|
|
|
|
|
|
|
typedef unsigned char uchar;
|
|
|
|
|
2000-12-08 16:23:32 +01:00
|
|
|
static void SetPlayMode(int VideoDev, int Mode)
|
|
|
|
{
|
|
|
|
if (VideoDev >= 0) {
|
|
|
|
struct video_play_mode pmode;
|
|
|
|
pmode.mode = Mode;
|
|
|
|
ioctl(VideoDev, VIDIOCSPLAYMODE, &pmode);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2000-12-28 12:57:16 +01:00
|
|
|
const char *IndexToHMSF(int Index, bool WithFrame)
|
2000-12-09 11:13:00 +01:00
|
|
|
{
|
|
|
|
static char buffer[16];
|
|
|
|
int f = (Index % FRAMESPERSEC) + 1;
|
|
|
|
int s = (Index / FRAMESPERSEC);
|
|
|
|
int m = s / 60 % 60;
|
|
|
|
int h = s / 3600;
|
|
|
|
s %= 60;
|
|
|
|
snprintf(buffer, sizeof(buffer), WithFrame ? "%d:%02d:%02d.%02d" : "%d:%02d:%02d", h, m, s, f);
|
|
|
|
return buffer;
|
|
|
|
}
|
|
|
|
|
2000-12-28 12:57:16 +01:00
|
|
|
int HMSFToIndex(const char *HMSF)
|
|
|
|
{
|
|
|
|
int h, m, s, f = 0;
|
|
|
|
if (3 <= sscanf(HMSF, "%d:%d:%d.%d", &h, &m, &s, &f))
|
|
|
|
return (h * 3600 + m * 60 + s) * FRAMESPERSEC + f - 1;
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2000-04-15 17:38:11 +02:00
|
|
|
// --- cIndexFile ------------------------------------------------------------
|
|
|
|
|
|
|
|
class cIndexFile {
|
|
|
|
private:
|
|
|
|
struct tIndex { int offset; uchar type; uchar number; short reserved; };
|
|
|
|
int f;
|
|
|
|
char *fileName, *pFileExt;
|
2000-10-03 11:26:10 +02:00
|
|
|
int size, last;
|
2000-04-15 17:38:11 +02:00
|
|
|
tIndex *index;
|
2000-10-03 11:26:10 +02:00
|
|
|
cResumeFile resumeFile;
|
2000-05-27 14:07:17 +02:00
|
|
|
bool CatchUp(void);
|
2000-04-15 17:38:11 +02:00
|
|
|
public:
|
2000-12-28 12:57:16 +01:00
|
|
|
cIndexFile(const char *FileName, bool Record);
|
2000-04-15 17:38:11 +02:00
|
|
|
~cIndexFile();
|
|
|
|
void Write(uchar PictureType, uchar FileNumber, int FileOffset);
|
2000-12-28 12:57:16 +01:00
|
|
|
bool Get(int Index, uchar *FileNumber, int *FileOffset, uchar *PictureType = NULL, int *Length = NULL);
|
|
|
|
int GetNextIFrame(int Index, bool Forward, uchar *FileNumber = NULL, int *FileOffset = NULL, int *Length = NULL);
|
2000-04-15 17:38:11 +02:00
|
|
|
int Get(uchar FileNumber, int FileOffset);
|
2000-12-28 12:57:16 +01:00
|
|
|
int Last(void) { CatchUp(); return last; }
|
2000-10-03 11:26:10 +02:00
|
|
|
int GetResume(void) { return resumeFile.Read(); }
|
|
|
|
bool StoreResume(int Index) { return resumeFile.Save(Index); }
|
2000-04-15 17:38:11 +02:00
|
|
|
};
|
|
|
|
|
|
|
|
cIndexFile::cIndexFile(const char *FileName, bool Record)
|
2000-10-03 11:26:10 +02:00
|
|
|
:resumeFile(FileName)
|
2000-02-19 13:36:48 +01:00
|
|
|
{
|
2000-04-15 17:38:11 +02:00
|
|
|
f = -1;
|
|
|
|
fileName = pFileExt = NULL;
|
2000-05-27 14:07:17 +02:00
|
|
|
size = 0;
|
2000-10-03 11:26:10 +02:00
|
|
|
last = -1;
|
2000-04-15 17:38:11 +02:00
|
|
|
index = NULL;
|
|
|
|
if (FileName) {
|
2000-10-03 11:26:10 +02:00
|
|
|
fileName = new char[strlen(FileName) + strlen(INDEXFILESUFFIX) + 1];
|
|
|
|
if (fileName) {
|
2000-04-15 17:38:11 +02:00
|
|
|
strcpy(fileName, FileName);
|
|
|
|
pFileExt = fileName + strlen(fileName);
|
|
|
|
strcpy(pFileExt, INDEXFILESUFFIX);
|
|
|
|
int delta = 0;
|
|
|
|
if (access(fileName, R_OK) == 0) {
|
|
|
|
struct stat buf;
|
|
|
|
if (stat(fileName, &buf) == 0) {
|
|
|
|
delta = buf.st_size % sizeof(tIndex);
|
|
|
|
if (delta) {
|
|
|
|
delta = sizeof(tIndex) - delta;
|
|
|
|
esyslog(LOG_ERR, "ERROR: invalid file size (%d) in '%s'", buf.st_size, fileName);
|
|
|
|
}
|
|
|
|
last = (buf.st_size + delta) / sizeof(tIndex) - 1;
|
|
|
|
if (!Record && last >= 0) {
|
2000-05-27 14:07:17 +02:00
|
|
|
size = last + 1;
|
|
|
|
index = new tIndex[size];
|
|
|
|
if (index) {
|
|
|
|
f = open(fileName, O_RDONLY);
|
|
|
|
if (f >= 0) {
|
|
|
|
if ((int)read(f, index, buf.st_size) != buf.st_size) {
|
|
|
|
esyslog(LOG_ERR, "ERROR: can't read from file '%s'", fileName);
|
|
|
|
delete index;
|
|
|
|
index = NULL;
|
|
|
|
close(f);
|
|
|
|
f = -1;
|
|
|
|
}
|
|
|
|
// we don't close f here, see CatchUp()!
|
2000-04-15 17:38:11 +02:00
|
|
|
}
|
2000-05-27 14:07:17 +02:00
|
|
|
else
|
|
|
|
LOG_ERROR_STR(fileName);
|
2000-04-15 17:38:11 +02:00
|
|
|
}
|
|
|
|
else
|
2000-05-27 14:07:17 +02:00
|
|
|
esyslog(LOG_ERR, "ERROR: can't allocate %d bytes for index '%s'", size * sizeof(tIndex), fileName);
|
2000-04-15 17:38:11 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
else
|
|
|
|
LOG_ERROR;
|
|
|
|
}
|
|
|
|
if (Record) {
|
2000-09-15 13:27:56 +02:00
|
|
|
if ((f = open(fileName, O_WRONLY | O_CREAT | O_APPEND, S_IRUSR | S_IWUSR | S_IRGRP)) >= 0) {
|
2000-04-15 17:38:11 +02:00
|
|
|
if (delta) {
|
|
|
|
esyslog(LOG_ERR, "ERROR: padding index file with %d '0' bytes", delta);
|
|
|
|
while (delta--)
|
|
|
|
writechar(f, 0);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
else
|
|
|
|
LOG_ERROR_STR(fileName);
|
|
|
|
delete fileName;
|
|
|
|
fileName = pFileExt = NULL;
|
|
|
|
}
|
|
|
|
}
|
2000-02-19 13:36:48 +01:00
|
|
|
else
|
2000-04-15 17:38:11 +02:00
|
|
|
esyslog(LOG_ERR, "ERROR: can't copy file name '%s'", FileName);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
cIndexFile::~cIndexFile()
|
|
|
|
{
|
|
|
|
if (f >= 0)
|
|
|
|
close(f);
|
|
|
|
delete fileName;
|
|
|
|
}
|
|
|
|
|
2000-05-27 14:07:17 +02:00
|
|
|
bool cIndexFile::CatchUp(void)
|
|
|
|
{
|
|
|
|
if (index && f >= 0) {
|
|
|
|
struct stat buf;
|
|
|
|
if (fstat(f, &buf) == 0) {
|
|
|
|
int newLast = buf.st_size / sizeof(tIndex) - 1;
|
|
|
|
if (newLast > last) {
|
|
|
|
if (size <= newLast) {
|
|
|
|
size *= 2;
|
|
|
|
if (size <= newLast)
|
|
|
|
size = newLast + 1;
|
|
|
|
}
|
|
|
|
index = (tIndex *)realloc(index, size * sizeof(tIndex));
|
|
|
|
if (index) {
|
|
|
|
int offset = (last + 1) * sizeof(tIndex);
|
|
|
|
int delta = (newLast - last) * sizeof(tIndex);
|
|
|
|
if (lseek(f, offset, SEEK_SET) == offset) {
|
|
|
|
if (read(f, &index[last + 1], delta) != delta) {
|
|
|
|
esyslog(LOG_ERR, "ERROR: can't read from index");
|
|
|
|
delete index;
|
|
|
|
index = NULL;
|
|
|
|
close(f);
|
|
|
|
f = -1;
|
|
|
|
}
|
|
|
|
last = newLast;
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
else
|
|
|
|
LOG_ERROR;
|
|
|
|
}
|
|
|
|
else
|
|
|
|
esyslog(LOG_ERR, "ERROR: can't realloc() index");
|
|
|
|
}
|
|
|
|
}
|
|
|
|
else
|
|
|
|
LOG_ERROR;
|
|
|
|
}
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
2000-04-15 17:38:11 +02:00
|
|
|
void cIndexFile::Write(uchar PictureType, uchar FileNumber, int FileOffset)
|
|
|
|
{
|
|
|
|
if (f >= 0) {
|
|
|
|
tIndex i = { FileOffset, PictureType, FileNumber, 0 };
|
|
|
|
if (write(f, &i, sizeof(i)) != sizeof(i)) {
|
|
|
|
esyslog(LOG_ERR, "ERROR: can't write to index file");
|
|
|
|
close(f);
|
|
|
|
f = -1;
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
last++;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2000-12-28 12:57:16 +01:00
|
|
|
bool cIndexFile::Get(int Index, uchar *FileNumber, int *FileOffset, uchar *PictureType, int *Length)
|
2000-04-15 17:38:11 +02:00
|
|
|
{
|
|
|
|
if (index) {
|
2000-05-27 14:07:17 +02:00
|
|
|
CatchUp();
|
2000-04-15 17:38:11 +02:00
|
|
|
if (Index >= 0 && Index <= last) {
|
|
|
|
*FileNumber = index[Index].number;
|
|
|
|
*FileOffset = index[Index].offset;
|
|
|
|
if (PictureType)
|
|
|
|
*PictureType = index[Index].type;
|
2000-12-28 12:57:16 +01:00
|
|
|
if (Length) {
|
|
|
|
int fn = index[Index + 1].number;
|
|
|
|
int fo = index[Index + 1].offset;
|
|
|
|
if (fn == *FileNumber)
|
|
|
|
*Length = fo - *FileOffset;
|
|
|
|
else
|
|
|
|
*Length = -1; // this means "everything up to EOF" (the buffer's Read function will act accordingly)
|
|
|
|
}
|
2000-02-19 13:36:48 +01:00
|
|
|
return true;
|
2000-04-15 17:38:11 +02:00
|
|
|
}
|
2000-02-19 13:36:48 +01:00
|
|
|
}
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
2000-04-15 17:38:11 +02:00
|
|
|
int cIndexFile::GetNextIFrame(int Index, bool Forward, uchar *FileNumber, int *FileOffset, int *Length)
|
|
|
|
{
|
|
|
|
if (index) {
|
2000-05-27 14:07:17 +02:00
|
|
|
if (Forward)
|
|
|
|
CatchUp();
|
2000-04-15 17:38:11 +02:00
|
|
|
int d = Forward ? 1 : -1;
|
|
|
|
for (;;) {
|
|
|
|
Index += d;
|
2000-05-27 14:07:17 +02:00
|
|
|
if (Index >= 0 && Index <= last - 100) { // '- 100': need to stay off the end!
|
2000-04-15 17:38:11 +02:00
|
|
|
if (index[Index].type == I_FRAME) {
|
2000-12-28 12:57:16 +01:00
|
|
|
if (FileNumber)
|
|
|
|
*FileNumber = index[Index].number;
|
|
|
|
else
|
|
|
|
FileNumber = &index[Index].number;
|
|
|
|
if (FileOffset)
|
|
|
|
*FileOffset = index[Index].offset;
|
|
|
|
else
|
|
|
|
FileOffset = &index[Index].offset;
|
2000-04-15 17:38:11 +02:00
|
|
|
if (Length) {
|
|
|
|
// all recordings end with a non-I_FRAME, so the following should be safe:
|
|
|
|
int fn = index[Index + 1].number;
|
|
|
|
int fo = index[Index + 1].offset;
|
|
|
|
if (fn == *FileNumber)
|
|
|
|
*Length = fo - *FileOffset;
|
|
|
|
else {
|
|
|
|
esyslog(LOG_ERR, "ERROR: 'I' frame at end of file #%d", *FileNumber);
|
|
|
|
*Length = -1;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return Index;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
else
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return -1;
|
|
|
|
}
|
|
|
|
|
|
|
|
int cIndexFile::Get(uchar FileNumber, int FileOffset)
|
|
|
|
{
|
|
|
|
if (index) {
|
2000-05-27 14:07:17 +02:00
|
|
|
CatchUp();
|
2000-04-15 17:38:11 +02:00
|
|
|
//TODO implement binary search!
|
|
|
|
int i;
|
|
|
|
for (i = 0; i < last; i++) {
|
|
|
|
if (index[i].number > FileNumber || (index[i].number == FileNumber) && index[i].offset >= FileOffset)
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
return i;
|
|
|
|
}
|
|
|
|
return -1;
|
|
|
|
}
|
2000-02-19 13:36:48 +01:00
|
|
|
|
2001-03-31 08:42:27 +02:00
|
|
|
// --- cRingBuffer_ -----------------------------------------------------------
|
2000-04-15 17:38:11 +02:00
|
|
|
|
|
|
|
/* cRingBuffer reads data from an input file, stores it in a buffer and writes
|
|
|
|
it to an output file upon request. The Read() and Write() functions should
|
|
|
|
be called only when the associated file is ready to provide or receive data
|
|
|
|
(use the 'select()' function to determine that), and the files should be
|
|
|
|
opened in non-blocking mode.
|
|
|
|
The '...Limit' parameters define safety limits. If they are exceeded a log entry
|
|
|
|
will be made.
|
|
|
|
*/
|
|
|
|
|
2001-03-31 08:42:27 +02:00
|
|
|
class cRingBuffer_ {
|
2000-04-15 17:38:11 +02:00
|
|
|
private:
|
|
|
|
uchar *buffer;
|
|
|
|
int size, head, tail, freeLimit, availLimit;
|
|
|
|
int countLimit, countOverflow;
|
|
|
|
int minFree;
|
|
|
|
bool eof;
|
|
|
|
int *inFile, *outFile;
|
|
|
|
protected:
|
|
|
|
int Free(void) { return ((tail >= head) ? size + head - tail : head - tail) - 1; }
|
2000-11-19 16:49:14 +01:00
|
|
|
public:
|
2000-04-15 17:38:11 +02:00
|
|
|
int Available(void) { return (tail >= head) ? tail - head : size - head + tail; }
|
2000-11-19 16:49:14 +01:00
|
|
|
protected:
|
2000-04-15 17:38:11 +02:00
|
|
|
int Readable(void) { return (tail >= head) ? size - tail - (head ? 0 : 1) : head - tail - 1; } // keep a 1 byte gap!
|
2000-07-30 14:34:07 +02:00
|
|
|
int Writeable(void) { return (tail >= head) ? tail - head : size - head; }
|
2000-04-15 17:38:11 +02:00
|
|
|
int Byte(int Offset);
|
2001-01-07 17:00:50 +01:00
|
|
|
bool Set(int Offset, int Length, int Value);
|
2000-12-28 12:57:16 +01:00
|
|
|
protected:
|
|
|
|
int GetStartCode(int Offset) { return (Byte(Offset) == 0x00 && Byte(Offset + 1) == 0x00 && Byte(Offset + 2) == 0x01) ? Byte(Offset + 3) : -1; }
|
|
|
|
int GetPictureType(int Offset) { return (Byte(Offset + 5) >> 3) & 0x07; }
|
|
|
|
int FindStartCode(uchar Code, int Offset = 0);
|
2001-01-07 17:00:50 +01:00
|
|
|
int GetPacketLength(int Offset = 0);
|
2000-04-15 17:38:11 +02:00
|
|
|
public:
|
2001-03-31 08:42:27 +02:00
|
|
|
cRingBuffer_(int *InFile, int *OutFile, int Size, int FreeLimit = 0, int AvailLimit = 0);
|
|
|
|
virtual ~cRingBuffer_();
|
2000-04-15 17:38:11 +02:00
|
|
|
virtual int Read(int Max = -1);
|
|
|
|
virtual int Write(int Max = -1);
|
|
|
|
bool EndOfFile(void) { return eof; }
|
|
|
|
bool Empty(void) { return Available() == 0; }
|
|
|
|
void Clear(void) { head = tail = 0; }
|
|
|
|
void Skip(int n);
|
|
|
|
};
|
|
|
|
|
2001-03-31 08:42:27 +02:00
|
|
|
cRingBuffer_::cRingBuffer_(int *InFile, int *OutFile, int Size, int FreeLimit, int AvailLimit)
|
2000-03-11 11:22:37 +01:00
|
|
|
{
|
2000-04-15 17:38:11 +02:00
|
|
|
inFile = InFile;
|
|
|
|
outFile = OutFile;
|
|
|
|
size = Size;
|
|
|
|
Clear();
|
|
|
|
freeLimit = FreeLimit;
|
|
|
|
availLimit = AvailLimit;
|
|
|
|
eof = false;
|
|
|
|
countLimit = countOverflow = 0;
|
|
|
|
minFree = size - 1;
|
|
|
|
buffer = new uchar[size];
|
|
|
|
if (!buffer)
|
|
|
|
esyslog(LOG_ERR, "ERROR: can't allocate ring buffer (size=%d)", size);
|
2000-03-11 11:22:37 +01:00
|
|
|
}
|
|
|
|
|
2001-03-31 08:42:27 +02:00
|
|
|
cRingBuffer_::~cRingBuffer_()
|
2000-02-19 13:36:48 +01:00
|
|
|
{
|
2000-04-15 17:38:11 +02:00
|
|
|
dsyslog(LOG_INFO, "buffer stats: %d free, %d overflows, limit exceeded %d times", minFree, countOverflow, countLimit);
|
|
|
|
delete buffer;
|
|
|
|
}
|
|
|
|
|
2001-03-31 08:42:27 +02:00
|
|
|
int cRingBuffer_::Byte(int Offset)
|
2000-04-15 17:38:11 +02:00
|
|
|
{
|
|
|
|
if (buffer && Offset < Available()) {
|
|
|
|
Offset += head;
|
|
|
|
if (Offset >= size)
|
|
|
|
Offset -= size;
|
|
|
|
return buffer[Offset];
|
|
|
|
}
|
|
|
|
return -1;
|
|
|
|
}
|
|
|
|
|
2001-03-31 08:42:27 +02:00
|
|
|
bool cRingBuffer_::Set(int Offset, int Length, int Value)
|
2000-04-15 17:38:11 +02:00
|
|
|
{
|
2000-12-08 16:23:32 +01:00
|
|
|
if (buffer && Offset + Length <= Available() ) {
|
|
|
|
Offset += head;
|
|
|
|
while (Length--) {
|
|
|
|
if (Offset >= size)
|
|
|
|
Offset -= size;
|
|
|
|
buffer[Offset] = Value;
|
|
|
|
Offset++;
|
|
|
|
}
|
2001-01-07 17:00:50 +01:00
|
|
|
return true;
|
2000-04-15 17:38:11 +02:00
|
|
|
}
|
2001-01-07 17:00:50 +01:00
|
|
|
return false;
|
2000-12-08 16:23:32 +01:00
|
|
|
}
|
|
|
|
|
2001-03-31 08:42:27 +02:00
|
|
|
void cRingBuffer_::Skip(int n)
|
2000-12-08 16:23:32 +01:00
|
|
|
{
|
|
|
|
if (n > 0) {
|
|
|
|
if (head < tail) {
|
|
|
|
head += n;
|
|
|
|
if (head > tail)
|
|
|
|
head = tail;
|
|
|
|
}
|
|
|
|
else if (head > tail) {
|
|
|
|
head += n;
|
|
|
|
if (head >= size)
|
|
|
|
head -= size;
|
|
|
|
if (head > tail)
|
|
|
|
head = tail;
|
|
|
|
}
|
2000-04-15 17:38:11 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2001-03-31 08:42:27 +02:00
|
|
|
int cRingBuffer_::Read(int Max)
|
2000-04-15 17:38:11 +02:00
|
|
|
{
|
|
|
|
if (buffer) {
|
|
|
|
eof = false;
|
|
|
|
int free = Free();
|
|
|
|
if (free < minFree)
|
|
|
|
minFree = free;
|
|
|
|
if (freeLimit) {
|
|
|
|
if (free == 0) {
|
|
|
|
esyslog(LOG_ERR, "ERROR: buffer overflow (size=%d)", size);
|
|
|
|
countOverflow++;
|
|
|
|
}
|
|
|
|
else if (free < freeLimit) {
|
|
|
|
dsyslog(LOG_INFO, "free buffer space dipped into limit (%d < %d)", free, freeLimit);
|
|
|
|
countLimit++;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
if (free == 0)
|
|
|
|
return 0; // the buffer is full
|
|
|
|
int readin = 0;
|
|
|
|
for (int i = 0; i < 2; i++) {
|
|
|
|
// If we read in exactly as many bytes as are immediately
|
|
|
|
// "readable" we have to do it again, because that means we
|
|
|
|
// were at the very end of the physical buffer and possibly only
|
|
|
|
// read in very few bytes.
|
|
|
|
int immediate = Readable();
|
|
|
|
int n = immediate;
|
|
|
|
if (Max > 0 && n > Max)
|
|
|
|
n = Max;
|
|
|
|
if (n > 0) {
|
|
|
|
int r = read(*inFile, buffer + tail, n);
|
|
|
|
if (r > 0) {
|
|
|
|
readin += r;
|
|
|
|
tail += r;
|
|
|
|
if (tail > size)
|
|
|
|
esyslog(LOG_ERR, "ERROR: ooops: buffer tail (%d) exceeds size (%d)", tail, size);
|
|
|
|
if (tail >= size)
|
|
|
|
tail = 0;
|
|
|
|
}
|
2000-12-08 16:23:32 +01:00
|
|
|
else if (r < 0) {
|
|
|
|
if (errno != EAGAIN) {
|
|
|
|
LOG_ERROR;
|
|
|
|
return -1;
|
|
|
|
}
|
2000-04-15 17:38:11 +02:00
|
|
|
}
|
|
|
|
else
|
|
|
|
eof = true;
|
|
|
|
if (r == immediate && Max != immediate && tail == 0)
|
|
|
|
Max -= immediate;
|
|
|
|
else
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return readin;
|
|
|
|
}
|
|
|
|
return -1;
|
|
|
|
}
|
|
|
|
|
2001-03-31 08:42:27 +02:00
|
|
|
int cRingBuffer_::Write(int Max)
|
2000-04-15 17:38:11 +02:00
|
|
|
{
|
|
|
|
if (buffer) {
|
|
|
|
int avail = Available();
|
|
|
|
if (availLimit) {
|
|
|
|
//XXX stats???
|
|
|
|
if (avail == 0)
|
|
|
|
//XXX esyslog(LOG_ERR, "ERROR: buffer empty!");
|
|
|
|
{//XXX
|
|
|
|
esyslog(LOG_ERR, "ERROR: buffer empty! %d", Max);
|
|
|
|
return Max > 0 ? Max : 0;
|
|
|
|
}//XXX
|
|
|
|
else if (avail < availLimit)
|
|
|
|
;//XXX dsyslog(LOG_INFO, "available buffer data dipped into limit (%d < %d)", avail, availLimit);
|
|
|
|
}
|
|
|
|
if (avail == 0)
|
|
|
|
return 0; // the buffer is empty
|
|
|
|
int n = Writeable();
|
|
|
|
if (Max > 0 && n > Max)
|
|
|
|
n = Max;
|
|
|
|
int w = write(*outFile, buffer + head, n);
|
|
|
|
if (w > 0) {
|
|
|
|
head += w;
|
|
|
|
if (head > size)
|
|
|
|
esyslog(LOG_ERR, "ERROR: ooops: buffer head (%d) exceeds size (%d)", head, size);
|
|
|
|
if (head >= size)
|
|
|
|
head = 0;
|
|
|
|
}
|
|
|
|
else if (w < 0) {
|
|
|
|
if (errno != EAGAIN)
|
|
|
|
LOG_ERROR;
|
|
|
|
else
|
|
|
|
w = 0;
|
|
|
|
}
|
|
|
|
return w;
|
|
|
|
}
|
|
|
|
return -1;
|
|
|
|
}
|
|
|
|
|
2001-03-31 08:42:27 +02:00
|
|
|
int cRingBuffer_::FindStartCode(uchar Code, int Offset)
|
2000-12-28 12:57:16 +01:00
|
|
|
{
|
|
|
|
// Searches for a start code (beginning at Offset) and returns the number
|
|
|
|
// of bytes from Offset to the start code.
|
2000-04-15 17:38:11 +02:00
|
|
|
|
2000-12-28 12:57:16 +01:00
|
|
|
int n = Available() - Offset;
|
|
|
|
|
|
|
|
for (int i = 0; i < n; i++) {
|
|
|
|
int c = GetStartCode(Offset + i);
|
|
|
|
if (c == Code)
|
|
|
|
return i;
|
2001-01-07 17:00:50 +01:00
|
|
|
if (i > 0 && c == SC_PHEAD)
|
2000-12-28 12:57:16 +01:00
|
|
|
break; // found another block start while looking for a different code
|
|
|
|
}
|
|
|
|
return -1;
|
|
|
|
}
|
|
|
|
|
2001-03-31 08:42:27 +02:00
|
|
|
int cRingBuffer_::GetPacketLength(int Offset)
|
2000-12-28 12:57:16 +01:00
|
|
|
{
|
2001-01-07 17:00:50 +01:00
|
|
|
// Returns the entire length of the packet starting at offset.
|
2000-12-28 12:57:16 +01:00
|
|
|
return (Byte(Offset + 4) << 8) + Byte(Offset + 5) + 6;
|
|
|
|
}
|
|
|
|
|
|
|
|
// --- cFileName -------------------------------------------------------------
|
|
|
|
|
|
|
|
class cFileName {
|
|
|
|
private:
|
|
|
|
int file;
|
|
|
|
int fileNumber;
|
2000-04-15 17:38:11 +02:00
|
|
|
char *fileName, *pFileNumber;
|
2000-12-28 12:57:16 +01:00
|
|
|
bool record;
|
2000-04-15 17:38:11 +02:00
|
|
|
public:
|
2000-12-28 12:57:16 +01:00
|
|
|
cFileName(const char *FileName, bool Record);
|
|
|
|
~cFileName();
|
|
|
|
const char *Name(void) { return fileName; }
|
|
|
|
int Number(void) { return fileNumber; }
|
|
|
|
int Open(void);
|
|
|
|
void Close(void);
|
|
|
|
int SetOffset(int Number, int Offset = 0);
|
|
|
|
int NextFile(void);
|
2000-04-15 17:38:11 +02:00
|
|
|
};
|
|
|
|
|
2000-12-28 12:57:16 +01:00
|
|
|
cFileName::cFileName(const char *FileName, bool Record)
|
2000-04-15 17:38:11 +02:00
|
|
|
{
|
2000-12-28 12:57:16 +01:00
|
|
|
file = -1;
|
2000-04-15 17:38:11 +02:00
|
|
|
fileNumber = 0;
|
2000-12-28 12:57:16 +01:00
|
|
|
record = Record;
|
2000-04-15 17:38:11 +02:00
|
|
|
// Prepare the file name:
|
|
|
|
fileName = new char[strlen(FileName) + RECORDFILESUFFIXLEN];
|
|
|
|
if (!fileName) {
|
|
|
|
esyslog(LOG_ERR, "ERROR: can't copy file name '%s'", fileName);
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
strcpy(fileName, FileName);
|
|
|
|
pFileNumber = fileName + strlen(fileName);
|
2000-12-28 12:57:16 +01:00
|
|
|
SetOffset(1);
|
2000-04-15 17:38:11 +02:00
|
|
|
}
|
|
|
|
|
2000-12-28 12:57:16 +01:00
|
|
|
cFileName::~cFileName()
|
2000-04-15 17:38:11 +02:00
|
|
|
{
|
2000-12-28 12:57:16 +01:00
|
|
|
Close();
|
2000-04-15 17:38:11 +02:00
|
|
|
delete fileName;
|
|
|
|
}
|
|
|
|
|
2000-12-28 12:57:16 +01:00
|
|
|
int cFileName::Open(void)
|
2000-04-15 17:38:11 +02:00
|
|
|
{
|
2000-12-28 12:57:16 +01:00
|
|
|
if (file < 0) {
|
|
|
|
if (record) {
|
|
|
|
dsyslog(LOG_INFO, "recording to '%s'", fileName);
|
|
|
|
file = OpenVideoFile(fileName, O_RDWR | O_CREAT | O_NONBLOCK);
|
|
|
|
if (file < 0)
|
|
|
|
LOG_ERROR_STR(fileName);
|
|
|
|
}
|
|
|
|
else {
|
|
|
|
if (access(fileName, R_OK) == 0) {
|
|
|
|
dsyslog(LOG_INFO, "playing '%s'", fileName);
|
|
|
|
file = open(fileName, O_RDONLY | O_NONBLOCK);
|
|
|
|
if (file < 0)
|
|
|
|
LOG_ERROR_STR(fileName);
|
|
|
|
}
|
|
|
|
else if (errno != ENOENT)
|
|
|
|
LOG_ERROR_STR(fileName);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return file;
|
|
|
|
}
|
2000-04-15 17:38:11 +02:00
|
|
|
|
2000-12-28 12:57:16 +01:00
|
|
|
void cFileName::Close(void)
|
|
|
|
{
|
|
|
|
if (file >= 0) {
|
|
|
|
if ((record && CloseVideoFile(file) < 0) || (!record && close(file) < 0))
|
|
|
|
LOG_ERROR_STR(fileName);
|
|
|
|
file = -1;
|
|
|
|
}
|
|
|
|
}
|
2000-12-08 16:23:32 +01:00
|
|
|
|
2000-12-28 12:57:16 +01:00
|
|
|
int cFileName::SetOffset(int Number, int Offset)
|
|
|
|
{
|
|
|
|
if (fileNumber != Number)
|
|
|
|
Close();
|
|
|
|
if (0 < Number && Number <= MAXFILESPERRECORDING) {
|
|
|
|
fileNumber = Number;
|
|
|
|
sprintf(pFileNumber, RECORDFILESUFFIX, fileNumber);
|
|
|
|
if (record) {
|
|
|
|
if (access(fileName, F_OK) == 0) // file exists, let's try next suffix
|
|
|
|
return SetOffset(Number + 1);
|
|
|
|
else if (errno != ENOENT) { // something serious has happened
|
|
|
|
LOG_ERROR_STR(fileName);
|
|
|
|
return -1;
|
|
|
|
}
|
|
|
|
// found a non existing file suffix
|
|
|
|
}
|
|
|
|
if (Open() >= 0) {
|
|
|
|
if (!record && Offset >= 0 && lseek(file, Offset, SEEK_SET) != Offset) {
|
|
|
|
LOG_ERROR_STR(fileName);
|
|
|
|
return -1;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return file;
|
|
|
|
}
|
|
|
|
esyslog(LOG_ERR, "ERROR: max number of files (%d) exceeded", MAXFILESPERRECORDING);
|
2000-04-15 17:38:11 +02:00
|
|
|
return -1;
|
|
|
|
}
|
|
|
|
|
2000-12-28 12:57:16 +01:00
|
|
|
int cFileName::NextFile(void)
|
2000-04-15 17:38:11 +02:00
|
|
|
{
|
2000-12-28 12:57:16 +01:00
|
|
|
return SetOffset(fileNumber + 1);
|
2000-04-15 17:38:11 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
// --- cRecordBuffer ---------------------------------------------------------
|
|
|
|
|
2001-03-31 08:42:27 +02:00
|
|
|
class cRecordBuffer : public cRingBuffer {
|
2000-04-15 17:38:11 +02:00
|
|
|
private:
|
2000-12-28 12:57:16 +01:00
|
|
|
cFileName fileName;
|
|
|
|
cIndexFile *index;
|
2001-03-31 08:42:27 +02:00
|
|
|
cRemux remux;
|
2000-04-15 17:38:11 +02:00
|
|
|
uchar pictureType;
|
|
|
|
int fileSize;
|
2000-12-08 16:23:32 +01:00
|
|
|
int videoDev;
|
2000-04-15 17:38:11 +02:00
|
|
|
int recordFile;
|
2001-03-31 08:42:27 +02:00
|
|
|
bool recording;
|
2000-07-29 15:21:42 +02:00
|
|
|
time_t lastDiskSpaceCheck;
|
|
|
|
bool RunningLowOnDiskSpace(void);
|
2000-04-15 17:38:11 +02:00
|
|
|
bool NextFile(void);
|
2000-12-08 16:23:32 +01:00
|
|
|
protected:
|
2001-03-31 08:42:27 +02:00
|
|
|
virtual void Input(void);
|
|
|
|
virtual void Output(void);
|
2000-04-15 17:38:11 +02:00
|
|
|
public:
|
|
|
|
cRecordBuffer(int *InFile, const char *FileName);
|
|
|
|
virtual ~cRecordBuffer();
|
|
|
|
};
|
|
|
|
|
|
|
|
cRecordBuffer::cRecordBuffer(int *InFile, const char *FileName)
|
2001-03-31 08:42:27 +02:00
|
|
|
:cRingBuffer(VIDEOBUFSIZE)
|
2000-12-28 12:57:16 +01:00
|
|
|
,fileName(FileName, true)
|
2000-04-15 17:38:11 +02:00
|
|
|
{
|
2000-12-28 12:57:16 +01:00
|
|
|
index = NULL;
|
2000-04-15 17:38:11 +02:00
|
|
|
pictureType = NO_PICTURE;
|
|
|
|
fileSize = 0;
|
2000-12-08 16:23:32 +01:00
|
|
|
videoDev = *InFile;
|
2000-12-28 12:57:16 +01:00
|
|
|
recordFile = fileName.Open();
|
2001-03-31 08:42:27 +02:00
|
|
|
recording = false;
|
2000-07-29 15:21:42 +02:00
|
|
|
lastDiskSpaceCheck = time(NULL);
|
2000-12-28 12:57:16 +01:00
|
|
|
if (!fileName.Name())
|
|
|
|
return;
|
|
|
|
// Create the index file:
|
|
|
|
index = new cIndexFile(FileName, true);
|
|
|
|
if (!index)
|
|
|
|
esyslog(LOG_ERR, "ERROR: can't allocate index");
|
|
|
|
// let's continue without index, so we'll at least have the recording
|
2000-12-08 16:23:32 +01:00
|
|
|
Start();
|
2000-04-15 17:38:11 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
cRecordBuffer::~cRecordBuffer()
|
|
|
|
{
|
2001-03-31 08:42:27 +02:00
|
|
|
Stop();
|
2000-12-28 12:57:16 +01:00
|
|
|
delete index;
|
2000-07-29 15:21:42 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
bool cRecordBuffer::RunningLowOnDiskSpace(void)
|
|
|
|
{
|
|
|
|
if (time(NULL) > lastDiskSpaceCheck + DISKCHECKINTERVAL) {
|
2000-12-28 12:57:16 +01:00
|
|
|
uint Free = FreeDiskSpaceMB(fileName.Name());
|
2000-07-29 15:21:42 +02:00
|
|
|
lastDiskSpaceCheck = time(NULL);
|
|
|
|
if (Free < MINFREEDISKSPACE) {
|
|
|
|
dsyslog(LOG_INFO, "low disk space (%d MB, limit is %d MB)", Free, MINFREEDISKSPACE);
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return false;
|
2000-04-15 17:38:11 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
bool cRecordBuffer::NextFile(void)
|
|
|
|
{
|
2000-07-29 15:21:42 +02:00
|
|
|
if (recordFile >= 0 && pictureType == I_FRAME) { // every file shall start with an I_FRAME
|
|
|
|
if (fileSize > MAXVIDEOFILESIZE || RunningLowOnDiskSpace()) {
|
2000-12-28 12:57:16 +01:00
|
|
|
recordFile = fileName.NextFile();
|
2000-07-29 15:21:42 +02:00
|
|
|
fileSize = 0;
|
|
|
|
}
|
2000-04-15 17:38:11 +02:00
|
|
|
}
|
2000-12-28 12:57:16 +01:00
|
|
|
return recordFile >= 0;
|
2000-02-19 13:36:48 +01:00
|
|
|
}
|
|
|
|
|
2001-03-31 08:42:27 +02:00
|
|
|
void cRecordBuffer::Input(void)
|
2000-02-19 13:36:48 +01:00
|
|
|
{
|
2001-03-31 08:42:27 +02:00
|
|
|
dsyslog(LOG_INFO, "input thread started (pid=%d)", getpid());
|
|
|
|
|
|
|
|
uchar b[MINVIDEODATA];
|
|
|
|
time_t t = time(NULL);
|
|
|
|
recording = true;
|
|
|
|
for (;;) {
|
|
|
|
int r = read(videoDev, b, sizeof(b));
|
|
|
|
if (r > 0) {
|
|
|
|
uchar *p = b;
|
|
|
|
while (r > 0) {
|
|
|
|
int w = Put(p, r);
|
|
|
|
p += w;
|
|
|
|
r -= w;
|
2000-04-15 17:38:11 +02:00
|
|
|
}
|
2001-03-31 08:42:27 +02:00
|
|
|
t = time(NULL);
|
|
|
|
}
|
|
|
|
else if (r < 0) {
|
|
|
|
if (errno != EAGAIN) {
|
|
|
|
LOG_ERROR;
|
|
|
|
break;
|
2000-04-15 17:38:11 +02:00
|
|
|
}
|
2001-03-31 08:42:27 +02:00
|
|
|
}
|
|
|
|
else if (time(NULL) - t > 5) {
|
|
|
|
esyslog(LOG_ERR, "ERROR: video data stream broken");
|
|
|
|
t = time(NULL);
|
|
|
|
}
|
|
|
|
cFile::FileReady(videoDev, 100);
|
|
|
|
if (!recording)
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
SetPlayMode(videoDev, VID_PLAY_RESET);
|
|
|
|
|
|
|
|
dsyslog(LOG_INFO, "input thread ended (pid=%d)", getpid());
|
2000-02-19 13:36:48 +01:00
|
|
|
}
|
|
|
|
|
2001-03-31 08:42:27 +02:00
|
|
|
void cRecordBuffer::Output(void)
|
2000-02-19 13:36:48 +01:00
|
|
|
{
|
2001-03-31 08:42:27 +02:00
|
|
|
dsyslog(LOG_INFO, "output thread started (pid=%d)", getpid());
|
|
|
|
|
|
|
|
uchar b[MINVIDEODATA * 2];
|
|
|
|
int r = 0;
|
|
|
|
for (;;) {
|
|
|
|
usleep(1); // this keeps the CPU load low
|
|
|
|
r += Get(b + r, sizeof(b) - r);
|
|
|
|
if (r > 0) {
|
|
|
|
//XXX buffer full???
|
|
|
|
int Count = r, Result;
|
|
|
|
const uchar *p = remux.Process(b, Count, Result, pictureType);
|
|
|
|
if (p) {
|
|
|
|
if (!Busy() && pictureType == I_FRAME) // finish the recording before the next 'I' frame
|
|
|
|
break;
|
|
|
|
if (NextFile()) {
|
|
|
|
if (index && pictureType != NO_PICTURE)
|
|
|
|
index->Write(pictureType, fileName.Number(), fileSize);
|
|
|
|
while (Result > 0) {
|
|
|
|
int w = write(recordFile, p, Result);
|
|
|
|
if (w < 0) {
|
|
|
|
LOG_ERROR_STR(fileName.Name());
|
|
|
|
recording = false;
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
p += w;
|
|
|
|
Result -= w;
|
|
|
|
fileSize += w;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
else
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
if (Count > 0) {
|
|
|
|
r -= Count;
|
|
|
|
memmove(b, b + Count, r);
|
|
|
|
}
|
|
|
|
if (!recording)
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
recording = false;
|
|
|
|
|
|
|
|
dsyslog(LOG_INFO, "output thread ended (pid=%d)", getpid());
|
2000-04-15 17:38:11 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
// --- cReplayBuffer ---------------------------------------------------------
|
|
|
|
|
2001-03-31 08:42:27 +02:00
|
|
|
class cReplayBuffer : public cRingBuffer_, public cThread {
|
2000-04-15 17:38:11 +02:00
|
|
|
private:
|
2000-12-28 12:57:16 +01:00
|
|
|
enum eReplayCmd { rcNone, rcStill, rcPause, rcPlay, rcForward, rcBackward };
|
|
|
|
enum eReplayMode { rmStill, rmPlay, rmFastForward, rmFastRewind, rmSlowRewind };
|
|
|
|
cIndexFile *index;
|
|
|
|
cFileName fileName;
|
2000-04-15 17:38:11 +02:00
|
|
|
int fileOffset;
|
2000-12-08 16:23:32 +01:00
|
|
|
int videoDev;
|
2000-04-15 17:38:11 +02:00
|
|
|
int replayFile;
|
|
|
|
eReplayMode mode;
|
2000-12-28 12:57:16 +01:00
|
|
|
int lastIndex, stillIndex;
|
2001-01-07 17:00:50 +01:00
|
|
|
int brakeCounter;
|
2000-12-08 16:23:32 +01:00
|
|
|
eReplayCmd command;
|
|
|
|
bool active;
|
2000-04-15 17:38:11 +02:00
|
|
|
bool NextFile(uchar FileNumber = 0, int FileOffset = -1);
|
|
|
|
void Close(void);
|
2000-12-08 16:23:32 +01:00
|
|
|
void SetCmd(eReplayCmd Cmd) { LOCK_THREAD; command = Cmd; }
|
2001-01-07 17:00:50 +01:00
|
|
|
void SetTemporalReference(void);
|
2000-12-08 16:23:32 +01:00
|
|
|
protected:
|
|
|
|
virtual void Action(void);
|
2000-04-15 17:38:11 +02:00
|
|
|
public:
|
|
|
|
cReplayBuffer(int *OutFile, const char *FileName);
|
2000-09-17 11:53:35 +02:00
|
|
|
virtual ~cReplayBuffer();
|
2000-04-15 17:38:11 +02:00
|
|
|
virtual int Read(int Max = -1);
|
|
|
|
virtual int Write(int Max = -1);
|
|
|
|
void SetMode(eReplayMode Mode);
|
|
|
|
int Resume(void);
|
|
|
|
bool Save(void);
|
2000-12-08 16:23:32 +01:00
|
|
|
void Pause(void) { SetCmd(rcPause); }
|
|
|
|
void Play(void) { SetCmd(rcPlay); }
|
|
|
|
void Forward(void) { SetCmd(rcForward); }
|
|
|
|
void Backward(void) { SetCmd(rcBackward); }
|
2000-12-28 12:57:16 +01:00
|
|
|
int SkipFrames(int Frames);
|
2000-04-15 17:38:11 +02:00
|
|
|
void SkipSeconds(int Seconds);
|
2001-01-07 17:00:50 +01:00
|
|
|
void Goto(int Position, bool Still = false);
|
2000-12-28 12:57:16 +01:00
|
|
|
void GetIndex(int &Current, int &Total, bool SnapToIFrame = false);
|
2000-04-15 17:38:11 +02:00
|
|
|
};
|
|
|
|
|
|
|
|
cReplayBuffer::cReplayBuffer(int *OutFile, const char *FileName)
|
2001-03-31 08:42:27 +02:00
|
|
|
:cRingBuffer_(&replayFile, OutFile, VIDEOBUFSIZE, 0, VIDEOBUFSIZE / 10)
|
2000-12-28 12:57:16 +01:00
|
|
|
,fileName(FileName, false)
|
2000-04-15 17:38:11 +02:00
|
|
|
{
|
2000-12-28 12:57:16 +01:00
|
|
|
index = NULL;
|
2000-04-15 17:38:11 +02:00
|
|
|
fileOffset = 0;
|
2000-12-08 16:23:32 +01:00
|
|
|
videoDev = *OutFile;
|
2000-12-28 12:57:16 +01:00
|
|
|
replayFile = fileName.Open();
|
2000-04-15 17:38:11 +02:00
|
|
|
mode = rmPlay;
|
2001-01-07 17:00:50 +01:00
|
|
|
brakeCounter = 0;
|
2000-12-08 16:23:32 +01:00
|
|
|
command = rcNone;
|
2000-12-28 12:57:16 +01:00
|
|
|
lastIndex = stillIndex = -1;
|
2000-12-08 16:23:32 +01:00
|
|
|
active = false;
|
2000-12-28 12:57:16 +01:00
|
|
|
if (!fileName.Name())
|
|
|
|
return;
|
|
|
|
// Create the index file:
|
|
|
|
index = new cIndexFile(FileName, false);
|
|
|
|
if (!index)
|
|
|
|
esyslog(LOG_ERR, "ERROR: can't allocate index");
|
|
|
|
// let's continue without index, so we'll at least have the recording
|
2000-12-08 16:23:32 +01:00
|
|
|
Start();
|
2000-04-15 17:38:11 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
cReplayBuffer::~cReplayBuffer()
|
|
|
|
{
|
2000-12-08 16:23:32 +01:00
|
|
|
active = false;
|
|
|
|
Cancel(3);
|
2000-04-15 17:38:11 +02:00
|
|
|
Close();
|
2000-12-08 16:23:32 +01:00
|
|
|
SetPlayMode(videoDev, VID_PLAY_CLEAR_BUFFER);
|
|
|
|
SetPlayMode(videoDev, VID_PLAY_RESET);
|
2000-12-28 12:57:16 +01:00
|
|
|
delete index;
|
2000-12-08 16:23:32 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
void cReplayBuffer::Action(void)
|
|
|
|
{
|
|
|
|
dsyslog(LOG_INFO, "replay thread started (pid=%d)", getpid());
|
|
|
|
|
|
|
|
bool Paused = false;
|
|
|
|
bool FastForward = false;
|
|
|
|
bool FastRewind = false;
|
|
|
|
|
|
|
|
int ResumeIndex = Resume();
|
|
|
|
if (ResumeIndex >= 0)
|
2000-12-28 12:57:16 +01:00
|
|
|
isyslog(LOG_INFO, "resuming replay at index %d (%s)", ResumeIndex, IndexToHMSF(ResumeIndex, true));
|
2000-12-08 16:23:32 +01:00
|
|
|
active = true;
|
2000-12-28 12:57:16 +01:00
|
|
|
while (active) {
|
|
|
|
usleep(1); // this keeps the CPU load low
|
2000-12-08 16:23:32 +01:00
|
|
|
|
2000-12-28 12:57:16 +01:00
|
|
|
LOCK_THREAD;
|
|
|
|
|
|
|
|
if (command != rcNone) {
|
|
|
|
switch (command) {
|
|
|
|
case rcStill: SetPlayMode(videoDev, VID_PLAY_CLEAR_BUFFER);
|
|
|
|
SetPlayMode(videoDev, VID_PLAY_NORMAL);
|
|
|
|
SetMode(rmStill);
|
|
|
|
Paused = FastForward = FastRewind = false;
|
|
|
|
break;
|
|
|
|
case rcPause: SetPlayMode(videoDev, Paused ? VID_PLAY_NORMAL : VID_PLAY_PAUSE);
|
|
|
|
Paused = !Paused;
|
|
|
|
if (FastForward || FastRewind) {
|
|
|
|
SetPlayMode(videoDev, VID_PLAY_CLEAR_BUFFER);
|
|
|
|
Clear();
|
|
|
|
}
|
|
|
|
FastForward = FastRewind = false;
|
|
|
|
SetMode(rmPlay);
|
|
|
|
if (!Paused)
|
|
|
|
stillIndex = -1;
|
|
|
|
break;
|
|
|
|
case rcPlay: if (FastForward || FastRewind || Paused) {
|
|
|
|
SetPlayMode(videoDev, VID_PLAY_CLEAR_BUFFER);
|
|
|
|
SetPlayMode(videoDev, VID_PLAY_NORMAL);
|
|
|
|
FastForward = FastRewind = Paused = false;
|
|
|
|
SetMode(rmPlay);
|
|
|
|
}
|
|
|
|
stillIndex = -1;
|
|
|
|
break;
|
|
|
|
case rcForward: SetPlayMode(videoDev, VID_PLAY_CLEAR_BUFFER);
|
|
|
|
Clear();
|
|
|
|
FastForward = !FastForward;
|
|
|
|
FastRewind = false;
|
|
|
|
if (Paused) {
|
|
|
|
SetMode(rmPlay);
|
|
|
|
SetPlayMode(videoDev, FastForward ? VID_PLAY_SLOW_MOTION : VID_PLAY_PAUSE);
|
|
|
|
}
|
|
|
|
else {
|
|
|
|
SetPlayMode(videoDev, VID_PLAY_NORMAL);
|
|
|
|
SetMode(FastForward ? rmFastForward : rmPlay);
|
|
|
|
}
|
|
|
|
stillIndex = -1;
|
|
|
|
break;
|
|
|
|
case rcBackward: SetPlayMode(videoDev, VID_PLAY_CLEAR_BUFFER);
|
|
|
|
Clear();
|
|
|
|
FastRewind = !FastRewind;
|
|
|
|
FastForward = false;
|
|
|
|
if (Paused) {
|
|
|
|
SetMode(FastRewind ? rmSlowRewind : rmPlay);
|
|
|
|
SetPlayMode(videoDev, FastRewind ? VID_PLAY_NORMAL : VID_PLAY_PAUSE);
|
|
|
|
}
|
|
|
|
else {
|
|
|
|
SetPlayMode(videoDev, VID_PLAY_NORMAL);
|
|
|
|
SetMode(FastRewind ? rmFastRewind : rmPlay);
|
|
|
|
}
|
|
|
|
stillIndex = -1;
|
|
|
|
break;
|
|
|
|
default: break;
|
|
|
|
}
|
|
|
|
command = rcNone;
|
2000-12-08 16:23:32 +01:00
|
|
|
}
|
2000-12-28 12:57:16 +01:00
|
|
|
if (Read() < 0 || Write() < 0)
|
|
|
|
break;
|
|
|
|
}
|
2000-12-08 16:23:32 +01:00
|
|
|
Save();
|
|
|
|
|
|
|
|
dsyslog(LOG_INFO, "end replaying thread");
|
2000-02-19 13:36:48 +01:00
|
|
|
}
|
|
|
|
|
2000-04-15 17:38:11 +02:00
|
|
|
void cReplayBuffer::Close(void)
|
2000-02-19 13:36:48 +01:00
|
|
|
{
|
2000-04-15 17:38:11 +02:00
|
|
|
if (replayFile >= 0) {
|
2000-12-28 12:57:16 +01:00
|
|
|
fileName.Close();
|
2000-04-15 17:38:11 +02:00
|
|
|
replayFile = -1;
|
|
|
|
fileOffset = 0;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
void cReplayBuffer::SetMode(eReplayMode Mode)
|
|
|
|
{
|
|
|
|
mode = Mode;
|
2000-07-30 14:34:07 +02:00
|
|
|
brakeCounter = 0;
|
2000-04-15 17:38:11 +02:00
|
|
|
if (mode != rmPlay)
|
|
|
|
Clear();
|
|
|
|
}
|
|
|
|
|
|
|
|
int cReplayBuffer::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 cReplayBuffer::Save(void)
|
|
|
|
{
|
|
|
|
if (index) {
|
2000-12-28 12:57:16 +01:00
|
|
|
int Index = index->Get(fileName.Number(), fileOffset);
|
2000-04-15 17:38:11 +02:00
|
|
|
if (Index >= 0) {
|
|
|
|
Index -= RESUMEBACKUP;
|
2000-12-28 12:57:16 +01:00
|
|
|
if (Index > 0)
|
|
|
|
Index = index->GetNextIFrame(Index, false);
|
2000-04-15 17:38:11 +02:00
|
|
|
else
|
|
|
|
Index = 0;
|
|
|
|
if (Index >= 0)
|
|
|
|
return index->StoreResume(Index);
|
|
|
|
}
|
|
|
|
}
|
2000-02-19 13:36:48 +01:00
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
2000-12-28 12:57:16 +01:00
|
|
|
int cReplayBuffer::SkipFrames(int Frames)
|
|
|
|
{
|
|
|
|
if (index && Frames) {
|
|
|
|
|
|
|
|
LOCK_THREAD;
|
|
|
|
|
|
|
|
int Current, Total;
|
|
|
|
GetIndex(Current, Total, true);
|
|
|
|
int OldCurrent = Current;
|
|
|
|
Current = index->GetNextIFrame(Current + Frames, Frames > 0);
|
|
|
|
return Current >= 0 ? Current : OldCurrent;
|
|
|
|
}
|
|
|
|
return -1;
|
|
|
|
}
|
|
|
|
|
2000-04-15 17:38:11 +02:00
|
|
|
void cReplayBuffer::SkipSeconds(int Seconds)
|
|
|
|
{
|
2000-12-08 16:23:32 +01:00
|
|
|
LOCK_THREAD;
|
|
|
|
|
|
|
|
SetPlayMode(videoDev, VID_PLAY_PAUSE);
|
|
|
|
SetPlayMode(videoDev, VID_PLAY_CLEAR_BUFFER);
|
|
|
|
SetPlayMode(videoDev, VID_PLAY_NORMAL);
|
|
|
|
command = rcPlay;
|
|
|
|
SetMode(rmPlay);
|
|
|
|
Clear();
|
|
|
|
|
2000-04-15 17:38:11 +02:00
|
|
|
if (index && Seconds) {
|
2000-12-28 12:57:16 +01:00
|
|
|
int Index = index->Get(fileName.Number(), fileOffset);
|
2000-04-15 17:38:11 +02:00
|
|
|
if (Index >= 0) {
|
|
|
|
if (Seconds < 0) {
|
|
|
|
int sec = index->Last() / FRAMESPERSEC;
|
|
|
|
if (Seconds < -sec)
|
2000-12-28 12:57:16 +01:00
|
|
|
Seconds = -sec;
|
2000-04-15 17:38:11 +02:00
|
|
|
}
|
|
|
|
Index += Seconds * FRAMESPERSEC;
|
|
|
|
if (Index < 0)
|
2000-04-24 13:54:23 +02:00
|
|
|
Index = 1; // not '0', to allow GetNextIFrame() below to work!
|
2000-04-15 17:38:11 +02:00
|
|
|
uchar FileNumber;
|
|
|
|
int FileOffset;
|
|
|
|
if (index->GetNextIFrame(Index, false, &FileNumber, &FileOffset) >= 0)
|
|
|
|
NextFile(FileNumber, FileOffset);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2001-01-07 17:00:50 +01:00
|
|
|
void cReplayBuffer::Goto(int Index, bool Still)
|
2000-12-28 12:57:16 +01:00
|
|
|
{
|
|
|
|
LOCK_THREAD;
|
|
|
|
|
2001-01-07 17:00:50 +01:00
|
|
|
if (Still)
|
|
|
|
command = rcStill;
|
2000-12-28 12:57:16 +01:00
|
|
|
if (++Index <= 0)
|
|
|
|
Index = 1; // not '0', to allow GetNextIFrame() below to work!
|
|
|
|
uchar FileNumber;
|
|
|
|
int FileOffset;
|
|
|
|
if ((stillIndex = index->GetNextIFrame(Index, false, &FileNumber, &FileOffset)) >= 0)
|
|
|
|
NextFile(FileNumber, FileOffset);
|
|
|
|
SetPlayMode(videoDev, VID_PLAY_CLEAR_BUFFER);
|
|
|
|
Clear();
|
|
|
|
}
|
|
|
|
|
|
|
|
void cReplayBuffer::GetIndex(int &Current, int &Total, bool SnapToIFrame)
|
2000-04-23 15:38:16 +02:00
|
|
|
{
|
|
|
|
if (index) {
|
2000-12-08 16:23:32 +01:00
|
|
|
|
|
|
|
LOCK_THREAD;
|
|
|
|
|
2000-12-28 12:57:16 +01:00
|
|
|
if (stillIndex >= 0)
|
|
|
|
Current = stillIndex;
|
|
|
|
else {
|
|
|
|
Current = index->Get(fileName.Number(), fileOffset);
|
|
|
|
if (SnapToIFrame) {
|
|
|
|
int i1 = index->GetNextIFrame(Current + 1, false);
|
|
|
|
int i2 = index->GetNextIFrame(Current, true);
|
|
|
|
Current = (abs(Current - i1) <= abs(Current - i2)) ? i1 : i2;
|
|
|
|
}
|
|
|
|
}
|
2000-04-23 15:38:16 +02:00
|
|
|
Total = index->Last();
|
|
|
|
}
|
|
|
|
else
|
|
|
|
Current = Total = -1;
|
|
|
|
}
|
|
|
|
|
2000-04-15 17:38:11 +02:00
|
|
|
bool cReplayBuffer::NextFile(uchar FileNumber, int FileOffset)
|
|
|
|
{
|
|
|
|
if (FileNumber > 0) {
|
|
|
|
Clear();
|
2000-12-28 12:57:16 +01:00
|
|
|
fileOffset = FileOffset;
|
|
|
|
replayFile = fileName.SetOffset(FileNumber, FileOffset);
|
2000-04-15 17:38:11 +02:00
|
|
|
}
|
2000-12-28 12:57:16 +01:00
|
|
|
else if (replayFile >= 0 && EndOfFile()) {
|
2000-04-15 17:38:11 +02:00
|
|
|
Close();
|
2000-12-28 12:57:16 +01:00
|
|
|
replayFile = fileName.NextFile();
|
2000-04-15 17:38:11 +02:00
|
|
|
}
|
2000-12-28 12:57:16 +01:00
|
|
|
return replayFile >= 0;
|
2000-02-19 13:36:48 +01:00
|
|
|
}
|
|
|
|
|
2001-01-07 17:00:50 +01:00
|
|
|
void cReplayBuffer::SetTemporalReference(void)
|
|
|
|
{
|
|
|
|
for (int i = 0; i < Available(); i++) {
|
|
|
|
if (Byte(i) == 0 && Byte(i + 1) == 0 && Byte(i + 2) == 1) {
|
|
|
|
switch (Byte(i + 3)) {
|
|
|
|
case SC_PICTURE: {
|
|
|
|
unsigned short m = (Byte(i + 4) << 8) | Byte(i + 5);
|
|
|
|
m &= 0x003F;
|
|
|
|
Set(i + 4, 1, m >> 8);
|
|
|
|
Set(i + 5, 1, m & 0xFF);
|
|
|
|
}
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2000-04-15 17:38:11 +02:00
|
|
|
int cReplayBuffer::Read(int Max = -1)
|
2000-02-19 13:36:48 +01:00
|
|
|
{
|
2000-04-15 17:38:11 +02:00
|
|
|
if (mode != rmPlay) {
|
|
|
|
if (index) {
|
|
|
|
if (Available())
|
|
|
|
return 0; // write out the entire block
|
2000-12-28 12:57:16 +01:00
|
|
|
if (mode == rmStill) {
|
2001-01-07 17:00:50 +01:00
|
|
|
uchar FileNumber;
|
|
|
|
int FileOffset, Length;
|
|
|
|
if (index->GetNextIFrame(stillIndex + 1, false, &FileNumber, &FileOffset, &Length) >= 0) {
|
|
|
|
if (!NextFile(FileNumber, FileOffset))
|
|
|
|
return -1;
|
|
|
|
Max = Length;
|
2000-07-30 14:34:07 +02:00
|
|
|
}
|
2001-01-07 17:00:50 +01:00
|
|
|
command = rcPause;
|
2000-12-28 12:57:16 +01:00
|
|
|
}
|
|
|
|
else {
|
|
|
|
int Index = (lastIndex >= 0) ? lastIndex : index->Get(fileName.Number(), fileOffset);
|
2000-04-15 17:38:11 +02:00
|
|
|
if (Index >= 0) {
|
2000-12-28 12:57:16 +01:00
|
|
|
if (mode == rmSlowRewind && (brakeCounter++ % 24) != 0) {
|
|
|
|
// show every I_FRAME 24 times in rmSlowRewind mode to achieve roughly the same speed as in slow forward mode
|
|
|
|
Index = index->GetNextIFrame(Index, true); // jump ahead one frame
|
|
|
|
}
|
|
|
|
uchar FileNumber;
|
|
|
|
int FileOffset, Length;
|
|
|
|
Index = index->GetNextIFrame(Index, mode == rmFastForward, &FileNumber, &FileOffset, &Length);
|
|
|
|
if (Index >= 0) {
|
|
|
|
if (!NextFile(FileNumber, FileOffset))
|
|
|
|
return -1;
|
|
|
|
Max = Length;
|
|
|
|
}
|
|
|
|
lastIndex = Index;
|
|
|
|
}
|
|
|
|
if (Index < 0) {
|
|
|
|
// This results in normal replay after a fast rewind.
|
|
|
|
// After a fast forward it will stop.
|
|
|
|
// TODO Could we cause it to pause at the last frame?
|
|
|
|
SetMode(rmPlay);
|
|
|
|
return 0;
|
2000-04-15 17:38:11 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
else
|
|
|
|
lastIndex = -1;
|
|
|
|
//XXX timeout as in recording???
|
|
|
|
if (NextFile()) {
|
|
|
|
int readin = 0;
|
|
|
|
do {
|
|
|
|
// If Max is > 0 here we need to make sure we read in the entire block!
|
2001-03-31 08:42:27 +02:00
|
|
|
int r = cRingBuffer_::Read(Max);
|
2000-04-15 17:38:11 +02:00
|
|
|
if (r >= 0)
|
|
|
|
readin += r;
|
|
|
|
else
|
|
|
|
return -1;
|
|
|
|
} while (readin < Max && Free() > 0);
|
2000-12-08 16:23:32 +01:00
|
|
|
if (mode != rmPlay) {
|
|
|
|
// delete the audio data in modes other than rmPlay:
|
2001-01-07 17:00:50 +01:00
|
|
|
int AudioOffset, StartOffset = 0;
|
|
|
|
while ((AudioOffset = FindStartCode(SC_AUDIO, StartOffset)) >= 0) {
|
|
|
|
if (!Set(StartOffset + AudioOffset, GetPacketLength(StartOffset + AudioOffset), 0))
|
|
|
|
break; // to be able to replay old AV_PES recordings!
|
|
|
|
StartOffset += AudioOffset;
|
|
|
|
}
|
|
|
|
SetTemporalReference();
|
2000-12-08 16:23:32 +01:00
|
|
|
}
|
2000-04-15 17:38:11 +02:00
|
|
|
return readin;
|
|
|
|
}
|
|
|
|
if (Available() > 0)
|
|
|
|
return 0;
|
|
|
|
return -1;
|
2000-02-19 13:36:48 +01:00
|
|
|
}
|
|
|
|
|
2000-04-15 17:38:11 +02:00
|
|
|
int cReplayBuffer::Write(int Max)
|
2000-02-19 13:36:48 +01:00
|
|
|
{
|
2000-04-15 17:38:11 +02:00
|
|
|
int Written = 0;
|
2000-08-02 16:38:40 +02:00
|
|
|
if (Max) {
|
|
|
|
int w;
|
|
|
|
do {
|
2001-03-31 08:42:27 +02:00
|
|
|
w = cRingBuffer_::Write(Max);
|
2000-08-02 16:38:40 +02:00
|
|
|
if (w >= 0) {
|
|
|
|
fileOffset += w;
|
|
|
|
Written += w;
|
|
|
|
if (Max < 0)
|
|
|
|
break;
|
|
|
|
Max -= w;
|
2000-04-15 17:38:11 +02:00
|
|
|
}
|
2000-08-02 16:38:40 +02:00
|
|
|
else
|
|
|
|
return w;
|
2000-12-08 16:23:32 +01:00
|
|
|
} while (Max > 0); // we MUST write this entire frame block
|
2000-08-02 16:38:40 +02:00
|
|
|
}
|
2000-04-15 17:38:11 +02:00
|
|
|
return Written;
|
2000-02-19 13:36:48 +01:00
|
|
|
}
|
|
|
|
|
2000-11-19 16:49:14 +01:00
|
|
|
// --- cTransferBuffer -------------------------------------------------------
|
|
|
|
|
|
|
|
class cTransferBuffer : public cThread {
|
|
|
|
private:
|
|
|
|
bool active;
|
|
|
|
int fromDevice, toDevice;
|
|
|
|
protected:
|
|
|
|
virtual void Action(void);
|
|
|
|
public:
|
|
|
|
cTransferBuffer(int FromDevice, int ToDevice);
|
|
|
|
virtual ~cTransferBuffer();
|
|
|
|
};
|
|
|
|
|
|
|
|
cTransferBuffer::cTransferBuffer(int FromDevice, int ToDevice)
|
|
|
|
{
|
|
|
|
fromDevice = FromDevice;
|
|
|
|
toDevice = ToDevice;
|
2000-12-08 16:23:32 +01:00
|
|
|
active = false;
|
2000-11-19 16:49:14 +01:00
|
|
|
Start();
|
|
|
|
}
|
|
|
|
|
|
|
|
cTransferBuffer::~cTransferBuffer()
|
|
|
|
{
|
2000-12-08 16:23:32 +01:00
|
|
|
active = false;
|
|
|
|
Cancel(3);
|
|
|
|
SetPlayMode(fromDevice, VID_PLAY_RESET);
|
|
|
|
SetPlayMode(toDevice, VID_PLAY_RESET);
|
2000-11-19 16:49:14 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
void cTransferBuffer::Action(void)
|
|
|
|
{
|
|
|
|
dsyslog(LOG_INFO, "data transfer thread started (pid=%d)", getpid());
|
2000-12-08 16:23:32 +01:00
|
|
|
|
2001-03-31 08:42:27 +02:00
|
|
|
cRingBuffer_ Buffer(&fromDevice, &toDevice, VIDEOBUFSIZE, 0, 0);
|
2000-12-08 16:23:32 +01:00
|
|
|
active = true;
|
|
|
|
while (active && Buffer.Available() < 100000) { // need to give the read buffer a head start
|
|
|
|
Buffer.Read(); // initializes fromDevice for reading
|
2000-11-19 16:49:14 +01:00
|
|
|
usleep(1); // this keeps the CPU load low
|
|
|
|
}
|
2000-12-28 12:57:16 +01:00
|
|
|
while (active) {
|
|
|
|
if (Buffer.Read() < 0 || Buffer.Write() < 0)
|
|
|
|
break;
|
|
|
|
usleep(1); // this keeps the CPU load low
|
|
|
|
}
|
2000-11-19 16:49:14 +01:00
|
|
|
dsyslog(LOG_INFO, "data transfer thread stopped (pid=%d)", getpid());
|
|
|
|
}
|
|
|
|
|
2000-12-28 12:57:16 +01:00
|
|
|
// --- cCuttingBuffer --------------------------------------------------------
|
|
|
|
|
2001-03-31 08:42:27 +02:00
|
|
|
class cCuttingBuffer : public cRingBuffer_, public cThread {
|
2000-12-28 12:57:16 +01:00
|
|
|
private:
|
|
|
|
bool active;
|
|
|
|
int fromFile, toFile;
|
|
|
|
cFileName *fromFileName, *toFileName;
|
|
|
|
cIndexFile *fromIndex, *toIndex;
|
|
|
|
cMarks fromMarks, toMarks;
|
|
|
|
protected:
|
|
|
|
virtual void Action(void);
|
|
|
|
public:
|
|
|
|
cCuttingBuffer(const char *FromFileName, const char *ToFileName);
|
|
|
|
virtual ~cCuttingBuffer();
|
|
|
|
};
|
|
|
|
|
|
|
|
cCuttingBuffer::cCuttingBuffer(const char *FromFileName, const char *ToFileName)
|
2001-03-31 08:42:27 +02:00
|
|
|
:cRingBuffer_(&fromFile, &toFile, VIDEOBUFSIZE, 0, VIDEOBUFSIZE / 10)
|
2000-12-28 12:57:16 +01:00
|
|
|
{
|
|
|
|
active = false;
|
|
|
|
fromFile = toFile = -1;
|
|
|
|
fromFileName = toFileName = NULL;
|
|
|
|
fromIndex = toIndex = NULL;
|
|
|
|
if (fromMarks.Load(FromFileName) && fromMarks.Count()) {
|
|
|
|
fromFileName = new cFileName(FromFileName, false);
|
|
|
|
toFileName = new cFileName(ToFileName, true);
|
|
|
|
fromIndex = new cIndexFile(FromFileName, false);
|
|
|
|
toIndex = new cIndexFile(ToFileName, true);
|
|
|
|
toMarks.Load(ToFileName); // doesn't actually load marks, just sets the file name
|
|
|
|
Start();
|
|
|
|
}
|
|
|
|
else
|
|
|
|
esyslog(LOG_ERR, "no editing marks found for %s", FromFileName);
|
|
|
|
}
|
|
|
|
|
|
|
|
cCuttingBuffer::~cCuttingBuffer()
|
|
|
|
{
|
|
|
|
active = false;
|
|
|
|
Cancel(3);
|
|
|
|
delete fromFileName;
|
|
|
|
delete toFileName;
|
|
|
|
delete fromIndex;
|
|
|
|
delete toIndex;
|
|
|
|
}
|
|
|
|
|
|
|
|
void cCuttingBuffer::Action(void)
|
|
|
|
{
|
|
|
|
dsyslog(LOG_INFO, "video cutting thread started (pid=%d)", getpid());
|
|
|
|
|
|
|
|
cMark *Mark = fromMarks.First();
|
|
|
|
if (Mark) {
|
|
|
|
fromFile = fromFileName->Open();
|
|
|
|
toFile = toFileName->Open();
|
|
|
|
active = fromFile >= 0 && toFile >= 0;
|
|
|
|
int Index = Mark->position;
|
|
|
|
Mark = fromMarks.Next(Mark);
|
|
|
|
int FileSize = 0;
|
|
|
|
int CurrentFileNumber = 0;
|
|
|
|
int LastIFrame = 0;
|
|
|
|
toMarks.Add(0);
|
|
|
|
toMarks.Save();
|
|
|
|
while (active) {
|
|
|
|
uchar FileNumber;
|
|
|
|
int FileOffset, Length;
|
|
|
|
uchar PictureType;
|
|
|
|
|
|
|
|
Clear(); // makes sure one frame is completely read and written
|
|
|
|
|
|
|
|
// Read one frame:
|
|
|
|
|
|
|
|
if (fromIndex->Get(Index++, &FileNumber, &FileOffset, &PictureType, &Length)) {
|
|
|
|
if (FileNumber != CurrentFileNumber) {
|
|
|
|
fromFile = fromFileName->SetOffset(FileNumber, FileOffset);
|
|
|
|
CurrentFileNumber = FileNumber;
|
|
|
|
}
|
|
|
|
if (fromFile >= 0)
|
2001-03-31 08:42:27 +02:00
|
|
|
Length = cRingBuffer_::Read(Length);
|
2000-12-28 12:57:16 +01:00
|
|
|
else
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
else
|
|
|
|
break;
|
|
|
|
|
|
|
|
// Write one frame:
|
|
|
|
|
|
|
|
if (PictureType == I_FRAME) { // every file shall start with an I_FRAME
|
|
|
|
if (FileSize > MAXVIDEOFILESIZE) {
|
|
|
|
toFile = toFileName->NextFile();
|
|
|
|
if (toFile < 0)
|
|
|
|
break;
|
|
|
|
FileSize = 0;
|
|
|
|
}
|
|
|
|
LastIFrame = 0;
|
|
|
|
}
|
2001-03-31 08:42:27 +02:00
|
|
|
cRingBuffer_::Write(Length);
|
2000-12-28 12:57:16 +01:00
|
|
|
toIndex->Write(PictureType, toFileName->Number(), FileSize);
|
|
|
|
FileSize += Length;
|
|
|
|
if (!LastIFrame)
|
|
|
|
LastIFrame = toIndex->Last();
|
|
|
|
|
|
|
|
// Check editing marks:
|
|
|
|
|
|
|
|
if (Mark && Index >= Mark->position) {
|
|
|
|
Mark = fromMarks.Next(Mark);
|
|
|
|
if (Mark) {
|
|
|
|
Index = Mark->position;
|
|
|
|
Mark = fromMarks.Next(Mark);
|
|
|
|
CurrentFileNumber = 0; // triggers SetOffset before reading next frame
|
|
|
|
toMarks.Add(LastIFrame);
|
|
|
|
toMarks.Add(toIndex->Last() + 1);
|
|
|
|
toMarks.Save();
|
|
|
|
}
|
|
|
|
else
|
|
|
|
break; // final end mark reached
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
else
|
|
|
|
esyslog(LOG_ERR, "no editing marks found!");
|
|
|
|
dsyslog(LOG_INFO, "end video cutting thread");
|
|
|
|
}
|
|
|
|
|
|
|
|
// --- cVideoCutter ----------------------------------------------------------
|
|
|
|
|
|
|
|
cCuttingBuffer *cVideoCutter::cuttingBuffer = NULL;
|
|
|
|
|
|
|
|
bool cVideoCutter::Start(const char *FileName)
|
|
|
|
{
|
|
|
|
if (!cuttingBuffer) {
|
|
|
|
const char *EditedVersionName = PrefixVideoFileName(FileName, '%');
|
|
|
|
if (EditedVersionName && RemoveVideoFile(EditedVersionName) && MakeDirs(EditedVersionName, true)) {
|
|
|
|
cuttingBuffer = new cCuttingBuffer(FileName, EditedVersionName);
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
void cVideoCutter::Stop(void)
|
|
|
|
{
|
|
|
|
delete cuttingBuffer;
|
|
|
|
cuttingBuffer = NULL;
|
|
|
|
}
|
|
|
|
|
|
|
|
bool cVideoCutter::Active(void)
|
|
|
|
{
|
|
|
|
if (cuttingBuffer) {
|
|
|
|
if (cuttingBuffer->Active())
|
|
|
|
return true;
|
|
|
|
Stop();
|
|
|
|
}
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
2000-04-15 17:38:11 +02:00
|
|
|
// --- cDvbApi ---------------------------------------------------------------
|
2000-02-19 13:36:48 +01:00
|
|
|
|
2000-05-01 16:29:46 +02:00
|
|
|
int cDvbApi::NumDvbApis = 0;
|
2001-02-02 15:49:46 +01:00
|
|
|
int cDvbApi::useDvbApi = 0;
|
2000-05-01 16:29:46 +02:00
|
|
|
cDvbApi *cDvbApi::dvbApi[MAXDVBAPI] = { NULL };
|
|
|
|
cDvbApi *cDvbApi::PrimaryDvbApi = NULL;
|
|
|
|
|
2000-10-29 13:17:22 +01:00
|
|
|
cDvbApi::cDvbApi(const char *VideoFileName, const char *VbiFileName)
|
2000-03-11 11:22:37 +01:00
|
|
|
{
|
2000-10-29 13:17:22 +01:00
|
|
|
siProcessor = NULL;
|
2000-12-08 16:23:32 +01:00
|
|
|
recordBuffer = NULL;
|
|
|
|
replayBuffer = NULL;
|
2000-11-19 16:49:14 +01:00
|
|
|
transferBuffer = NULL;
|
|
|
|
transferringFromDvbApi = NULL;
|
2000-12-08 16:23:32 +01:00
|
|
|
ca = 0;
|
|
|
|
priority = -1;
|
2000-10-29 13:17:22 +01:00
|
|
|
videoDev = open(VideoFileName, O_RDWR | O_NONBLOCK);
|
|
|
|
if (videoDev >= 0) {
|
|
|
|
siProcessor = new cSIProcessor(VbiFileName);
|
2001-03-14 18:39:53 +01:00
|
|
|
if (!dvbApi[0]) // only the first one shall set the system time
|
2000-10-29 13:17:22 +01:00
|
|
|
siProcessor->SetUseTSTime(Setup.SetSystemTime);
|
|
|
|
siProcessor->AddFilter(0x14, 0x70); // TDT
|
|
|
|
siProcessor->AddFilter(0x14, 0x73); // TOT
|
|
|
|
siProcessor->AddFilter(0x12, 0x4e); // event info, actual TS, present/following
|
|
|
|
siProcessor->AddFilter(0x12, 0x4f); // event info, other TS, present/following
|
|
|
|
siProcessor->AddFilter(0x12, 0x50); // event info, actual TS, schedule
|
|
|
|
siProcessor->AddFilter(0x12, 0x60); // event info, other TS, schedule
|
|
|
|
siProcessor->Start();
|
|
|
|
}
|
|
|
|
else
|
|
|
|
LOG_ERROR_STR(VideoFileName);
|
2000-03-11 11:22:37 +01:00
|
|
|
cols = rows = 0;
|
2000-09-17 13:47:06 +02:00
|
|
|
|
|
|
|
ovlGeoSet = ovlStat = ovlFbSet = false;
|
|
|
|
ovlBrightness = ovlColour = ovlHue = ovlContrast = 32768;
|
|
|
|
ovlClipCount = 0;
|
|
|
|
|
2000-07-15 12:39:20 +02:00
|
|
|
#if defined(DEBUG_OSD) || defined(REMOTE_KBD)
|
2000-03-11 11:22:37 +01:00
|
|
|
initscr();
|
2000-09-17 11:53:35 +02:00
|
|
|
keypad(stdscr, true);
|
2000-03-11 11:22:37 +01:00
|
|
|
nonl();
|
|
|
|
cbreak();
|
|
|
|
noecho();
|
2000-10-14 08:56:08 +02:00
|
|
|
timeout(10);
|
2000-04-15 17:38:11 +02:00
|
|
|
#endif
|
|
|
|
#if defined(DEBUG_OSD)
|
|
|
|
memset(&colorPairs, 0, sizeof(colorPairs));
|
|
|
|
start_color();
|
2000-09-17 11:53:35 +02:00
|
|
|
leaveok(stdscr, true);
|
2000-04-22 13:51:48 +02:00
|
|
|
window = NULL;
|
2000-10-03 10:34:48 +02:00
|
|
|
#else
|
|
|
|
osd = NULL;
|
2000-03-11 11:22:37 +01:00
|
|
|
#endif
|
2000-11-05 18:39:17 +01:00
|
|
|
currentChannel = 1;
|
2000-03-11 11:22:37 +01:00
|
|
|
}
|
|
|
|
|
2000-04-15 17:38:11 +02:00
|
|
|
cDvbApi::~cDvbApi()
|
2000-03-11 11:22:37 +01:00
|
|
|
{
|
2000-05-01 16:29:46 +02:00
|
|
|
if (videoDev >= 0) {
|
2000-10-29 13:17:22 +01:00
|
|
|
delete siProcessor;
|
2000-05-01 16:29:46 +02:00
|
|
|
Close();
|
2000-12-08 16:23:32 +01:00
|
|
|
StopReplay();
|
2000-05-01 16:29:46 +02:00
|
|
|
StopRecord();
|
2000-11-19 16:49:14 +01:00
|
|
|
StopTransfer();
|
2000-09-17 13:47:06 +02:00
|
|
|
OvlO(false); //Overlay off!
|
2000-11-18 13:57:32 +01:00
|
|
|
//XXX the following call sometimes causes a segfault - driver problem?
|
2000-05-01 16:29:46 +02:00
|
|
|
close(videoDev);
|
|
|
|
}
|
2000-07-15 12:39:20 +02:00
|
|
|
#if defined(DEBUG_OSD) || defined(REMOTE_KBD)
|
2000-05-01 16:29:46 +02:00
|
|
|
endwin();
|
2000-04-15 17:38:11 +02:00
|
|
|
#endif
|
2000-03-11 11:22:37 +01:00
|
|
|
}
|
|
|
|
|
2001-02-02 15:49:46 +01:00
|
|
|
void cDvbApi::SetUseDvbApi(int n)
|
|
|
|
{
|
|
|
|
if (n < MAXDVBAPI)
|
|
|
|
useDvbApi |= (1 << n);
|
|
|
|
}
|
|
|
|
|
2000-09-10 10:51:58 +02:00
|
|
|
bool cDvbApi::SetPrimaryDvbApi(int n)
|
|
|
|
{
|
|
|
|
n--;
|
|
|
|
if (0 <= n && n < NumDvbApis && dvbApi[n]) {
|
|
|
|
isyslog(LOG_INFO, "setting primary DVB to %d", n + 1);
|
|
|
|
PrimaryDvbApi = dvbApi[n];
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
esyslog(LOG_ERR, "invalid DVB interface: %d", n + 1);
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
2000-11-12 14:06:53 +01:00
|
|
|
cDvbApi *cDvbApi::GetDvbApi(int Ca, int Priority)
|
2000-05-01 16:29:46 +02:00
|
|
|
{
|
2001-02-24 14:03:39 +01:00
|
|
|
cDvbApi *d = NULL, *dMinPriority = NULL;
|
2000-11-12 14:06:53 +01:00
|
|
|
int index = Ca - 1;
|
2000-05-01 16:29:46 +02:00
|
|
|
for (int i = MAXDVBAPI; --i >= 0; ) {
|
2000-11-12 14:06:53 +01:00
|
|
|
if (dvbApi[i]) {
|
|
|
|
if (i == index) { // means we need exactly _this_ device
|
2000-09-10 10:51:58 +02:00
|
|
|
d = dvbApi[i];
|
2000-11-12 14:06:53 +01:00
|
|
|
break;
|
|
|
|
}
|
|
|
|
else if (Ca == 0) { // means any device would be acceptable
|
|
|
|
if (!d || !dvbApi[i]->Recording() || (d->Recording() && d->Priority() > dvbApi[i]->Priority()))
|
2001-02-24 14:03:39 +01:00
|
|
|
d = dvbApi[i]; // this is one that is either not currently recording or has the lowest priority
|
2000-11-12 14:06:53 +01:00
|
|
|
if (d && d != PrimaryDvbApi && !d->Recording()) // avoids the PrimaryDvbApi if possible
|
2000-09-10 10:51:58 +02:00
|
|
|
break;
|
2001-02-24 14:03:39 +01:00
|
|
|
if (d && d->Recording() && d->Priority() < Setup.PrimaryLimit && (!dMinPriority || d->Priority() < dMinPriority->Priority()))
|
|
|
|
dMinPriority = d; // this is the one with the lowest priority below Setup.PrimaryLimit
|
2000-09-10 10:51:58 +02:00
|
|
|
}
|
2000-05-01 16:29:46 +02:00
|
|
|
}
|
|
|
|
}
|
2001-02-24 14:03:39 +01:00
|
|
|
if (d == PrimaryDvbApi) { // the PrimaryDvbApi was the only one that was free
|
|
|
|
if (Priority < Setup.PrimaryLimit)
|
|
|
|
return NULL; // not enough priority to use the PrimaryDvbApi
|
|
|
|
if (dMinPriority) // there's one that must not use the PrimaryDvbApi...
|
|
|
|
d = dMinPriority; // ...so let's kick out that one
|
|
|
|
}
|
|
|
|
return (d // we found one...
|
|
|
|
&& (!d->Recording() // ...that's either not currently recording...
|
|
|
|
|| d->Priority() < Priority // ...or has a lower priority...
|
|
|
|
|| (!d->Ca() && Ca))) // ...or doesn't need this card
|
|
|
|
? d : NULL;
|
2000-05-01 16:29:46 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
int cDvbApi::Index(void)
|
|
|
|
{
|
|
|
|
for (int i = 0; i < MAXDVBAPI; i++) {
|
|
|
|
if (dvbApi[i] == this)
|
|
|
|
return i;
|
|
|
|
}
|
|
|
|
return -1;
|
|
|
|
}
|
|
|
|
|
|
|
|
bool cDvbApi::Init(void)
|
|
|
|
{
|
|
|
|
NumDvbApis = 0;
|
2000-10-29 13:17:22 +01:00
|
|
|
for (int i = 0; i < MAXDVBAPI; i++) {
|
2001-02-02 15:49:46 +01:00
|
|
|
if (useDvbApi == 0 || (useDvbApi & (1 << i)) != 0) {
|
|
|
|
char fileName[strlen(VIDEODEVICE) + 10];
|
|
|
|
sprintf(fileName, "%s%d", VIDEODEVICE, i);
|
|
|
|
if (access(fileName, F_OK | R_OK | W_OK) == 0) {
|
|
|
|
dsyslog(LOG_INFO, "probing %s", fileName);
|
|
|
|
int f = open(fileName, O_RDWR);
|
|
|
|
if (f >= 0) {
|
|
|
|
struct video_capability cap;
|
|
|
|
int r = ioctl(f, VIDIOCGCAP, &cap);
|
|
|
|
close(f);
|
|
|
|
if (r == 0 && (cap.type & VID_TYPE_DVB)) {
|
|
|
|
char vbiFileName[strlen(VBIDEVICE) + 10];
|
|
|
|
sprintf(vbiFileName, "%s%d", VBIDEVICE, i);
|
|
|
|
dvbApi[NumDvbApis++] = new cDvbApi(fileName, vbiFileName);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
else {
|
|
|
|
if (errno != ENODEV)
|
|
|
|
LOG_ERROR_STR(fileName);
|
|
|
|
break;
|
2000-08-06 12:02:34 +02:00
|
|
|
}
|
2000-05-01 16:29:46 +02:00
|
|
|
}
|
|
|
|
else {
|
2001-02-02 15:49:46 +01:00
|
|
|
if (errno != ENOENT)
|
2000-05-01 16:29:46 +02:00
|
|
|
LOG_ERROR_STR(fileName);
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
PrimaryDvbApi = dvbApi[0];
|
2000-07-29 19:03:09 +02:00
|
|
|
if (NumDvbApis > 0) {
|
2000-05-01 16:29:46 +02:00
|
|
|
isyslog(LOG_INFO, "found %d video device%s", NumDvbApis, NumDvbApis > 1 ? "s" : "");
|
2000-07-29 19:03:09 +02:00
|
|
|
} // need braces because of isyslog-macro
|
|
|
|
else {
|
2000-05-01 16:29:46 +02:00
|
|
|
esyslog(LOG_ERR, "ERROR: no video device found, giving up!");
|
2000-07-29 19:03:09 +02:00
|
|
|
}
|
2000-05-01 16:29:46 +02:00
|
|
|
return NumDvbApis > 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
void cDvbApi::Cleanup(void)
|
|
|
|
{
|
|
|
|
for (int i = 0; i < MAXDVBAPI; i++) {
|
|
|
|
delete dvbApi[i];
|
|
|
|
dvbApi[i] = NULL;
|
|
|
|
}
|
|
|
|
PrimaryDvbApi = NULL;
|
|
|
|
}
|
|
|
|
|
2000-10-29 13:17:22 +01:00
|
|
|
const cSchedules *cDvbApi::Schedules(cThreadLock *ThreadLock) const
|
|
|
|
{
|
|
|
|
if (siProcessor && ThreadLock->Lock(siProcessor))
|
|
|
|
return siProcessor->Schedules();
|
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
|
2000-09-17 11:53:35 +02:00
|
|
|
bool cDvbApi::GrabImage(const char *FileName, bool Jpeg, int Quality, int SizeX, int SizeY)
|
|
|
|
{
|
|
|
|
int result = 0;
|
|
|
|
// just do this once?
|
|
|
|
struct video_mbuf mbuf;
|
|
|
|
result |= ioctl(videoDev, VIDIOCGMBUF, &mbuf);
|
|
|
|
int msize = mbuf.size;
|
|
|
|
// gf: this needs to be a protected member of cDvbApi! //XXX kls: WHY???
|
|
|
|
unsigned char *mem = (unsigned char *)mmap(0, msize, PROT_READ | PROT_WRITE, MAP_SHARED, videoDev, 0);
|
|
|
|
if (!mem || mem == (unsigned char *)-1)
|
|
|
|
return false;
|
|
|
|
// set up the size and RGB
|
|
|
|
struct video_capability vc;
|
|
|
|
result |= ioctl(videoDev, VIDIOCGCAP, &vc);
|
|
|
|
struct video_mmap vm;
|
|
|
|
vm.frame = 0;
|
|
|
|
if ((SizeX > 0) && (SizeX <= vc.maxwidth) &&
|
|
|
|
(SizeY > 0) && (SizeY <= vc.maxheight)) {
|
|
|
|
vm.width = SizeX;
|
|
|
|
vm.height = SizeY;
|
|
|
|
}
|
|
|
|
else {
|
|
|
|
vm.width = vc.maxwidth;
|
|
|
|
vm.height = vc.maxheight;
|
|
|
|
}
|
|
|
|
vm.format = VIDEO_PALETTE_RGB24;
|
|
|
|
// this needs to be done every time:
|
|
|
|
result |= ioctl(videoDev, VIDIOCMCAPTURE, &vm);
|
|
|
|
result |= ioctl(videoDev, VIDIOCSYNC, &vm.frame);
|
|
|
|
// make RGB out of BGR:
|
|
|
|
int memsize = vm.width * vm.height;
|
|
|
|
unsigned char *mem1 = mem;
|
|
|
|
for (int i = 0; i < memsize; i++) {
|
|
|
|
unsigned char tmp = mem1[2];
|
|
|
|
mem1[2] = mem1[0];
|
|
|
|
mem1[0] = tmp;
|
|
|
|
mem1 += 3;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (Quality < 0)
|
|
|
|
Quality = 255; //XXX is this 'best'???
|
|
|
|
|
|
|
|
isyslog(LOG_INFO, "grabbing to %s (%s %d %d %d)", FileName, Jpeg ? "JPEG" : "PNM", Quality, vm.width, vm.height);
|
|
|
|
FILE *f = fopen(FileName, "wb");
|
|
|
|
if (f) {
|
|
|
|
if (Jpeg) {
|
|
|
|
// write JPEG file:
|
|
|
|
struct jpeg_compress_struct cinfo;
|
|
|
|
struct jpeg_error_mgr jerr;
|
|
|
|
cinfo.err = jpeg_std_error(&jerr);
|
|
|
|
jpeg_create_compress(&cinfo);
|
|
|
|
jpeg_stdio_dest(&cinfo, f);
|
|
|
|
cinfo.image_width = vm.width;
|
|
|
|
cinfo.image_height = vm.height;
|
|
|
|
cinfo.input_components = 3;
|
|
|
|
cinfo.in_color_space = JCS_RGB;
|
|
|
|
|
|
|
|
jpeg_set_defaults(&cinfo);
|
|
|
|
jpeg_set_quality(&cinfo, Quality, true);
|
|
|
|
jpeg_start_compress(&cinfo, true);
|
|
|
|
|
|
|
|
int rs = vm.width * 3;
|
|
|
|
JSAMPROW rp[vm.height];
|
|
|
|
for (int k = 0; k < vm.height; k++)
|
|
|
|
rp[k] = &mem[rs * k];
|
|
|
|
jpeg_write_scanlines(&cinfo, rp, vm.height);
|
|
|
|
jpeg_finish_compress(&cinfo);
|
|
|
|
jpeg_destroy_compress(&cinfo);
|
|
|
|
}
|
|
|
|
else {
|
|
|
|
// write PNM file:
|
|
|
|
if (fprintf(f, "P6\n%d\n%d\n255\n", vm.width, vm.height) < 0 ||
|
|
|
|
fwrite(mem, vm.width * vm.height * 3, 1, f) < 0) {
|
|
|
|
LOG_ERROR_STR(FileName);
|
|
|
|
result |= 1;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
fclose(f);
|
|
|
|
}
|
|
|
|
else {
|
|
|
|
LOG_ERROR_STR(FileName);
|
|
|
|
result |= 1;
|
|
|
|
}
|
2000-09-17 13:47:06 +02:00
|
|
|
|
|
|
|
if (ovlStat && ovlGeoSet) {
|
|
|
|
// switch the Overlay on again (gf: why have i to do anything again?)
|
|
|
|
OvlG(ovlSizeX, ovlSizeY, ovlPosX, ovlPosY);
|
|
|
|
}
|
|
|
|
if (ovlFbSet)
|
|
|
|
OvlP(ovlBrightness, ovlColour, ovlHue, ovlContrast);
|
|
|
|
|
2000-09-17 11:53:35 +02:00
|
|
|
munmap(mem, msize);
|
|
|
|
return result == 0;
|
|
|
|
}
|
|
|
|
|
2000-09-17 13:47:06 +02:00
|
|
|
bool cDvbApi::OvlF(int SizeX, int SizeY, int FbAddr, int Bpp, int Palette)
|
|
|
|
{
|
|
|
|
int result = 0;
|
|
|
|
// get the actual X-Server settings???
|
|
|
|
// plausibility-check problem: can't be verified w/o X-server!!!
|
|
|
|
if (SizeX <= 0 || SizeY <= 0 || FbAddr == 0 || Bpp / 8 > 4 ||
|
|
|
|
Bpp / 8 <= 0 || Palette <= 0 || Palette > 13 || ovlClipCount < 0 ||
|
|
|
|
SizeX > 4096 || SizeY > 4096) {
|
|
|
|
ovlFbSet = ovlGeoSet = false;
|
|
|
|
OvlO(false);
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
else {
|
|
|
|
dsyslog(LOG_INFO, "OvlF: %d %d %x %d %d", SizeX, SizeY, FbAddr, Bpp, Palette);
|
|
|
|
// this is the problematic part!
|
|
|
|
struct video_buffer vb;
|
|
|
|
result |= ioctl(videoDev, VIDIOCGFBUF, &vb);
|
|
|
|
vb.base = (void*)FbAddr;
|
|
|
|
vb.depth = Bpp;
|
|
|
|
vb.height = SizeY;
|
|
|
|
vb.width = SizeX;
|
|
|
|
vb.bytesperline = ((vb.depth + 1) / 8) * vb.width;
|
|
|
|
//now the real thing: setting the framebuffer
|
|
|
|
result |= ioctl(videoDev, VIDIOCSFBUF, &vb);
|
|
|
|
if (result) {
|
|
|
|
ovlFbSet = ovlGeoSet = false;
|
|
|
|
ovlClipCount = 0;
|
|
|
|
OvlO(false);
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
else {
|
|
|
|
ovlFbSizeX = SizeX;
|
|
|
|
ovlFbSizeY = SizeY;
|
|
|
|
ovlBpp = Bpp;
|
|
|
|
ovlPalette = Palette;
|
|
|
|
ovlFbSet = true;
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
bool cDvbApi::OvlG(int SizeX, int SizeY, int PosX, int PosY)
|
|
|
|
{
|
|
|
|
int result = 0;
|
|
|
|
// get the actual X-Server settings???
|
|
|
|
struct video_capability vc;
|
|
|
|
result |= ioctl(videoDev, VIDIOCGCAP, &vc);
|
|
|
|
if (!ovlFbSet)
|
|
|
|
return false;
|
|
|
|
if (SizeX < vc.minwidth || SizeY < vc.minheight ||
|
|
|
|
SizeX > vc.maxwidth || SizeY>vc.maxheight
|
|
|
|
// || PosX > FbSizeX || PosY > FbSizeY
|
|
|
|
// PosX < -SizeX || PosY < -SizeY ||
|
|
|
|
) {
|
|
|
|
ovlGeoSet = false;
|
|
|
|
OvlO(false);
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
else {
|
|
|
|
struct video_window vw;
|
|
|
|
result |= ioctl(videoDev, VIDIOCGWIN, &vw);
|
|
|
|
vw.x = PosX;
|
|
|
|
vw.y = PosY;
|
|
|
|
vw.width = SizeX;
|
|
|
|
vw.height = SizeY;
|
|
|
|
vw.chromakey = ovlPalette;
|
|
|
|
vw.flags = VIDEO_WINDOW_CHROMAKEY; // VIDEO_WINDOW_INTERLACE; //VIDEO_CLIP_BITMAP;
|
|
|
|
vw.clips = ovlClipRects;
|
|
|
|
vw.clipcount = ovlClipCount;
|
|
|
|
result |= ioctl(videoDev, VIDIOCSWIN, &vw);
|
|
|
|
if (result) {
|
|
|
|
ovlGeoSet = false;
|
|
|
|
ovlClipCount = 0;
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
else {
|
|
|
|
ovlSizeX = SizeX;
|
|
|
|
ovlSizeY = SizeY;
|
|
|
|
ovlPosX = PosX;
|
|
|
|
ovlPosY = PosY;
|
|
|
|
ovlGeoSet = true;
|
|
|
|
ovlStat = true;
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
bool cDvbApi::OvlC(int ClipCount, CRect *cr)
|
|
|
|
{
|
|
|
|
if (ovlGeoSet && ovlFbSet) {
|
|
|
|
for (int i = 0; i < ClipCount; i++) {
|
|
|
|
ovlClipRects[i].x = cr[i].x;
|
|
|
|
ovlClipRects[i].y = cr[i].y;
|
|
|
|
ovlClipRects[i].width = cr[i].width;
|
|
|
|
ovlClipRects[i].height = cr[i].height;
|
|
|
|
ovlClipRects[i].next = &(ovlClipRects[i + 1]);
|
|
|
|
}
|
|
|
|
ovlClipCount = ClipCount;
|
|
|
|
//use it:
|
|
|
|
return OvlG(ovlSizeX, ovlSizeY, ovlPosX, ovlPosY);
|
|
|
|
}
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
bool cDvbApi::OvlP(__u16 Brightness, __u16 Colour, __u16 Hue, __u16 Contrast)
|
|
|
|
{
|
|
|
|
int result = 0;
|
|
|
|
ovlBrightness = Brightness;
|
|
|
|
ovlColour = Colour;
|
|
|
|
ovlHue = Hue;
|
|
|
|
ovlContrast = Contrast;
|
|
|
|
struct video_picture vp;
|
|
|
|
if (!ovlFbSet)
|
|
|
|
return false;
|
|
|
|
result |= ioctl(videoDev, VIDIOCGPICT, &vp);
|
|
|
|
vp.brightness = Brightness;
|
|
|
|
vp.colour = Colour;
|
|
|
|
vp.hue = Hue;
|
|
|
|
vp.contrast = Contrast;
|
|
|
|
vp.depth = ovlBpp;
|
|
|
|
vp.palette = ovlPalette; // gf: is this always ok? VIDEO_PALETTE_RGB565;
|
|
|
|
result |= ioctl(videoDev, VIDIOCSPICT, &vp);
|
|
|
|
return result == 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
bool cDvbApi::OvlO(bool Value)
|
|
|
|
{
|
|
|
|
int result = 0;
|
|
|
|
if (!ovlGeoSet && Value)
|
|
|
|
return false;
|
|
|
|
int one = 1;
|
|
|
|
int zero = 0;
|
|
|
|
result |= ioctl(videoDev, VIDIOCCAPTURE, Value ? &one : &zero);
|
|
|
|
ovlStat = Value;
|
|
|
|
if (result) {
|
|
|
|
ovlStat = false;
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
2000-03-11 11:22:37 +01:00
|
|
|
#ifdef DEBUG_OSD
|
2000-04-15 17:38:11 +02:00
|
|
|
void cDvbApi::SetColor(eDvbColor colorFg, eDvbColor colorBg)
|
2000-03-11 11:22:37 +01:00
|
|
|
{
|
|
|
|
int color = (colorBg << 16) | colorFg | 0x80000000;
|
|
|
|
for (int i = 0; i < MaxColorPairs; i++) {
|
|
|
|
if (!colorPairs[i]) {
|
|
|
|
colorPairs[i] = color;
|
|
|
|
init_pair(i + 1, colorFg, colorBg);
|
|
|
|
wattrset(window, COLOR_PAIR(i + 1));
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
else if (color == colorPairs[i]) {
|
|
|
|
wattrset(window, COLOR_PAIR(i + 1));
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
#else
|
2000-04-15 17:38:11 +02:00
|
|
|
void cDvbApi::Cmd(OSD_Command cmd, int color, int x0, int y0, int x1, int y1, const void *data)
|
2000-02-19 13:36:48 +01:00
|
|
|
{
|
2000-04-15 17:38:11 +02:00
|
|
|
if (videoDev >= 0) {
|
2000-02-19 13:36:48 +01:00
|
|
|
struct drawcmd dc;
|
|
|
|
dc.cmd = cmd;
|
|
|
|
dc.color = color;
|
|
|
|
dc.x0 = x0;
|
|
|
|
dc.y0 = y0;
|
|
|
|
dc.x1 = x1;
|
|
|
|
dc.y1 = y1;
|
2000-03-11 11:22:37 +01:00
|
|
|
dc.data = (void *)data;
|
2000-04-15 17:38:11 +02:00
|
|
|
ioctl(videoDev, VIDIOCSOSDCOMMAND, &dc);
|
2000-09-09 14:57:43 +02:00
|
|
|
usleep(10); // XXX Workaround for a driver bug (cInterface::DisplayChannel() displayed texts at wrong places
|
|
|
|
// XXX and sometimes the OSD was no longer displayed).
|
|
|
|
// XXX Increase the value if the problem still persists on your particular system.
|
|
|
|
// TODO Check if this is still necessary with driver versions after 0.6.
|
2000-02-19 13:36:48 +01:00
|
|
|
}
|
|
|
|
}
|
2000-03-11 11:22:37 +01:00
|
|
|
#endif
|
|
|
|
|
2000-04-23 15:38:16 +02:00
|
|
|
void cDvbApi::Open(int w, int h)
|
2000-03-11 11:22:37 +01:00
|
|
|
{
|
2000-04-23 15:38:16 +02:00
|
|
|
int d = (h < 0) ? MenuLines + h : 0;
|
|
|
|
h = abs(h);
|
2000-03-11 11:22:37 +01:00
|
|
|
cols = w;
|
|
|
|
rows = h;
|
|
|
|
#ifdef DEBUG_OSD
|
2000-04-22 13:51:48 +02:00
|
|
|
window = subwin(stdscr, h, w, d, 0);
|
2000-09-17 11:53:35 +02:00
|
|
|
syncok(window, true);
|
2000-03-11 11:22:37 +01:00
|
|
|
#define B2C(b) (((b) * 1000) / 255)
|
|
|
|
#define SETCOLOR(n, r, g, b, o) init_color(n, B2C(r), B2C(g), B2C(b))
|
|
|
|
#else
|
|
|
|
w *= charWidth;
|
|
|
|
h *= lineHeight;
|
2000-04-22 13:51:48 +02:00
|
|
|
d *= lineHeight;
|
|
|
|
int x = (720 - MenuColumns * charWidth) / 2; //TODO PAL vs. NTSC???
|
|
|
|
int y = (576 - MenuLines * lineHeight) / 2 + d;
|
2000-10-03 10:34:48 +02:00
|
|
|
osd = new cDvbOsd(videoDev, x, y, x + w - 1, y + h - 1, 4);
|
2000-03-11 11:22:37 +01:00
|
|
|
#define SETCOLOR(n, r, g, b, o) Cmd(OSD_SetColor, n, r, g, b, o)
|
2000-10-03 10:34:48 +02:00
|
|
|
SETCOLOR(clrTransparent, 0x00, 0x00, 0x00, 0);
|
2000-03-11 11:22:37 +01:00
|
|
|
#endif
|
2000-10-03 10:34:48 +02:00
|
|
|
SETCOLOR(clrBackground, 0x00, 0x00, 0x00, 127); // background 50% gray
|
|
|
|
SETCOLOR(clrBlack, 0x00, 0x00, 0x00, 255);
|
|
|
|
SETCOLOR(clrRed, 0xFC, 0x14, 0x14, 255);
|
|
|
|
SETCOLOR(clrGreen, 0x24, 0xFC, 0x24, 255);
|
|
|
|
SETCOLOR(clrYellow, 0xFC, 0xC0, 0x24, 255);
|
|
|
|
SETCOLOR(clrBlue, 0x00, 0x00, 0xFC, 255);
|
|
|
|
SETCOLOR(clrCyan, 0x00, 0xFC, 0xFC, 255);
|
|
|
|
SETCOLOR(clrMagenta, 0xB0, 0x00, 0xFC, 255);
|
|
|
|
SETCOLOR(clrWhite, 0xFC, 0xFC, 0xFC, 255);
|
2000-03-11 11:22:37 +01:00
|
|
|
}
|
2000-02-19 13:36:48 +01:00
|
|
|
|
2000-04-15 17:38:11 +02:00
|
|
|
void cDvbApi::Close(void)
|
2000-02-19 13:36:48 +01:00
|
|
|
{
|
2000-05-01 16:29:46 +02:00
|
|
|
#ifdef DEBUG_OSD
|
2000-08-06 14:08:33 +02:00
|
|
|
if (window) {
|
|
|
|
delwin(window);
|
|
|
|
window = 0;
|
|
|
|
}
|
2000-05-01 16:29:46 +02:00
|
|
|
#else
|
2000-10-03 10:34:48 +02:00
|
|
|
delete osd;
|
|
|
|
osd = NULL;
|
2000-03-11 11:22:37 +01:00
|
|
|
#endif
|
2000-02-19 13:36:48 +01:00
|
|
|
}
|
|
|
|
|
2000-04-15 17:38:11 +02:00
|
|
|
void cDvbApi::Clear(void)
|
2000-02-19 13:36:48 +01:00
|
|
|
{
|
2000-03-11 11:22:37 +01:00
|
|
|
#ifdef DEBUG_OSD
|
|
|
|
SetColor(clrBackground, clrBackground);
|
|
|
|
Fill(0, 0, cols, rows, clrBackground);
|
|
|
|
#else
|
2000-10-03 10:34:48 +02:00
|
|
|
osd->Clear();
|
2000-03-11 11:22:37 +01:00
|
|
|
#endif
|
2000-02-19 13:36:48 +01:00
|
|
|
}
|
|
|
|
|
2000-04-15 17:38:11 +02:00
|
|
|
void cDvbApi::Fill(int x, int y, int w, int h, eDvbColor color)
|
2000-02-19 13:36:48 +01:00
|
|
|
{
|
2000-03-11 11:22:37 +01:00
|
|
|
if (x < 0) x = cols + x;
|
|
|
|
if (y < 0) y = rows + y;
|
|
|
|
#ifdef DEBUG_OSD
|
|
|
|
SetColor(color, color);
|
|
|
|
for (int r = 0; r < h; r++) {
|
|
|
|
wmove(window, y + r, x); // ncurses wants 'y' before 'x'!
|
|
|
|
whline(window, ' ', w);
|
|
|
|
}
|
2000-04-22 13:51:48 +02:00
|
|
|
wsyncup(window); // shouldn't be necessary because of 'syncok()', but w/o it doesn't work
|
2000-03-11 11:22:37 +01:00
|
|
|
#else
|
2000-10-03 10:34:48 +02:00
|
|
|
osd->Fill(x * charWidth, y * lineHeight, (x + w) * charWidth - 1, (y + h) * lineHeight - 1, color);
|
2000-03-11 11:22:37 +01:00
|
|
|
#endif
|
2000-02-19 13:36:48 +01:00
|
|
|
}
|
|
|
|
|
2000-12-09 11:13:00 +01:00
|
|
|
void cDvbApi::SetBitmap(int x, int y, const cBitmap &Bitmap)
|
|
|
|
{
|
|
|
|
#ifndef DEBUG_OSD
|
|
|
|
osd->SetBitmap(x, y, Bitmap);
|
|
|
|
#endif
|
|
|
|
}
|
|
|
|
|
2000-04-15 17:38:11 +02:00
|
|
|
void cDvbApi::ClrEol(int x, int y, eDvbColor color)
|
2000-02-19 13:36:48 +01:00
|
|
|
{
|
2000-03-11 11:22:37 +01:00
|
|
|
Fill(x, y, cols - x, 1, color);
|
2000-02-19 13:36:48 +01:00
|
|
|
}
|
|
|
|
|
2000-11-01 11:45:05 +01:00
|
|
|
int cDvbApi::CellWidth(void)
|
|
|
|
{
|
|
|
|
#ifdef DEBUG_OSD
|
|
|
|
return 1;
|
|
|
|
#else
|
|
|
|
return charWidth;
|
|
|
|
#endif
|
|
|
|
}
|
|
|
|
|
2000-12-09 11:13:00 +01:00
|
|
|
int cDvbApi::LineHeight(void)
|
|
|
|
{
|
|
|
|
#ifdef DEBUG_OSD
|
|
|
|
return 1;
|
|
|
|
#else
|
|
|
|
return lineHeight;
|
|
|
|
#endif
|
|
|
|
}
|
|
|
|
|
2000-11-01 11:45:05 +01:00
|
|
|
int cDvbApi::Width(unsigned char c)
|
|
|
|
{
|
|
|
|
#ifdef DEBUG_OSD
|
|
|
|
return 1;
|
|
|
|
#else
|
|
|
|
return osd->Width(c);
|
|
|
|
#endif
|
|
|
|
}
|
|
|
|
|
2000-11-05 13:04:23 +01:00
|
|
|
int cDvbApi::WidthInCells(const char *s)
|
|
|
|
{
|
|
|
|
#ifdef DEBUG_OSD
|
|
|
|
return strlen(s);
|
|
|
|
#else
|
|
|
|
return (osd->Width(s) + charWidth - 1) / charWidth;
|
|
|
|
#endif
|
|
|
|
}
|
|
|
|
|
2000-11-18 15:46:00 +01:00
|
|
|
eDvbFont cDvbApi::SetFont(eDvbFont Font)
|
|
|
|
{
|
|
|
|
#ifdef DEBUG_OSD
|
|
|
|
return Font;
|
|
|
|
#else
|
|
|
|
return osd->SetFont(Font);
|
|
|
|
#endif
|
|
|
|
}
|
|
|
|
|
2000-04-15 17:38:11 +02:00
|
|
|
void cDvbApi::Text(int x, int y, const char *s, eDvbColor colorFg, eDvbColor colorBg)
|
2000-02-19 13:36:48 +01:00
|
|
|
{
|
2000-03-11 11:22:37 +01:00
|
|
|
if (x < 0) x = cols + x;
|
|
|
|
if (y < 0) y = rows + y;
|
|
|
|
#ifdef DEBUG_OSD
|
|
|
|
SetColor(colorFg, colorBg);
|
|
|
|
wmove(window, y, x); // ncurses wants 'y' before 'x'!
|
2000-10-03 13:37:24 +02:00
|
|
|
waddnstr(window, s, cols - x);
|
2000-03-11 11:22:37 +01:00
|
|
|
#else
|
2000-10-03 10:34:48 +02:00
|
|
|
osd->Text(x * charWidth, y * lineHeight, s, colorFg, colorBg);
|
|
|
|
#endif
|
|
|
|
}
|
|
|
|
|
|
|
|
void cDvbApi::Flush(void)
|
|
|
|
{
|
|
|
|
#ifndef DEBUG_OSD
|
|
|
|
if (osd)
|
|
|
|
osd->Flush();
|
2000-03-11 11:22:37 +01:00
|
|
|
#endif
|
2000-02-19 13:36:48 +01:00
|
|
|
}
|
2000-04-15 17:38:11 +02:00
|
|
|
|
2001-02-03 16:28:03 +01:00
|
|
|
bool cDvbApi::SetChannel(int ChannelNumber, int FrequencyMHz, char Polarization, int Diseqc, int Srate, int Vpid, int Apid, int Tpid, int Ca, int Pnr)
|
2000-04-15 17:38:11 +02:00
|
|
|
{
|
|
|
|
if (videoDev >= 0) {
|
2001-01-18 17:03:34 +01:00
|
|
|
cThreadLock ThreadLock(siProcessor); // makes sure the siProcessor won't access the vbi-device while switching
|
2000-11-19 16:49:14 +01:00
|
|
|
StopTransfer();
|
2001-03-03 11:36:36 +01:00
|
|
|
StopReplay();
|
2000-12-08 16:23:32 +01:00
|
|
|
SetPlayMode(videoDev, VID_PLAY_RESET);
|
2000-04-15 17:38:11 +02:00
|
|
|
struct frontend front;
|
|
|
|
ioctl(videoDev, VIDIOCGFRONTEND, &front);
|
|
|
|
unsigned int freq = FrequencyMHz;
|
2001-02-24 11:55:10 +01:00
|
|
|
if (front.type == FRONT_DVBS) {
|
|
|
|
front.ttk = (freq < 11700UL) ? 0 : 1;
|
|
|
|
if (freq < 11700UL) {
|
|
|
|
freq -= Setup.LnbFrequLo;
|
|
|
|
front.ttk = 0;
|
|
|
|
}
|
|
|
|
else {
|
|
|
|
freq -= Setup.LnbFrequHi;
|
|
|
|
front.ttk = 1;
|
|
|
|
}
|
|
|
|
}
|
2001-01-27 12:13:07 +01:00
|
|
|
front.channel_flags = Ca ? DVB_CHANNEL_CA : DVB_CHANNEL_FTA;
|
|
|
|
front.pnr = Pnr;
|
2000-04-15 17:38:11 +02:00
|
|
|
front.freq = freq * 1000000UL;
|
|
|
|
front.diseqc = Diseqc;
|
|
|
|
front.srate = Srate * 1000;
|
2000-07-16 15:30:48 +02:00
|
|
|
front.volt = (Polarization == 'v' || Polarization == 'V') ? 0 : 1;
|
2000-04-15 17:38:11 +02:00
|
|
|
front.video_pid = Vpid;
|
|
|
|
front.audio_pid = Apid;
|
2001-02-03 16:28:03 +01:00
|
|
|
front.tt_pid = Tpid;
|
2000-04-15 17:38:11 +02:00
|
|
|
front.fec = 8;
|
|
|
|
front.AFC = 1;
|
2001-02-24 11:55:10 +01:00
|
|
|
front.qam = 2;
|
2000-04-15 17:38:11 +02:00
|
|
|
ioctl(videoDev, VIDIOCSFRONTEND, &front);
|
2000-10-29 13:17:22 +01:00
|
|
|
if (front.sync & 0x1F == 0x1F) {
|
2000-11-18 13:57:32 +01:00
|
|
|
if (this == PrimaryDvbApi && siProcessor)
|
2000-10-29 13:17:22 +01:00
|
|
|
siProcessor->SetCurrentServiceID(Pnr);
|
2000-11-05 18:39:17 +01:00
|
|
|
currentChannel = ChannelNumber;
|
2000-11-19 16:49:14 +01:00
|
|
|
// If this DVB card can't receive this channel, let's see if we can
|
|
|
|
// use the card that actually can receive it and transfer data from there:
|
2001-01-20 09:51:51 +01:00
|
|
|
if (this == PrimaryDvbApi && Ca && Ca != Index() + 1) {
|
2000-11-19 16:49:14 +01:00
|
|
|
cDvbApi *CaDvbApi = GetDvbApi(Ca, 0);
|
|
|
|
if (CaDvbApi) {
|
|
|
|
if (!CaDvbApi->Recording()) {
|
2001-02-03 16:28:03 +01:00
|
|
|
if (CaDvbApi->SetChannel(ChannelNumber, FrequencyMHz, Polarization, Diseqc, Srate, Vpid, Apid, Tpid, Ca, Pnr))
|
2000-11-19 16:49:14 +01:00
|
|
|
transferringFromDvbApi = CaDvbApi->StartTransfer(videoDev);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2000-04-15 17:38:11 +02:00
|
|
|
return true;
|
2000-10-29 13:17:22 +01:00
|
|
|
}
|
2001-01-07 17:10:02 +01:00
|
|
|
esyslog(LOG_ERR, "ERROR: channel %d not sync'ed (front.sync=%X)!", ChannelNumber, front.sync);
|
2000-04-15 17:38:11 +02:00
|
|
|
}
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
2000-11-19 16:49:14 +01:00
|
|
|
bool cDvbApi::Transferring(void)
|
|
|
|
{
|
|
|
|
return transferBuffer;
|
|
|
|
}
|
|
|
|
|
|
|
|
cDvbApi *cDvbApi::StartTransfer(int TransferToVideoDev)
|
|
|
|
{
|
|
|
|
StopTransfer();
|
|
|
|
transferBuffer = new cTransferBuffer(videoDev, TransferToVideoDev);
|
|
|
|
return this;
|
|
|
|
}
|
|
|
|
|
|
|
|
void cDvbApi::StopTransfer(void)
|
|
|
|
{
|
|
|
|
if (transferBuffer) {
|
|
|
|
delete transferBuffer;
|
|
|
|
transferBuffer = NULL;
|
2000-12-08 16:23:32 +01:00
|
|
|
SetPlayMode(videoDev, VID_PLAY_RESET);
|
2000-11-19 16:49:14 +01:00
|
|
|
}
|
2001-01-07 17:05:35 +01:00
|
|
|
if (transferringFromDvbApi) {
|
|
|
|
transferringFromDvbApi->StopTransfer();
|
|
|
|
transferringFromDvbApi = NULL;
|
|
|
|
}
|
2000-11-19 16:49:14 +01:00
|
|
|
}
|
|
|
|
|
2000-12-28 12:57:16 +01:00
|
|
|
int cDvbApi::SecondsToFrames(int Seconds)
|
|
|
|
{
|
|
|
|
return Seconds * FRAMESPERSEC;
|
|
|
|
}
|
|
|
|
|
2000-04-15 17:38:11 +02:00
|
|
|
bool cDvbApi::Recording(void)
|
|
|
|
{
|
2000-12-08 16:23:32 +01:00
|
|
|
if (recordBuffer && !recordBuffer->Active())
|
|
|
|
StopRecord();
|
|
|
|
return recordBuffer != NULL;
|
2000-04-15 17:38:11 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
bool cDvbApi::Replaying(void)
|
|
|
|
{
|
2000-12-08 16:23:32 +01:00
|
|
|
if (replayBuffer && !replayBuffer->Active())
|
|
|
|
StopReplay();
|
|
|
|
return replayBuffer != NULL;
|
2000-04-15 17:38:11 +02:00
|
|
|
}
|
|
|
|
|
2000-11-12 14:06:53 +01:00
|
|
|
bool cDvbApi::StartRecord(const char *FileName, int Ca, int Priority)
|
2000-04-15 17:38:11 +02:00
|
|
|
{
|
|
|
|
if (Recording()) {
|
|
|
|
esyslog(LOG_ERR, "ERROR: StartRecord() called while recording - ignored!");
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
if (videoDev >= 0) {
|
|
|
|
|
2000-11-19 16:49:14 +01:00
|
|
|
StopTransfer();
|
|
|
|
|
2000-12-08 16:23:32 +01:00
|
|
|
StopReplay(); // TODO: remove this if the driver is able to do record and replay at the same time
|
2000-05-01 16:29:46 +02:00
|
|
|
|
2000-04-15 17:38:11 +02:00
|
|
|
// Check FileName:
|
|
|
|
|
|
|
|
if (!FileName) {
|
|
|
|
esyslog(LOG_ERR, "ERROR: StartRecord: file name is (null)");
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
isyslog(LOG_INFO, "record %s", FileName);
|
|
|
|
|
|
|
|
// Create directories if necessary:
|
|
|
|
|
|
|
|
if (!MakeDirs(FileName, true))
|
|
|
|
return false;
|
|
|
|
|
2000-12-08 16:23:32 +01:00
|
|
|
// Create recording buffer:
|
2000-04-15 17:38:11 +02:00
|
|
|
|
2000-12-08 16:23:32 +01:00
|
|
|
recordBuffer = new cRecordBuffer(&videoDev, FileName);
|
2000-04-15 17:38:11 +02:00
|
|
|
|
2000-12-08 16:23:32 +01:00
|
|
|
if (recordBuffer) {
|
|
|
|
ca = Ca;
|
|
|
|
priority = Priority;
|
|
|
|
return true;
|
2000-04-15 17:38:11 +02:00
|
|
|
}
|
2000-12-08 16:23:32 +01:00
|
|
|
else
|
|
|
|
esyslog(LOG_ERR, "ERROR: can't allocate recording buffer");
|
2000-04-15 17:38:11 +02:00
|
|
|
}
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
void cDvbApi::StopRecord(void)
|
|
|
|
{
|
2000-12-08 16:23:32 +01:00
|
|
|
if (recordBuffer) {
|
|
|
|
delete recordBuffer;
|
|
|
|
recordBuffer = NULL;
|
2000-11-12 14:06:53 +01:00
|
|
|
ca = 0;
|
|
|
|
priority = -1;
|
2000-04-15 17:38:11 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2000-12-09 11:13:00 +01:00
|
|
|
bool cDvbApi::StartReplay(const char *FileName)
|
2000-04-15 17:38:11 +02:00
|
|
|
{
|
|
|
|
if (Recording()) {
|
|
|
|
esyslog(LOG_ERR, "ERROR: StartReplay() called while recording - ignored!");
|
|
|
|
return false;
|
|
|
|
}
|
2000-11-19 16:49:14 +01:00
|
|
|
StopTransfer();
|
2000-12-08 16:23:32 +01:00
|
|
|
StopReplay();
|
2000-04-15 17:38:11 +02:00
|
|
|
if (videoDev >= 0) {
|
|
|
|
|
|
|
|
// Check FileName:
|
|
|
|
|
|
|
|
if (!FileName) {
|
|
|
|
esyslog(LOG_ERR, "ERROR: StartReplay: file name is (null)");
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
isyslog(LOG_INFO, "replay %s", FileName);
|
|
|
|
|
2000-12-08 16:23:32 +01:00
|
|
|
// Create replay buffer:
|
2000-04-15 17:38:11 +02:00
|
|
|
|
2000-12-08 16:23:32 +01:00
|
|
|
replayBuffer = new cReplayBuffer(&videoDev, FileName);
|
|
|
|
if (replayBuffer)
|
|
|
|
return true;
|
|
|
|
else
|
|
|
|
esyslog(LOG_ERR, "ERROR: can't allocate replaying buffer");
|
2000-04-15 17:38:11 +02:00
|
|
|
}
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
2000-12-08 16:23:32 +01:00
|
|
|
void cDvbApi::StopReplay(void)
|
2000-04-15 17:38:11 +02:00
|
|
|
{
|
2000-12-08 16:23:32 +01:00
|
|
|
if (replayBuffer) {
|
|
|
|
delete replayBuffer;
|
|
|
|
replayBuffer = NULL;
|
2000-04-15 17:38:11 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2000-07-30 16:14:22 +02:00
|
|
|
void cDvbApi::Pause(void)
|
|
|
|
{
|
2000-12-08 16:23:32 +01:00
|
|
|
if (replayBuffer)
|
|
|
|
replayBuffer->Pause();
|
2000-07-30 16:14:22 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
void cDvbApi::Play(void)
|
2000-04-15 17:38:11 +02:00
|
|
|
{
|
2000-12-08 16:23:32 +01:00
|
|
|
if (replayBuffer)
|
|
|
|
replayBuffer->Play();
|
2000-04-15 17:38:11 +02:00
|
|
|
}
|
|
|
|
|
2000-07-30 16:14:22 +02:00
|
|
|
void cDvbApi::Forward(void)
|
2000-04-15 17:38:11 +02:00
|
|
|
{
|
2000-12-08 16:23:32 +01:00
|
|
|
if (replayBuffer)
|
|
|
|
replayBuffer->Forward();
|
2000-04-15 17:38:11 +02:00
|
|
|
}
|
|
|
|
|
2000-07-30 16:14:22 +02:00
|
|
|
void cDvbApi::Backward(void)
|
2000-04-15 17:38:11 +02:00
|
|
|
{
|
2000-12-08 16:23:32 +01:00
|
|
|
if (replayBuffer)
|
|
|
|
replayBuffer->Backward();
|
2000-04-15 17:38:11 +02:00
|
|
|
}
|
|
|
|
|
2000-12-28 12:57:16 +01:00
|
|
|
void cDvbApi::SkipSeconds(int Seconds)
|
2000-04-15 17:38:11 +02:00
|
|
|
{
|
2000-12-08 16:23:32 +01:00
|
|
|
if (replayBuffer)
|
|
|
|
replayBuffer->SkipSeconds(Seconds);
|
2000-04-15 17:38:11 +02:00
|
|
|
}
|
|
|
|
|
2000-12-28 12:57:16 +01:00
|
|
|
int cDvbApi::SkipFrames(int Frames)
|
|
|
|
{
|
|
|
|
if (replayBuffer)
|
|
|
|
return replayBuffer->SkipFrames(Frames);
|
|
|
|
return -1;
|
|
|
|
}
|
|
|
|
|
|
|
|
bool cDvbApi::GetIndex(int &Current, int &Total, bool SnapToIFrame)
|
2000-04-23 15:38:16 +02:00
|
|
|
{
|
2000-12-08 16:23:32 +01:00
|
|
|
if (replayBuffer) {
|
2000-12-28 12:57:16 +01:00
|
|
|
replayBuffer->GetIndex(Current, Total, SnapToIFrame);
|
2000-12-08 16:23:32 +01:00
|
|
|
return true;
|
2000-04-23 15:38:16 +02:00
|
|
|
}
|
2000-04-24 15:32:11 +02:00
|
|
|
return false;
|
2000-04-23 15:38:16 +02:00
|
|
|
}
|
|
|
|
|
2001-01-07 17:00:50 +01:00
|
|
|
void cDvbApi::Goto(int Position, bool Still)
|
2000-12-28 12:57:16 +01:00
|
|
|
{
|
|
|
|
if (replayBuffer)
|
2001-01-07 17:00:50 +01:00
|
|
|
replayBuffer->Goto(Position, Still);
|
2000-12-28 12:57:16 +01:00
|
|
|
}
|
|
|
|
|
2000-11-18 13:57:32 +01:00
|
|
|
// --- cEITScanner -----------------------------------------------------------
|
|
|
|
|
|
|
|
cEITScanner::cEITScanner(void)
|
|
|
|
{
|
|
|
|
lastScan = lastActivity = time(NULL);
|
|
|
|
currentChannel = 0;
|
2001-01-20 09:55:23 +01:00
|
|
|
lastChannel = 0;
|
2001-02-03 17:44:25 +01:00
|
|
|
numTransponders = 0;
|
|
|
|
transponders = NULL;
|
|
|
|
}
|
|
|
|
|
|
|
|
cEITScanner::~cEITScanner()
|
|
|
|
{
|
|
|
|
delete transponders;
|
|
|
|
}
|
|
|
|
|
|
|
|
bool cEITScanner::TransponderScanned(cChannel *Channel)
|
|
|
|
{
|
|
|
|
for (int i = 0; i < numTransponders; i++) {
|
|
|
|
if (transponders[i] == Channel->frequency)
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
transponders = (int *)realloc(transponders, ++numTransponders * sizeof(int));
|
|
|
|
transponders[numTransponders - 1] = Channel->frequency;
|
|
|
|
return false;
|
2000-11-18 13:57:32 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
void cEITScanner::Activity(void)
|
|
|
|
{
|
|
|
|
if (currentChannel) {
|
|
|
|
Channels.SwitchTo(currentChannel);
|
|
|
|
currentChannel = 0;
|
|
|
|
}
|
|
|
|
lastActivity = time(NULL);
|
|
|
|
}
|
|
|
|
|
|
|
|
void cEITScanner::Process(void)
|
|
|
|
{
|
2001-02-24 12:18:30 +01:00
|
|
|
if (Setup.EPGScanTimeout && Channels.MaxNumber() > 1) {
|
2000-11-18 13:57:32 +01:00
|
|
|
time_t now = time(NULL);
|
|
|
|
if (now - lastScan > ScanTimeout && now - lastActivity > ActivityTimeout) {
|
|
|
|
for (int i = 0; i < cDvbApi::NumDvbApis; i++) {
|
|
|
|
cDvbApi *DvbApi = cDvbApi::GetDvbApi(i, 0);
|
|
|
|
if (DvbApi) {
|
|
|
|
if (DvbApi != cDvbApi::PrimaryDvbApi || (cDvbApi::NumDvbApis == 1 && Setup.EPGScanTimeout && now - lastActivity > Setup.EPGScanTimeout * 3600)) {
|
2000-11-19 16:49:14 +01:00
|
|
|
if (!(DvbApi->Recording() || DvbApi->Replaying() || DvbApi->Transferring())) {
|
2000-11-18 13:57:32 +01:00
|
|
|
int oldCh = lastChannel;
|
|
|
|
int ch = oldCh + 1;
|
|
|
|
while (ch != oldCh) {
|
2001-02-03 17:44:25 +01:00
|
|
|
if (ch > Channels.MaxNumber()) {
|
2000-11-18 13:57:32 +01:00
|
|
|
ch = 1;
|
2001-02-03 17:44:25 +01:00
|
|
|
numTransponders = 0;
|
|
|
|
}
|
2000-11-18 13:57:32 +01:00
|
|
|
cChannel *Channel = Channels.GetByNumber(ch);
|
2001-02-03 17:44:25 +01:00
|
|
|
if (Channel && Channel->pnr && !TransponderScanned(Channel)) {
|
2000-11-18 13:57:32 +01:00
|
|
|
if (DvbApi == cDvbApi::PrimaryDvbApi && !currentChannel)
|
|
|
|
currentChannel = DvbApi->Channel();
|
|
|
|
Channel->Switch(DvbApi, false);
|
|
|
|
lastChannel = ch;
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
ch++;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
lastScan = time(NULL);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|