vdr-plugin-streamdev/common.h

85 lines
1.4 KiB
C
Raw Normal View History

2004-12-30 23:43:55 +01:00
/*
2010-12-02 09:57:17 +01:00
* $Id: common.h,v 1.16 2010/07/19 13:49:24 schmirl Exp $
2004-12-30 23:43:55 +01:00
*/
#ifndef VDR_STREAMDEV_COMMON_H
#define VDR_STREAMDEV_COMMON_H
/* FreeBSD has it's own version of isnumber(),
but VDR's version is incompatible */
#ifdef __FreeBSD__
#undef isnumber
#endif
2004-12-30 23:43:55 +01:00
#include <vdr/tools.h>
#include <vdr/plugin.h>
#include "tools/socket.h"
#ifdef DEBUG
# include <stdio.h>
# define Dprintf(x...) fprintf(stderr, x)
#else
# define Dprintf(x...)
#endif
#if APIVERSNUM >= 10714
#define TRANSPONDER(c1, c2) (c1->Transponder() == c2->Transponder() && !c1->IsSourceType('V'))
#else
#define TRANSPONDER(c1, c2) (c1->Transponder() == c2->Transponder())
#endif
2004-12-30 23:43:55 +01:00
#define MAXPARSEBUFFER KILOBYTE(16)
2005-11-06 17:43:58 +01:00
2004-12-30 23:43:55 +01:00
/* Check if a channel is a radio station. */
#define ISRADIO(x) ((x)->Vpid()==0||(x)->Vpid()==1||(x)->Vpid()==0x1fff)
class cChannel;
enum eStreamType {
stTS,
stPES,
stPS,
stES,
2010-12-02 09:57:17 +01:00
stEXT,
2005-02-08 16:34:38 +01:00
stTSPIDS,
st_Count
2004-12-30 23:43:55 +01:00
};
enum eSuspendMode {
smOffer,
smAlways,
smNever,
sm_Count
};
enum eSocketId {
siLive,
siReplay,
2007-04-24 12:50:13 +02:00
siLiveFilter,
siDataRespond,
2004-12-30 23:43:55 +01:00
si_Count
};
extern const char *VERSION;
class cMenuEditIpItem: public cMenuEditItem {
private:
static const char IpCharacters[];
2004-12-30 23:43:55 +01:00
char *value;
int curNum;
int pos;
bool step;
protected:
virtual void Set(void);
public:
cMenuEditIpItem(const char *Name, char *Value); // Value must be 16 bytes
~cMenuEditIpItem();
virtual eOSState ProcessKey(eKeys Key);
};
#endif // VDR_STREAMDEV_COMMON_H