]> git.vomp.tv Git - vompclient.git/blob - defines.h
First Windows porting changes after adding scraper support
[vompclient.git] / defines.h
1 /*
2     Copyright 2004-2005 Chris Tallon
3
4     This file is part of VOMP.
5
6     VOMP is free software; you can redistribute it and/or modify
7     it under the terms of the GNU General Public License as published by
8     the Free Software Foundation; either version 2 of the License, or
9     (at your option) any later version.
10
11     VOMP is distributed in the hope that it will be useful,
12     but WITHOUT ANY WARRANTY; without even the implied warranty of
13     MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
14     GNU General Public License for more details.
15
16     You should have received a copy of the GNU General Public License
17     along with VOMP; if not, write to the Free Software
18     Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA  02110-1301, USA.
19 */
20
21 #ifndef DEFINES_H
22 #define DEFINES_H
23
24 typedef unsigned char UCHAR;
25 typedef unsigned short USHORT;
26 typedef unsigned int UINT;
27 typedef unsigned long ULONG;
28 typedef unsigned long long ULLONG;
29
30 #define OPTIONTYPE_TEXT 1
31 #define OPTIONTYPE_INT 2
32
33 #define BENCHMARK_FPS
34
35 //ULLONG htonll(ULLONG a);
36 //ULLONG ntohll(ULLONG a);
37 void MILLISLEEP(ULONG a);
38 long long getTimeMS();
39
40 int getClockRealTime(struct timespec *tp);
41
42
43 #ifdef WIN32
44
45   #define Surface_TYPE SurfaceWin
46   #define Thread_TYPE ThreadWin
47   #define ThreadID_TYPE unsigned int
48
49   #define RemoteStartDev ""//No devices passed
50
51   #define SNPRINTF _snprintf
52   #define VSNPRINTF _vsnprintf
53   #define STRCASECMP _stricmp
54   #define STRCASESTR StrStrI
55 /*  #define STRTOULL _strtoui64 */
56   #define STRTOUL strtoul
57   #define STRTOKR strtok_s
58
59   #define CLOSESOCKET closesocket
60   #define DEFAULT_TCP_WINDOWSIZE 2048
61   #define DEFAULT_TCP_WINDOWSIZENR 2  /*=2048*/
62   #define PLAYER_MAX_STREAMING_BUFFERS 120 // for video in uints of 50000 KB
63
64   #define VOMP_HAS_EXIT
65
66 #else
67
68   int max(int, int);
69   int min(UINT, int);
70 /*#ifdef _MIPS_ARCH
71   #define Surface_TYPE SurfaceDirectFB
72 #else
73   #define Surface_TYPE SurfaceMVP
74 #endif*/
75 #ifdef __ANDROID__
76   #define Thread_TYPE ThreadPAndroid
77
78 #else
79   #define Thread_TYPE ThreadP
80
81 #endif
82   #include <pthread.h>
83   #define ThreadID_TYPE pthread_t
84
85   #define SNPRINTF snprintf
86   #define VSNPRINTF vsnprintf
87   #define STRCASECMP strcasecmp
88   #define STRCASESTR strcasestr
89   #define STRTOUL strtoul
90   #define STRTOKR strtok_r
91   #define CLOSESOCKET close
92
93 // add here defines for plattform specific objects
94 #ifdef VOMP_PLATTFORM_RASPBERRY
95    #define Remote_TYPE RemoteLinux  // Generic Remote under Linux (Konsole!, not X) will support in the end:
96    #define RemoteStartDev ""//No devices passed
97
98   // Keyboard
99   // remotes under /dev/event
100   // HDMI CEC
101   //lirc?
102    #define Mtd_TYPE MtdRaspberry  //this is device dependent
103    #define Led_TYPE LedRaspberry  //this is device dependent
104    #define Osd_TYPE OsdOpenVG   // This OpenGL ES 2.0, in the moment only for raspberry, but might be splitted for other devices
105    #define OsdStartDev ""
106    #define Audio_TYPE AudioOMX   // This is Audio based on OpenMax and libav for decoding
107    #define Video_TYPE VideoOMX   // This is Video based on OpenMax
108
109
110
111    #define VPE_OMX_SUPPORT // Activate support for hardware codec using openmax il
112    #define VPE_OMX_H264_DECODER "OMX.broadcom.video_decode"
113    #define VPE_OMX_MPEG2_DECODER "OMX.broadcom.video_decode"
114    #define VPE_OMX_VIDEO_SCHED "OMX.broadcom.video_scheduler"
115    #define VPE_OMX_VIDEO_REND "OMX.broadcom.video_render"
116    #define VPE_OMX_VIDEO_DEINTERLACE "OMX.broadcom.image_fx"
117    #define VPE_OMX_CLOCK "OMX.broadcom.clock"
118    #define VPE_OMX_AUDIO_DECODER "OMX.broadcom.audio_decode"
119    #define VPE_OMX_AUDIO_REND "OMX.broadcom.audio_render"
120    #define VPE_OMX_IMAGE_DECODER "OMX.broadcom.image_decode"
121    #define VPE_OMX_EGL_REND "OMX.broadcom.egl_render"
122
123    //#define  VPE_LIBAV_SUPPORT
124   // #define  VPE_LIBAV_MPEG2_TRANSCODING
125
126   #define DEFAULT_TCP_WINDOWSIZE 0
127   #define DEFAULT_TCP_WINDOWSIZENR 0  /*=2048*/
128   #define PLAYER_MAX_STREAMING_BUFFERS 120 // for video in uints of 50000 KB
129   #define TV_NORM_SWITCHABLE
130   #define HANDLE_VT_SWITCHING
131   #define GRADIENT_DRAWING
132   #define ADVANCED_MENUES // This is for special HD versions of our menus
133
134   #define PICTURE_DECODER_MAGICK
135   #define PICTURE_DECODER_OMX
136
137   #define VOMP_LINUX_CLOCK  CLOCK_MONOTONIC
138
139 #endif
140 #ifdef VOMP_PLATTFORM_MVP
141   #define Remote_TYPE RemoteMVP
142   #define RemoteStartDev "/dev/rawir"
143   #define Mtd_TYPE MtdMVP
144   #define Led_TYPE LedMVP
145   #define Osd_TYPE OsdMVP
146   #define OsdStartDev "/dev/stbgfx"
147   #define Audio_TYPE AudioMVP
148   #define Video_TYPE VideoMVP
149   #define Surface_TYPE SurfaceMVP //deprecated
150   #define DEFAULT_TCP_WINDOWSIZE 2048  /*=2048*/
151   #define DEFAULT_TCP_WINDOWSIZENR 2  /*=2048*/
152   #define PLAYER_MAX_STREAMING_BUFFERS 11 // for video in uints of 50000 KB
153   #define PAL_WSS
154   #define MVP_REMOTE_TYPES
155
156   #define VOMP_MEDIAPLAYER
157   #define VOMP_LINUX_CLOCK  CLOCK_REALTIME
158 #endif
159
160 #ifdef VOMP_PLATTFORM_NMT // This was the attempt to port vomp to nmt, it failed but maybe the code is useful at some time
161   #define Remote_TYPE RemoteLirc
162   #define RemoteStartDev "/dev/lircd"
163   #define Mtd_TYPE MtdNMT
164   #define Led_TYPE LedMVP
165   #define Osd_TYPE OsdDirectFB
166   #define OsdStartDev ""
167   #define Audio_TYPE AudioNMT
168   #define Video_TYPE VideoNMT
169   #define Surface_TYPE SurfaceDirectFB //deprecated
170   #define DEFAULT_TCP_WINDOWSIZE 2048
171   #define DEFAULT_TCP_WINDOWSIZENR 2  /*=2048*/
172   #define PLAYER_MAX_STREAMING_BUFFERS 11 // for video in uints of 50000 KB
173
174   #define VOMP_LINUX_CLOCK  CLOCK_REALTIME
175
176 #endif
177
178 #endif
179
180 /*
181 typedef struct
182 {
183   UINT id;               // Used for working out what has changed at the end
184   char *title;           // Name of the option
185   char *configSection;   // Which section of the config file
186   char *configParam;     // Parameter name in the config file
187   UINT optionType;       // 1 for text, 2 for int
188   UINT optionCount;      // How many choices?
189   UINT defaultOption;    // Serial of the default choice (base 0), or actual option in int mode
190   int startInt;          // Starting int for int mode
191   const char * const * options;  // Text for the options (null for int mode)
192 } OPTIONDATA;
193 */
194
195 #endif