]> git.vomp.tv Git - vompclient.git/blob - defines.h
Windows readme and makefile updated!
[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 //#define WINDOWS_LEGACY
43
44 #ifdef WIN32
45
46
47   #define Thread_TYPE ThreadWin
48   #define ThreadID_TYPE unsigned int
49   #define VectorHandle void* 
50 #ifndef WINDOWS_LEGACY
51   #define Osd_TYPE OsdWinVector
52   #define Surface_TYPE SurfaceVector
53   #define GRADIENT_DRAWING
54   #define ADVANCED_MENUES // This is for special HD versions of our menus
55 #else
56   #define Osd_TYPE OsdWinPixel
57   #define Surface_TYPE SurfaceWin
58 #endif
59
60   #define RemoteStartDev ""//No devices passed
61
62   #define SNPRINTF _snprintf
63   #define VSNPRINTF _vsnprintf
64   #define STRCASECMP _stricmp
65   #define STRCASESTR StrStrI
66 /*  #define STRTOULL _strtoui64 */
67   #define STRTOUL strtoul
68   #define STRTOKR strtok_s
69
70   #define CLOSESOCKET closesocket
71   #define DEFAULT_TCP_WINDOWSIZE 2048
72   #define DEFAULT_TCP_WINDOWSIZENR 2  /*=2048*/
73   #define PLAYER_MAX_STREAMING_BUFFERS 120 // for video in uints of 50000 KB
74
75   #define VOMP_HAS_EXIT
76
77 #else
78
79   int max(int, int);
80   int min(UINT, int);
81 /*#ifdef _MIPS_ARCH
82   #define Surface_TYPE SurfaceDirectFB
83 #else
84   #define Surface_TYPE SurfaceMVP
85 #endif*/
86 #ifdef __ANDROID__
87   #define Thread_TYPE ThreadPAndroid
88
89 #else
90   #define Thread_TYPE ThreadP
91
92 #endif
93   #include <pthread.h>
94   #define ThreadID_TYPE pthread_t
95
96   #define SNPRINTF snprintf
97   #define VSNPRINTF vsnprintf
98   #define STRCASECMP strcasecmp
99   #define STRCASESTR strcasestr
100   #define STRTOUL strtoul
101   #define STRTOKR strtok_r
102   #define CLOSESOCKET close
103
104 // add here defines for plattform specific objects
105 #ifdef VOMP_PLATTFORM_RASPBERRY
106    #define Remote_TYPE RemoteLinux  // Generic Remote under Linux (Konsole!, not X) will support in the end:
107    #define RemoteStartDev ""//No devices passed
108
109   // Keyboard
110   // remotes under /dev/event
111   // HDMI CEC
112   //lirc?
113    #define Mtd_TYPE MtdRaspberry  //this is device dependent
114    #define Led_TYPE LedRaspberry  //this is device dependent
115    #define Osd_TYPE OsdOpenVG   // This OpenGL ES 2.0, in the moment only for raspberry, but might be splitted for other devices
116    #define OsdStartDev ""
117    #define Audio_TYPE AudioOMX   // This is Audio based on OpenMax and libav for decoding
118    #define Video_TYPE VideoOMX   // This is Video based on OpenMax
119
120
121
122    #define VPE_OMX_SUPPORT // Activate support for hardware codec using openmax il
123    #define VPE_OMX_H264_DECODER "OMX.broadcom.video_decode"
124    #define VPE_OMX_MPEG2_DECODER "OMX.broadcom.video_decode"
125    #define VPE_OMX_VIDEO_SCHED "OMX.broadcom.video_scheduler"
126    #define VPE_OMX_VIDEO_REND "OMX.broadcom.video_render"
127    #define VPE_OMX_VIDEO_DEINTERLACE "OMX.broadcom.image_fx"
128    #define VPE_OMX_CLOCK "OMX.broadcom.clock"
129    #define VPE_OMX_AUDIO_DECODER "OMX.broadcom.audio_decode"
130    #define VPE_OMX_AUDIO_REND "OMX.broadcom.audio_render"
131    #define VPE_OMX_IMAGE_DECODER "OMX.broadcom.image_decode"
132    #define VPE_OMX_EGL_REND "OMX.broadcom.egl_render"
133
134    //#define  VPE_LIBAV_SUPPORT
135   // #define  VPE_LIBAV_MPEG2_TRANSCODING
136
137   #define DEFAULT_TCP_WINDOWSIZE 0
138   #define DEFAULT_TCP_WINDOWSIZENR 0  /*=2048*/
139   #define PLAYER_MAX_STREAMING_BUFFERS 120 // for video in uints of 50000 KB
140   #define TV_NORM_SWITCHABLE
141   #define HANDLE_VT_SWITCHING
142   #define GRADIENT_DRAWING
143   #define ADVANCED_MENUES // This is for special HD versions of our menus
144   #define VectorHandle unsigned int 
145
146   #define PICTURE_DECODER_MAGICK
147   #define PICTURE_DECODER_OMX
148
149   #define VOMP_LINUX_CLOCK  CLOCK_MONOTONIC
150
151 #endif
152 #ifdef VOMP_PLATTFORM_MVP
153   #define Remote_TYPE RemoteMVP
154   #define RemoteStartDev "/dev/rawir"
155   #define Mtd_TYPE MtdMVP
156   #define Led_TYPE LedMVP
157   #define Osd_TYPE OsdMVP
158   #define OsdStartDev "/dev/stbgfx"
159   #define Audio_TYPE AudioMVP
160   #define Video_TYPE VideoMVP
161   #define Surface_TYPE SurfaceMVP //deprecated
162   #define DEFAULT_TCP_WINDOWSIZE 2048  /*=2048*/
163   #define DEFAULT_TCP_WINDOWSIZENR 2  /*=2048*/
164   #define PLAYER_MAX_STREAMING_BUFFERS 11 // for video in uints of 50000 KB
165   #define PAL_WSS
166   #define MVP_REMOTE_TYPES
167
168   #define VOMP_MEDIAPLAYER
169   #define VOMP_LINUX_CLOCK  CLOCK_REALTIME
170 #endif
171
172 #ifdef VOMP_PLATTFORM_NMT // This was the attempt to port vomp to nmt, it failed but maybe the code is useful at some time
173   #define Remote_TYPE RemoteLirc
174   #define RemoteStartDev "/dev/lircd"
175   #define Mtd_TYPE MtdNMT
176   #define Led_TYPE LedMVP
177   #define Osd_TYPE OsdDirectFB
178   #define OsdStartDev ""
179   #define Audio_TYPE AudioNMT
180   #define Video_TYPE VideoNMT
181   #define Surface_TYPE SurfaceDirectFB //deprecated
182   #define DEFAULT_TCP_WINDOWSIZE 2048
183   #define DEFAULT_TCP_WINDOWSIZENR 2  /*=2048*/
184   #define PLAYER_MAX_STREAMING_BUFFERS 11 // for video in uints of 50000 KB
185
186   #define VOMP_LINUX_CLOCK  CLOCK_REALTIME
187
188 #endif
189
190 #endif
191
192 /*
193 typedef struct
194 {
195   UINT id;               // Used for working out what has changed at the end
196   char *title;           // Name of the option
197   char *configSection;   // Which section of the config file
198   char *configParam;     // Parameter name in the config file
199   UINT optionType;       // 1 for text, 2 for int
200   UINT optionCount;      // How many choices?
201   UINT defaultOption;    // Serial of the default choice (base 0), or actual option in int mode
202   int startInt;          // Starting int for int mode
203   const char * const * options;  // Text for the options (null for int mode)
204 } OPTIONDATA;
205 */
206
207 #endif