mirror of
https://github.com/vdr-projects/vdr.git
synced 2025-03-01 10:50:46 +00:00
- Fixed 'Transfer Mode' in cases where a non-primary interface was switched to a channel that only the primary interface can receive (which could happen in the EPG scanner). - The EPG scanner now starts with the first channel (it used to start with the second channel). - Reacitvated setting the PNR. - Adapted the frame scanning to the new muxing of the driver. - The new compile time option REMOTE=NONE can be used to compile VDR without any remote control support (for applications where it shall be controlled exclusively via SVDRP). - The new command line option -D can be used to define which DVB interfaces a certain instance of VDR shall use. - The "Left" and "Right" keys are now used to page up and down in lists (thanks to Martin Hammerschmid). Since the "Timers" menu already uses these keys to (de)activate timers, this functionality is not available there. - The "Main" and "Commands" menu now support "hotkeys", which means that if the first non-blank character of a menu item is a digit in the range 1..9, that item can be selected by pressing the respective numeric key on the remote control. - The channel data in 'channels.conf' now contains the teletext PID (thanks to Dave Chapman). Existing files will be read normally (and the teletext PID set to 0), but once they are written back (due to some channel editing) the file will have the new format. - The EPG scanner now scans each transponder only once per cycle. - Deleted recordings are now automatically removed from disk after a while (not only when disk space is being needed for a new recording). - Fixed repeat function in LIRC remote control. - Changed the MAXDVBAPI macro in dvbapi.c to 4 in order to directly support the maximum possible number of DVB cards. - The 'Ca' parameter in the default 'channels.conf' has been changed from '2' to '3' because the VDR prototype now has 3 DVB cards (and currently the CAM module only works if it is inserted into the last DVB card). - The "Now", "Next" and "Schedule" menus now remember the current channel and restore the list when switching between them. - The "Green" button in the "Recordings" menu can now be used to rewind a recording and play it from the very beginning. - Fixed handling ':' in timer filenames and '\n' in timer summaries (see FORMATS). - When removing recordings empty directories are now removed from the video directory. - Added the "schnitt" tools from Matthias Schniedermeyer. - New SVDRP command MESG to display a short message on the OSD. - The Perl script 'svdrpsend.pl' can be used to send SVDRP commands to VDR. - SVDRP can now immediately reuse the same port if VDR is restarted. - SVDRP now has a timeout after which the connection is automatically closed (default is 300 seconds, can be changed in "Setup"). - The compile time switch VFAT can be used to make VDR avoid the ':' character in file names (VFAT can't handle them). Do 'make VFAT=1' to enable this. - Support for DVB-C (thanks to Hans-Peter Raschke and Peter Hofmann). See the INSTALL file for more information about the use of VDR with cable. - Fixed an occasional segfault in the EIT processor. - A value of '0' for the EPGScanTimeout setup parameter now completely turns off scanning for EPG data on both single and multiple card systems. - New setup parameter "PrimaryLimit" that allows to prevent timers from using the primary DVB interface in multi card systems. Default value is 0, which means that every timer may use the primary interface. - The 'active' field of a timer will now be explicitly set to '1' if the user modifies an active timer (see FORMATS for details). - The new command line option -w can be used to activate a watchdog that makes VDR exit in case the main program loop does not respond for more than the given number of seconds. This is mainly useful in combination with the new 'runvdr' script that restarts VDR in case is has exited.
262 lines
9.0 KiB
C++
262 lines
9.0 KiB
C++
/*
|
|
* dvbapi.h: Interface to the DVB driver
|
|
*
|
|
* See the main source file 'vdr.c' for copyright information and
|
|
* how to reach the author.
|
|
*
|
|
* $Id: dvbapi.h 1.35 2001/02/11 10:41:10 kls Exp $
|
|
*/
|
|
|
|
#ifndef __DVBAPI_H
|
|
#define __DVBAPI_H
|
|
|
|
// FIXME: these should be defined in ../DVB/driver/dvb.h!!!
|
|
typedef unsigned int __u32;
|
|
typedef unsigned short __u16;
|
|
typedef unsigned char __u8;
|
|
|
|
#if defined(DEBUG_OSD) || defined(REMOTE_KBD)
|
|
#include <ncurses.h>
|
|
#endif
|
|
#include <stdio.h>
|
|
#include <dvb.h>
|
|
#include "dvbosd.h"
|
|
#include "eit.h"
|
|
#include "thread.h"
|
|
|
|
// Overlay facilities
|
|
#define MAXCLIPRECTS 100
|
|
typedef struct CRect {
|
|
signed short x, y, width, height;
|
|
};
|
|
|
|
#define MenuLines 15
|
|
#define MenuColumns 40
|
|
|
|
const char *IndexToHMSF(int Index, bool WithFrame = false);
|
|
// Converts the given index to a string, optionally containing the frame number.
|
|
int HMSFToIndex(const char *HMSF);
|
|
// Converts the given string (format: "hh:mm:ss.ff") to an index.
|
|
|
|
class cChannel;
|
|
|
|
class cRecordBuffer;
|
|
class cReplayBuffer;
|
|
class cTransferBuffer;
|
|
class cCuttingBuffer;
|
|
|
|
class cVideoCutter {
|
|
private:
|
|
static cCuttingBuffer *cuttingBuffer;
|
|
public:
|
|
static bool Start(const char *FileName);
|
|
static void Stop(void);
|
|
static bool Active(void);
|
|
};
|
|
|
|
class cDvbApi {
|
|
private:
|
|
int videoDev;
|
|
cDvbApi(const char *VideoFileName, const char *VbiFileName);
|
|
public:
|
|
~cDvbApi();
|
|
|
|
#define MAXDVBAPI 4
|
|
static int NumDvbApis;
|
|
private:
|
|
static cDvbApi *dvbApi[MAXDVBAPI];
|
|
static int useDvbApi;
|
|
public:
|
|
static cDvbApi *PrimaryDvbApi;
|
|
static void SetUseDvbApi(int n);
|
|
// Sets the 'useDvbApi' flag of the given DVB device.
|
|
// If this function is not called before Init(), all DVB devices
|
|
// will be used.
|
|
static bool SetPrimaryDvbApi(int n);
|
|
// Sets the primary DVB device to 'n' (which must be in the range
|
|
// 1...NumDvbApis) and returns true if this was possible.
|
|
static cDvbApi *GetDvbApi(int Ca, int Priority);
|
|
// Selects a free DVB device, starting with the highest device number
|
|
// (but avoiding, if possible, the PrimaryDvbApi).
|
|
// If Ca is not 0, the device with the given number will be returned.
|
|
// If all DVB devices are currently recording, the one recording the
|
|
// lowest priority timer (if any) that is lower than the given Priority
|
|
// will be returned.
|
|
// The caller must check whether the returned DVB device is actually
|
|
// recording and stop recording if necessary.
|
|
int Index(void);
|
|
// Returns the index of this DvbApi.
|
|
static bool Init(void);
|
|
// Initializes the DVB API and probes for existing DVB devices.
|
|
// Must be called before accessing any DVB functions.
|
|
static void Cleanup(void);
|
|
// Closes down all DVB devices.
|
|
// Must be called at the end of the program.
|
|
|
|
// EIT facilities
|
|
|
|
private:
|
|
cSIProcessor *siProcessor;
|
|
public:
|
|
const cSchedules *Schedules(cThreadLock *ThreadLock) const;
|
|
// Caller must provide a cThreadLock which has to survive the entire
|
|
// time the returned cSchedules is accessed. Once the cSchedules is no
|
|
// longer used, the cThreadLock must be destroyed.
|
|
void SetUseTSTime(bool On) { if (siProcessor) siProcessor->SetUseTSTime(On); }
|
|
|
|
// Image Grab facilities
|
|
|
|
bool GrabImage(const char *FileName, bool Jpeg = true, int Quality = -1, int SizeX = -1, int SizeY = -1);
|
|
|
|
// Overlay facilities
|
|
|
|
private:
|
|
bool ovlStat, ovlGeoSet, ovlFbSet;
|
|
int ovlSizeX, ovlSizeY, ovlPosX, ovlPosY, ovlBpp, ovlPalette, ovlClips, ovlClipCount;
|
|
int ovlFbSizeX, ovlFbSizeY;
|
|
__u16 ovlBrightness, ovlColour, ovlHue, ovlContrast;
|
|
struct video_clip ovlClipRects[MAXCLIPRECTS];
|
|
public:
|
|
bool OvlF(int SizeX, int SizeY, int FbAddr, int Bpp, int Palette);
|
|
bool OvlG(int SizeX, int SizeY, int PosX, int PosY);
|
|
bool OvlC(int ClipCount, CRect *Cr);
|
|
bool OvlP(__u16 Brightness, __u16 Color, __u16 Hue, __u16 Contrast);
|
|
bool OvlO(bool Value);
|
|
|
|
// On Screen Display facilities
|
|
|
|
private:
|
|
enum { charWidth = 12, // average character width
|
|
lineHeight = 27 // smallest text height
|
|
};
|
|
#ifdef DEBUG_OSD
|
|
WINDOW *window;
|
|
enum { MaxColorPairs = 16 };
|
|
int colorPairs[MaxColorPairs];
|
|
void SetColor(eDvbColor colorFg, eDvbColor colorBg = clrBackground);
|
|
#else
|
|
cDvbOsd *osd;
|
|
#endif
|
|
int cols, rows;
|
|
void Cmd(OSD_Command cmd, int color = 0, int x0 = 0, int y0 = 0, int x1 = 0, int y1 = 0, const void *data = NULL);
|
|
public:
|
|
void Open(int w, int h);
|
|
void Close(void);
|
|
void Clear(void);
|
|
void Fill(int x, int y, int w, int h, eDvbColor color = clrBackground);
|
|
void SetBitmap(int x, int y, const cBitmap &Bitmap);
|
|
void ClrEol(int x, int y, eDvbColor color = clrBackground);
|
|
int CellWidth(void);
|
|
int LineHeight(void);
|
|
int Width(unsigned char c);
|
|
int WidthInCells(const char *s);
|
|
eDvbFont SetFont(eDvbFont Font);
|
|
void Text(int x, int y, const char *s, eDvbColor colorFg = clrWhite, eDvbColor colorBg = clrBackground);
|
|
void Flush(void);
|
|
|
|
// Channel facilities
|
|
|
|
private:
|
|
int currentChannel;
|
|
public:
|
|
bool SetChannel(int ChannelNumber, int FrequencyMHz, char Polarization, int Diseqc, int Srate, int Vpid, int Apid, int Tpid, int Ca, int Pnr);
|
|
static int CurrentChannel(void) { return PrimaryDvbApi ? PrimaryDvbApi->currentChannel : 0; }
|
|
int Channel(void) { return currentChannel; }
|
|
|
|
// Transfer facilities
|
|
|
|
private:
|
|
cTransferBuffer *transferBuffer;
|
|
cDvbApi *transferringFromDvbApi;
|
|
public:
|
|
bool Transferring(void);
|
|
// Returns true if we are currently transferring video data.
|
|
private:
|
|
cDvbApi *StartTransfer(int TransferToVideoDev);
|
|
// Starts transferring video data from this DVB device to TransferToVideoDev.
|
|
void StopTransfer(void);
|
|
// Stops transferring video data (in case a transfer is currently active).
|
|
|
|
// Record/Replay facilities
|
|
|
|
private:
|
|
cRecordBuffer *recordBuffer;
|
|
cReplayBuffer *replayBuffer;
|
|
int ca;
|
|
int priority;
|
|
protected:
|
|
int Ca(void) { return ca; }
|
|
// Returns the ca of the current recording session (0..MAXDVBAPI).
|
|
int Priority(void) { return priority; }
|
|
// Returns the priority of the current recording session (0..99),
|
|
// or -1 if no recording is currently active.
|
|
public:
|
|
int SecondsToFrames(int Seconds);
|
|
// Returns the number of frames corresponding to the given number of seconds.
|
|
bool Recording(void);
|
|
// Returns true if we are currently recording.
|
|
bool Replaying(void);
|
|
// Returns true if we are currently replaying.
|
|
bool StartRecord(const char *FileName, int Ca, int Priority);
|
|
// Starts recording the current channel into the given file, with
|
|
// the given ca and priority.
|
|
// In order to be able to record longer movies,
|
|
// a numerical suffix will be appended to the file name. The inital
|
|
// value of that suffix will be larger than any existing file under
|
|
// the given name, thus allowing an interrupted recording to continue
|
|
// gracefully.
|
|
// Returns true if recording was started successfully.
|
|
// If there is already a recording session active, false will be
|
|
// returned.
|
|
void StopRecord(void);
|
|
// Stops the current recording session (if any).
|
|
bool StartReplay(const char *FileName);
|
|
// Starts replaying the given file.
|
|
// If there is already a replay session active, it will be stopped
|
|
// and the new file will be played back.
|
|
void StopReplay(void);
|
|
// Stops the current replay session (if any).
|
|
void Pause(void);
|
|
// Pauses the current replay session, or resumes a paused session.
|
|
void Play(void);
|
|
// Resumes normal replay mode.
|
|
void Forward(void);
|
|
// Runs the current replay session forward at a higher speed.
|
|
void Backward(void);
|
|
// Runs the current replay session backwards at a higher speed.
|
|
void SkipSeconds(int Seconds);
|
|
// Skips the given number of seconds in the current replay session.
|
|
// The sign of 'Seconds' determines the direction in which to skip.
|
|
// Use a very large negative value to go all the way back to the
|
|
// beginning of the recording.
|
|
int SkipFrames(int Frames);
|
|
// Returns the new index into the current replay session after skipping
|
|
// the given number of frames (no actual repositioning is done!).
|
|
// The sign of 'Frames' determines the direction in which to skip.
|
|
bool GetIndex(int &Current, int &Total, bool SnapToIFrame = false);
|
|
// Returns the current and total frame index, optionally snapped to the
|
|
// nearest I-frame.
|
|
void Goto(int Index, bool Still = false);
|
|
// Positions to the given index and displays that frame as a still picture
|
|
// if Still is true.
|
|
};
|
|
|
|
class cEITScanner {
|
|
private:
|
|
enum { ActivityTimeout = 60,
|
|
ScanTimeout = 20
|
|
};
|
|
time_t lastScan, lastActivity;
|
|
int currentChannel, lastChannel;
|
|
int numTransponders, *transponders;
|
|
bool TransponderScanned(cChannel *Channel);
|
|
public:
|
|
cEITScanner(void);
|
|
~cEITScanner();
|
|
bool Active(void) { return currentChannel; }
|
|
void Activity(void);
|
|
void Process(void);
|
|
};
|
|
|
|
#endif //__DVBAPI_H
|