2000-03-11 11:22:37 +01:00
|
|
|
/*
|
|
|
|
* recording.h: Recording file handling
|
|
|
|
*
|
2000-04-24 09:46:05 +02:00
|
|
|
* See the main source file 'vdr.c' for copyright information and
|
2000-03-11 11:22:37 +01:00
|
|
|
* how to reach the author.
|
|
|
|
*
|
2012-03-13 13:22:06 +01:00
|
|
|
* $Id: recording.h 2.30 2012/03/13 12:41:05 kls Exp $
|
2000-03-11 11:22:37 +01:00
|
|
|
*/
|
|
|
|
|
|
|
|
#ifndef __RECORDING_H
|
|
|
|
#define __RECORDING_H
|
|
|
|
|
|
|
|
#include <time.h>
|
2005-05-28 09:53:54 +02:00
|
|
|
#include "channels.h"
|
2000-03-11 11:22:37 +01:00
|
|
|
#include "config.h"
|
2005-05-16 14:45:11 +02:00
|
|
|
#include "epg.h"
|
2003-09-09 16:09:05 +02:00
|
|
|
#include "thread.h"
|
2002-10-20 12:28:55 +02:00
|
|
|
#include "timers.h"
|
2000-03-11 11:22:37 +01:00
|
|
|
#include "tools.h"
|
|
|
|
|
2010-01-17 12:08:03 +01:00
|
|
|
#define FOLDERDELIMCHAR '~'
|
2010-03-07 14:15:04 +01:00
|
|
|
#define TIMERMACRO_TITLE "TITLE"
|
|
|
|
#define TIMERMACRO_EPISODE "EPISODE"
|
2010-01-17 12:08:03 +01:00
|
|
|
|
2012-03-11 15:30:19 +01:00
|
|
|
//#define __RECORDING_H_DEPRECATED_DIRECT_MEMBER_ACCESS // Code enclosed with this macro is deprecated and may be removed in a future version
|
2011-08-21 11:34:30 +02:00
|
|
|
|
2005-09-03 13:35:55 +02:00
|
|
|
extern bool VfatFileSystem;
|
2009-01-18 11:10:29 +01:00
|
|
|
extern int InstanceId;
|
2005-09-03 13:35:55 +02:00
|
|
|
|
2001-02-04 12:36:32 +01:00
|
|
|
void RemoveDeletedRecordings(void);
|
2006-01-20 17:19:46 +01:00
|
|
|
void AssertFreeDiskSpace(int Priority = 0, bool Force = false);
|
2003-08-17 09:18:40 +02:00
|
|
|
///< The special Priority value -1 means that we shall get rid of any
|
|
|
|
///< deleted recordings faster than normal (because we're cutting).
|
2006-01-20 17:19:46 +01:00
|
|
|
///< If Force is true, the check will be done even if the timeout
|
|
|
|
///< hasn't expired yet.
|
2000-03-11 11:22:37 +01:00
|
|
|
|
2001-02-11 11:04:41 +01:00
|
|
|
class cResumeFile {
|
|
|
|
private:
|
|
|
|
char *fileName;
|
2009-01-06 14:41:11 +01:00
|
|
|
bool isPesRecording;
|
2001-02-11 11:04:41 +01:00
|
|
|
public:
|
2009-01-06 14:41:11 +01:00
|
|
|
cResumeFile(const char *FileName, bool IsPesRecording);
|
2001-02-11 11:04:41 +01:00
|
|
|
~cResumeFile();
|
|
|
|
int Read(void);
|
|
|
|
bool Save(int Index);
|
|
|
|
void Delete(void);
|
|
|
|
};
|
|
|
|
|
2005-05-16 14:45:11 +02:00
|
|
|
class cRecordingInfo {
|
2005-05-22 09:13:26 +02:00
|
|
|
friend class cRecording;
|
2005-05-16 14:45:11 +02:00
|
|
|
private:
|
2005-05-28 09:53:54 +02:00
|
|
|
tChannelID channelID;
|
2007-06-17 13:13:47 +02:00
|
|
|
char *channelName;
|
2005-05-16 14:45:11 +02:00
|
|
|
const cEvent *event;
|
|
|
|
cEvent *ownEvent;
|
2006-02-25 12:09:22 +01:00
|
|
|
char *aux;
|
2009-01-06 14:41:11 +01:00
|
|
|
double framesPerSecond;
|
|
|
|
int priority;
|
|
|
|
int lifetime;
|
|
|
|
char *fileName;
|
2006-02-18 16:03:40 +01:00
|
|
|
cRecordingInfo(const cChannel *Channel = NULL, const cEvent *Event = NULL);
|
2011-04-03 11:22:16 +02:00
|
|
|
bool Read(FILE *f);
|
2005-05-22 10:43:10 +02:00
|
|
|
void SetData(const char *Title, const char *ShortText, const char *Description);
|
2006-02-25 12:09:22 +01:00
|
|
|
void SetAux(const char *Aux);
|
2005-05-22 09:13:26 +02:00
|
|
|
public:
|
2009-01-06 14:41:11 +01:00
|
|
|
cRecordingInfo(const char *FileName);
|
2005-05-16 14:45:11 +02:00
|
|
|
~cRecordingInfo();
|
2006-12-01 15:09:10 +01:00
|
|
|
tChannelID ChannelID(void) const { return channelID; }
|
2007-06-17 13:13:47 +02:00
|
|
|
const char *ChannelName(void) const { return channelName; }
|
2009-02-28 10:51:42 +01:00
|
|
|
const cEvent *GetEvent(void) const { return event; }
|
2005-05-16 14:45:11 +02:00
|
|
|
const char *Title(void) const { return event->Title(); }
|
|
|
|
const char *ShortText(void) const { return event->ShortText(); }
|
|
|
|
const char *Description(void) const { return event->Description(); }
|
|
|
|
const cComponents *Components(void) const { return event->Components(); }
|
2006-02-25 12:09:22 +01:00
|
|
|
const char *Aux(void) const { return aux; }
|
2009-01-06 14:41:11 +01:00
|
|
|
double FramesPerSecond(void) const { return framesPerSecond; }
|
|
|
|
void SetFramesPerSecond(double FramesPerSecond);
|
2005-05-16 14:45:11 +02:00
|
|
|
bool Write(FILE *f, const char *Prefix = "") const;
|
2009-01-06 14:41:11 +01:00
|
|
|
bool Read(void);
|
|
|
|
bool Write(void) const;
|
2005-05-16 14:45:11 +02:00
|
|
|
};
|
|
|
|
|
2000-03-11 11:22:37 +01:00
|
|
|
class cRecording : public cListObject {
|
2005-12-18 10:41:26 +01:00
|
|
|
friend class cRecordings;
|
2000-04-23 15:38:16 +02:00
|
|
|
private:
|
2004-05-16 10:35:36 +02:00
|
|
|
mutable int resume;
|
|
|
|
mutable char *titleBuffer;
|
2004-11-01 10:40:38 +01:00
|
|
|
mutable char *sortBuffer;
|
2004-05-16 10:35:36 +02:00
|
|
|
mutable char *fileName;
|
|
|
|
mutable char *name;
|
2005-12-18 10:41:26 +01:00
|
|
|
mutable int fileSizeMB;
|
2011-08-21 13:47:07 +02:00
|
|
|
mutable int numFrames;
|
2009-01-06 14:41:11 +01:00
|
|
|
int channel;
|
2009-01-18 11:10:29 +01:00
|
|
|
int instanceId;
|
2009-01-06 14:41:11 +01:00
|
|
|
bool isPesRecording;
|
|
|
|
double framesPerSecond;
|
2005-05-16 14:45:11 +02:00
|
|
|
cRecordingInfo *info;
|
2007-10-14 10:09:08 +02:00
|
|
|
cRecording(const cRecording&); // can't copy cRecording
|
|
|
|
cRecording &operator=(const cRecording &); // can't assign cRecording
|
2004-11-01 10:40:38 +01:00
|
|
|
static char *StripEpisodeName(char *s);
|
|
|
|
char *SortName(void) const;
|
2004-05-16 10:35:36 +02:00
|
|
|
int GetResume(void) const;
|
2011-08-21 11:34:30 +02:00
|
|
|
#ifdef __RECORDING_H_DEPRECATED_DIRECT_MEMBER_ACCESS
|
2000-04-23 15:38:16 +02:00
|
|
|
public:
|
2011-08-21 11:34:30 +02:00
|
|
|
#endif
|
2000-03-11 11:22:37 +01:00
|
|
|
time_t start;
|
|
|
|
int priority;
|
|
|
|
int lifetime;
|
2005-12-18 12:14:11 +01:00
|
|
|
time_t deleted;
|
2011-08-21 11:34:30 +02:00
|
|
|
public:
|
2005-05-16 14:45:11 +02:00
|
|
|
cRecording(cTimer *Timer, const cEvent *Event);
|
2000-03-11 11:22:37 +01:00
|
|
|
cRecording(const char *FileName);
|
2005-09-25 11:00:57 +02:00
|
|
|
virtual ~cRecording();
|
2011-08-21 11:34:30 +02:00
|
|
|
time_t Start(void) const { return start; }
|
|
|
|
int Priority(void) const { return priority; }
|
|
|
|
int Lifetime(void) const { return lifetime; }
|
|
|
|
time_t Deleted(void) const { return deleted; }
|
2004-11-01 10:40:38 +01:00
|
|
|
virtual int Compare(const cListObject &ListObject) const;
|
2004-05-16 10:35:36 +02:00
|
|
|
const char *Name(void) const { return name; }
|
|
|
|
const char *FileName(void) const;
|
|
|
|
const char *Title(char Delimiter = ' ', bool NewIndicator = false, int Level = -1) const;
|
2005-05-16 14:45:11 +02:00
|
|
|
const cRecordingInfo *Info(void) const { return info; }
|
2001-09-01 13:38:09 +02:00
|
|
|
const char *PrefixFileName(char Prefix);
|
2004-05-16 10:35:36 +02:00
|
|
|
int HierarchyLevels(void) const;
|
2005-09-25 11:35:56 +02:00
|
|
|
void ResetResume(void) const;
|
2009-04-19 09:02:16 +02:00
|
|
|
double FramesPerSecond(void) const { return framesPerSecond; }
|
2011-08-21 13:47:07 +02:00
|
|
|
int NumFrames(void) const;
|
|
|
|
///< Returns the number of frames in this recording.
|
|
|
|
///< If the number of frames is unknown, -1 will be returned.
|
|
|
|
int LengthInSeconds(void) const;
|
|
|
|
///< Returns the length (in seconds) of this recording, or -1 in case of error.
|
2012-03-13 13:22:06 +01:00
|
|
|
int FileSizeMB(void) const;
|
|
|
|
///< Returns the total file size of this recording (in MB), or -1 if the file
|
|
|
|
///< size is unknown.
|
2004-05-16 10:35:36 +02:00
|
|
|
bool IsNew(void) const { return GetResume() <= 0; }
|
|
|
|
bool IsEdited(void) const;
|
2009-01-06 14:41:11 +01:00
|
|
|
bool IsPesRecording(void) const { return isPesRecording; }
|
2010-12-27 12:25:19 +01:00
|
|
|
void ReadInfo(void);
|
2005-05-16 14:45:11 +02:00
|
|
|
bool WriteInfo(void);
|
2011-08-20 10:09:05 +02:00
|
|
|
void SetStartTime(time_t Start);
|
|
|
|
///< Sets the start time of this recording to the given value.
|
|
|
|
///< If a filename has already been set for this recording, it will be
|
|
|
|
///< deleted and a new one will be generated (using the new start time)
|
|
|
|
///< at the next call to FileName().
|
|
|
|
///< Use this function with care - it does not check whether a recording with
|
|
|
|
///< this new name already exists, and if there is one, results may be
|
|
|
|
///< unexpected!
|
2000-03-11 11:22:37 +01:00
|
|
|
bool Delete(void);
|
2011-08-13 12:51:23 +02:00
|
|
|
///< Changes the file name so that it will no longer be visible in the "Recordings" menu
|
|
|
|
///< Returns false in case of error
|
2000-03-11 11:22:37 +01:00
|
|
|
bool Remove(void);
|
2011-08-13 12:51:23 +02:00
|
|
|
///< Actually removes the file from the disk
|
|
|
|
///< Returns false in case of error
|
2007-10-14 10:23:19 +02:00
|
|
|
bool Undelete(void);
|
2011-08-13 12:51:23 +02:00
|
|
|
///< Changes the file name so that it will be visible in the "Recordings" menu again and
|
|
|
|
///< not processed by cRemoveDeletedRecordingsThread.
|
|
|
|
///< Returns false in case of error
|
2000-03-11 11:22:37 +01:00
|
|
|
};
|
|
|
|
|
2005-09-25 11:00:57 +02:00
|
|
|
class cRecordings : public cList<cRecording>, public cThread {
|
2004-06-13 20:26:51 +02:00
|
|
|
private:
|
2005-10-01 10:33:38 +02:00
|
|
|
static char *updateFileName;
|
2004-06-13 20:26:51 +02:00
|
|
|
bool deleted;
|
|
|
|
time_t lastUpdate;
|
2005-09-25 11:00:57 +02:00
|
|
|
int state;
|
2005-10-01 10:33:38 +02:00
|
|
|
const char *UpdateFileName(void);
|
2005-09-25 11:00:57 +02:00
|
|
|
void Refresh(bool Foreground = false);
|
2006-02-12 11:46:44 +01:00
|
|
|
void ScanVideoDir(const char *DirName, bool Foreground = false, int LinkLevel = 0);
|
2005-09-25 11:00:57 +02:00
|
|
|
protected:
|
|
|
|
void Action(void);
|
2000-03-11 11:22:37 +01:00
|
|
|
public:
|
2004-06-13 20:26:51 +02:00
|
|
|
cRecordings(bool Deleted = false);
|
2005-09-25 11:00:57 +02:00
|
|
|
virtual ~cRecordings();
|
|
|
|
bool Load(void) { return Update(true); }
|
|
|
|
///< Loads the current list of recordings and returns true if there
|
|
|
|
///< is anything in it (for compatibility with older plugins - use
|
|
|
|
///< Update(true) instead).
|
|
|
|
bool Update(bool Wait = false);
|
|
|
|
///< Triggers an update of the list of recordings, which will run
|
|
|
|
///< as a separate thread if Wait is false. If Wait is true, the
|
|
|
|
///< function returns only after the update has completed.
|
2011-12-04 13:40:52 +01:00
|
|
|
///< Returns true if Wait is true and there is anything in the list
|
2005-09-25 11:00:57 +02:00
|
|
|
///< of recordings, false otherwise.
|
2005-09-25 13:49:31 +02:00
|
|
|
void TouchUpdate(void);
|
|
|
|
///< Touches the '.update' file in the video directory, so that other
|
|
|
|
///< instances of VDR that access the same video directory can be triggered
|
|
|
|
///< to update their recordings list.
|
2004-06-13 20:26:51 +02:00
|
|
|
bool NeedsUpdate(void);
|
2005-09-25 11:00:57 +02:00
|
|
|
void ChangeState(void) { state++; }
|
|
|
|
bool StateChanged(int &State);
|
2005-09-25 11:35:56 +02:00
|
|
|
void ResetResume(const char *ResumeFileName = NULL);
|
2002-01-20 14:05:28 +01:00
|
|
|
cRecording *GetByName(const char *FileName);
|
2006-07-30 10:29:24 +02:00
|
|
|
void AddByName(const char *FileName, bool TriggerUpdate = true);
|
2004-06-13 20:26:51 +02:00
|
|
|
void DelByName(const char *FileName);
|
2010-12-27 12:25:19 +01:00
|
|
|
void UpdateByName(const char *FileName);
|
2012-03-13 13:22:06 +01:00
|
|
|
int TotalFileSizeMB(void);
|
|
|
|
double MBperMinute(void);
|
|
|
|
///< Returns the average data rate (in MB/min) of all recordings, or -1 if
|
|
|
|
///< this value is unknown.
|
2000-03-11 11:22:37 +01:00
|
|
|
};
|
|
|
|
|
2004-06-13 20:26:51 +02:00
|
|
|
extern cRecordings Recordings;
|
2005-12-18 10:41:26 +01:00
|
|
|
extern cRecordings DeletedRecordings;
|
2004-06-13 20:26:51 +02:00
|
|
|
|
2009-01-06 14:41:11 +01:00
|
|
|
#define DEFAULTFRAMESPERSECOND 25.0
|
|
|
|
|
2000-12-28 12:57:16 +01:00
|
|
|
class cMark : public cListObject {
|
2011-08-21 11:34:30 +02:00
|
|
|
friend class cMarks; // for sorting
|
2009-01-06 14:41:11 +01:00
|
|
|
private:
|
|
|
|
double framesPerSecond;
|
2011-08-21 11:34:30 +02:00
|
|
|
#ifdef __RECORDING_H_DEPRECATED_DIRECT_MEMBER_ACCESS
|
2000-12-28 12:57:16 +01:00
|
|
|
public:
|
2011-08-21 11:34:30 +02:00
|
|
|
#endif
|
2000-12-28 12:57:16 +01:00
|
|
|
int position;
|
2011-08-21 11:34:30 +02:00
|
|
|
cString comment;
|
|
|
|
public:
|
2009-01-06 14:41:11 +01:00
|
|
|
cMark(int Position = 0, const char *Comment = NULL, double FramesPerSecond = DEFAULTFRAMESPERSECOND);
|
2005-09-25 11:00:57 +02:00
|
|
|
virtual ~cMark();
|
2011-08-21 11:34:30 +02:00
|
|
|
int Position(void) const { return position; }
|
|
|
|
const char *Comment(void) const { return comment; }
|
|
|
|
void SetPosition(int Position) { position = Position; }
|
|
|
|
void SetComment(const char *Comment) { comment = Comment; }
|
2004-12-26 12:45:22 +01:00
|
|
|
cString ToText(void);
|
2000-12-28 12:57:16 +01:00
|
|
|
bool Parse(const char *s);
|
|
|
|
bool Save(FILE *f);
|
|
|
|
};
|
|
|
|
|
|
|
|
class cMarks : public cConfig<cMark> {
|
2009-01-06 14:41:11 +01:00
|
|
|
private:
|
2011-02-27 13:40:43 +01:00
|
|
|
cString fileName;
|
2009-01-06 14:41:11 +01:00
|
|
|
double framesPerSecond;
|
2011-03-20 11:46:58 +01:00
|
|
|
time_t nextUpdate;
|
2011-02-27 13:40:43 +01:00
|
|
|
time_t lastFileTime;
|
2011-04-17 13:22:44 +02:00
|
|
|
time_t lastChange;
|
2000-12-28 12:57:16 +01:00
|
|
|
public:
|
2009-01-06 14:41:11 +01:00
|
|
|
bool Load(const char *RecordingFileName, double FramesPerSecond = DEFAULTFRAMESPERSECOND, bool IsPesRecording = false);
|
2011-02-27 13:40:43 +01:00
|
|
|
bool Update(void);
|
2000-12-28 12:57:16 +01:00
|
|
|
void Sort(void);
|
|
|
|
cMark *Add(int Position);
|
|
|
|
cMark *Get(int Position);
|
|
|
|
cMark *GetPrev(int Position);
|
|
|
|
cMark *GetNext(int Position);
|
|
|
|
};
|
|
|
|
|
2001-09-23 14:02:11 +02:00
|
|
|
#define RUC_BEFORERECORDING "before"
|
|
|
|
#define RUC_AFTERRECORDING "after"
|
|
|
|
#define RUC_EDITEDRECORDING "edited"
|
|
|
|
|
|
|
|
class cRecordingUserCommand {
|
|
|
|
private:
|
|
|
|
static const char *command;
|
|
|
|
public:
|
|
|
|
static void SetCommand(const char *Command) { command = Command; }
|
|
|
|
static void InvokeCommand(const char *State, const char *RecordingFileName);
|
|
|
|
};
|
|
|
|
|
2005-01-16 15:30:43 +01:00
|
|
|
// The maximum size of a single frame (up to HDTV 1920x1080):
|
2009-08-16 10:45:58 +02:00
|
|
|
#define MAXFRAMESIZE (KILOBYTE(1024) / TS_SIZE * TS_SIZE) // multiple of TS_SIZE to avoid breaking up TS packets
|
2002-06-22 10:11:59 +02:00
|
|
|
|
2002-06-16 12:57:31 +02:00
|
|
|
// The maximum file size is limited by the range that can be covered
|
2009-01-24 15:24:19 +01:00
|
|
|
// with a 40 bit 'unsigned int', which is 1TB. The actual maximum value
|
|
|
|
// used is 6MB below the theoretical maximum, to have some safety (the
|
|
|
|
// actual file size may be slightly higher because we stop recording only
|
|
|
|
// before the next independent frame, to have a complete Group Of Pictures):
|
|
|
|
#define MAXVIDEOFILESIZETS 1048570 // MB
|
|
|
|
#define MAXVIDEOFILESIZEPES 2000 // MB
|
|
|
|
#define MINVIDEOFILESIZE 100 // MB
|
|
|
|
#define MAXVIDEOFILESIZEDEFAULT MAXVIDEOFILESIZEPES
|
2002-06-16 12:57:31 +02:00
|
|
|
|
2009-01-06 14:41:11 +01:00
|
|
|
struct tIndexTs;
|
2009-11-22 11:30:27 +01:00
|
|
|
class cIndexFileGenerator;
|
2009-01-06 14:41:11 +01:00
|
|
|
|
2002-06-16 12:57:31 +02:00
|
|
|
class cIndexFile {
|
|
|
|
private:
|
|
|
|
int f;
|
2011-08-13 11:16:41 +02:00
|
|
|
cString fileName;
|
2002-06-16 12:57:31 +02:00
|
|
|
int size, last;
|
2009-01-06 14:41:11 +01:00
|
|
|
tIndexTs *index;
|
|
|
|
bool isPesRecording;
|
2002-06-16 12:57:31 +02:00
|
|
|
cResumeFile resumeFile;
|
2009-11-22 11:30:27 +01:00
|
|
|
cIndexFileGenerator *indexFileGenerator;
|
2003-09-09 16:09:05 +02:00
|
|
|
cMutex mutex;
|
2011-08-13 11:16:41 +02:00
|
|
|
static cString IndexFileName(const char *FileName, bool IsPesRecording);
|
2009-01-06 14:41:11 +01:00
|
|
|
void ConvertFromPes(tIndexTs *IndexTs, int Count);
|
2009-01-24 13:16:43 +01:00
|
|
|
void ConvertToPes(tIndexTs *IndexTs, int Count);
|
2002-06-16 12:57:31 +02:00
|
|
|
bool CatchUp(int Index = -1);
|
|
|
|
public:
|
2012-02-19 11:50:20 +01:00
|
|
|
cIndexFile(const char *FileName, bool Record, bool IsPesRecording = false, bool PauseLive = false);
|
2002-06-16 12:57:31 +02:00
|
|
|
~cIndexFile();
|
|
|
|
bool Ok(void) { return index != NULL; }
|
2009-01-06 14:41:11 +01:00
|
|
|
bool Write(bool Independent, uint16_t FileNumber, off_t FileOffset);
|
|
|
|
bool Get(int Index, uint16_t *FileNumber, off_t *FileOffset, bool *Independent = NULL, int *Length = NULL);
|
2012-03-12 14:53:59 +01:00
|
|
|
int GetNextIFrame(int Index, bool Forward, uint16_t *FileNumber = NULL, off_t *FileOffset = NULL, int *Length = NULL);
|
2009-01-06 14:41:11 +01:00
|
|
|
int Get(uint16_t FileNumber, off_t FileOffset);
|
2002-06-16 12:57:31 +02:00
|
|
|
int Last(void) { CatchUp(); return last; }
|
|
|
|
int GetResume(void) { return resumeFile.Read(); }
|
|
|
|
bool StoreResume(int Index) { return resumeFile.Save(Index); }
|
2006-04-09 13:57:39 +02:00
|
|
|
bool IsStillRecording(void);
|
2009-11-22 11:30:27 +01:00
|
|
|
void Delete(void);
|
2011-08-13 12:45:42 +02:00
|
|
|
static int GetLength(const char *FileName, bool IsPesRecording = false);
|
2011-12-04 13:40:52 +01:00
|
|
|
///< Calculates the recording length (number of frames) without actually reading the index file.
|
2011-08-13 12:45:42 +02:00
|
|
|
///< Returns -1 in case of error.
|
2002-06-16 12:57:31 +02:00
|
|
|
};
|
|
|
|
|
|
|
|
class cFileName {
|
|
|
|
private:
|
2005-10-31 13:14:26 +01:00
|
|
|
cUnbufferedFile *file;
|
2009-12-06 12:57:45 +01:00
|
|
|
uint16_t fileNumber;
|
2002-06-16 12:57:31 +02:00
|
|
|
char *fileName, *pFileNumber;
|
|
|
|
bool record;
|
|
|
|
bool blocking;
|
2009-01-06 14:41:11 +01:00
|
|
|
bool isPesRecording;
|
2002-06-16 12:57:31 +02:00
|
|
|
public:
|
2009-01-06 14:41:11 +01:00
|
|
|
cFileName(const char *FileName, bool Record, bool Blocking = false, bool IsPesRecording = false);
|
2002-06-16 12:57:31 +02:00
|
|
|
~cFileName();
|
|
|
|
const char *Name(void) { return fileName; }
|
2009-12-06 12:57:45 +01:00
|
|
|
uint16_t Number(void) { return fileNumber; }
|
2009-05-24 15:11:28 +02:00
|
|
|
bool GetLastPatPmtVersions(int &PatVersion, int &PmtVersion);
|
2005-10-31 13:14:26 +01:00
|
|
|
cUnbufferedFile *Open(void);
|
2002-06-16 12:57:31 +02:00
|
|
|
void Close(void);
|
2009-12-06 12:57:45 +01:00
|
|
|
cUnbufferedFile *SetOffset(int Number, off_t Offset = 0); // yes, Number is int for easier internal calculating
|
2005-10-31 13:14:26 +01:00
|
|
|
cUnbufferedFile *NextFile(void);
|
2002-06-16 12:57:31 +02:00
|
|
|
};
|
|
|
|
|
2009-01-06 14:41:11 +01:00
|
|
|
cString IndexToHMSF(int Index, bool WithFrame = false, double FramesPerSecond = DEFAULTFRAMESPERSECOND);
|
2002-06-16 12:57:31 +02:00
|
|
|
// Converts the given index to a string, optionally containing the frame number.
|
2009-01-06 14:41:11 +01:00
|
|
|
int HMSFToIndex(const char *HMSF, double FramesPerSecond = DEFAULTFRAMESPERSECOND);
|
2002-06-16 12:57:31 +02:00
|
|
|
// Converts the given string (format: "hh:mm:ss.ff") to an index.
|
2009-01-06 14:41:11 +01:00
|
|
|
int SecondsToFrames(int Seconds, double FramesPerSecond = DEFAULTFRAMESPERSECOND);
|
2002-06-16 12:57:31 +02:00
|
|
|
// Returns the number of frames corresponding to the given number of seconds.
|
|
|
|
|
2005-10-31 13:14:26 +01:00
|
|
|
int ReadFrame(cUnbufferedFile *f, uchar *b, int Length, int Max);
|
2002-06-22 10:11:59 +02:00
|
|
|
|
2005-09-25 14:31:23 +02:00
|
|
|
char *ExchangeChars(char *s, bool ToFileSystem);
|
|
|
|
// Exchanges the characters in the given string to or from a file system
|
|
|
|
// specific representation (depending on ToFileSystem). The given string will
|
|
|
|
// be modified and may be reallocated if more space is needed. The return
|
|
|
|
// value points to the resulting string, which may be different from s.
|
|
|
|
|
2010-01-02 14:02:48 +01:00
|
|
|
bool GenerateIndex(const char *FileName);
|
|
|
|
|
2000-03-11 11:22:37 +01:00
|
|
|
#endif //__RECORDING_H
|