mirror of
https://github.com/vdr-projects/vdr.git
synced 2025-03-01 10:50:46 +00:00
Version 0.03
- Actual record/replay now works. - Dropped the idea of different "recording qualities" (a 36GB harddisk is able to store some 18 hours in full quality, so we don't really need that). - Termination signals are now caught and the program cleans up before exiting. - Support for CICAM.
This commit is contained in:
@@ -4,7 +4,7 @@
|
||||
* See the main source file 'osm.c' for copyright information and
|
||||
* how to reach the author.
|
||||
*
|
||||
* $Id: recording.h 1.1 2000/03/05 15:57:27 kls Exp $
|
||||
* $Id: recording.h 1.2 2000/04/14 15:12:42 kls Exp $
|
||||
*/
|
||||
|
||||
#ifndef __RECORDING_H
|
||||
@@ -15,21 +15,16 @@
|
||||
#include "dvbapi.h"
|
||||
#include "tools.h"
|
||||
|
||||
extern cDvbRecorder *Recorder;
|
||||
|
||||
void AssertFreeDiskSpace(void);
|
||||
|
||||
class cRecording : public cListObject {
|
||||
private:
|
||||
bool AssertRecorder(void);
|
||||
public:
|
||||
char *name;
|
||||
char *fileName;
|
||||
time_t start;
|
||||
char quality;
|
||||
int priority;
|
||||
int lifetime;
|
||||
cRecording(const char *Name, time_t Start, char Quality, int Priority, int LifeTime);
|
||||
cRecording(const char *Name, time_t Start, int Priority, int LifeTime);
|
||||
cRecording(cTimer *Timer);
|
||||
cRecording(const char *FileName);
|
||||
~cRecording();
|
||||
|
||||
Reference in New Issue
Block a user