2 Copyright 2004-2005 Chris Tallon
\r
4 This file is part of VOMP.
\r
6 VOMP is free software; you can redistribute it and/or modify
\r
7 it under the terms of the GNU General Public License as published by
\r
8 the Free Software Foundation; either version 2 of the License, or
\r
9 (at your option) any later version.
\r
11 VOMP is distributed in the hope that it will be useful,
\r
12 but WITHOUT ANY WARRANTY; without even the implied warranty of
\r
13 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
\r
14 GNU General Public License for more details.
\r
16 You should have received a copy of the GNU General Public License
\r
17 along with VOMP; if not, write to the Free Software
\r
18 Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
\r
24 typedef unsigned char UCHAR;
\r
25 typedef unsigned short USHORT;
\r
26 typedef unsigned int UINT;
\r
27 typedef unsigned long ULONG;
\r
28 typedef unsigned long long ULLONG;
\r
30 #define OPTIONTYPE_TEXT 1
\r
31 #define OPTIONTYPE_INT 2
\r
33 #define BENCHMARK_FPS
\r
35 //ULLONG htonll(ULLONG a);
\r
36 //ULLONG ntohll(ULLONG a);
\r
37 void MILLISLEEP(ULONG a);
\r
38 long long getTimeMS();
\r
42 #define Surface_TYPE SurfaceWin
\r
43 #define Thread_TYPE ThreadWin
\r
44 #define ThreadID_TYPE unsigned int
\r
46 #define SNPRINTF _snprintf
\r
47 #define VSNPRINTF _vsnprintf
\r
48 #define STRCASECMP _stricmp
\r
49 #define STRCASESTR StrStrI
\r
50 /* #define STRTOULL _strtoui64 */
\r
51 #define STRTOUL strtoul
\r
52 #define CLOSESOCKET closesocket
\r
53 #define DEFAULT_TCP_WINDOWSIZENR 1 /*=2048*/
\r
55 #define VOMP_HAS_EXIT
\r
62 #define Surface_TYPE SurfaceDirectFB
\r
64 #define Surface_TYPE SurfaceMVP
\r
67 #define Thread_TYPE ThreadPAndroid
\r
70 #define Thread_TYPE ThreadP
\r
73 #include <pthread.h>
\r
74 #define ThreadID_TYPE pthread_t
\r
76 #define SNPRINTF snprintf
\r
77 #define VSNPRINTF vsnprintf
\r
78 #define STRCASECMP strcasecmp
\r
79 #define STRCASESTR strcasestr
\r
80 #define STRTOUL strtoul
\r
81 #define CLOSESOCKET close
\r
83 // add here defines for plattform specific objects
\r
84 #ifdef VOMP_PLATTFORM_RASPBERRY
\r
85 #define Remote_TYPE RemoteLinux // Generic Remote under Linux (Konsole!, not X) will support in the end:
\r
86 #define RemoteStartDev ""//No devices passed
\r
89 // remotes under /dev/event
\r
92 #define Mtd_TYPE MtdRaspberry //this is device dependent
\r
93 #define Led_TYPE LedRaspberry //this is device dependent
\r
94 #define Osd_TYPE OsdOpenVG // This OpenGL ES 2.0, in the moment only for raspberry, but might be splitted for other devices
\r
95 #define OsdStartDev ""
\r
96 #define Audio_TYPE AudioOMX // This is Audio based on OpenMax and libav for decoding
\r
97 #define Video_TYPE VideoOMX // This is Video based on OpenMax
\r
101 #define VPE_OMX_SUPPORT // Activate support for hardware codec using openmax il
\r
102 #define VPE_OMX_H264_DECODER "OMX.broadcom.video_decode"
\r
103 #define VPE_OMX_MPEG2_DECODER "OMX.broadcom.video_decode"
\r
104 #define VPE_OMX_VIDEO_SCHED "OMX.broadcom.video_scheduler"
\r
105 #define VPE_OMX_VIDEO_REND "OMX.broadcom.video_render"
\r
106 #define VPE_OMX_VIDEO_DEINTERLACE "OMX.broadcom.image_fx"
\r
107 #define VPE_OMX_CLOCK "OMX.broadcom.clock"
\r
108 #define VPE_OMX_AUDIO_DECODER "OMX.broadcom.audio_decode"
\r
109 #define VPE_OMX_AUDIO_REND "OMX.broadcom.audio_render"
\r
111 //#define VPE_LIBAV_SUPPORT
\r
112 // #define VPE_LIBAV_MPEG2_TRANSCODING
\r
114 #define DEFAULT_TCP_WINDOWSIZENR 6 /*=2048*/
\r
115 #define TV_NORM_SWITCHABLE
\r
116 #define HANDLE_VT_SWITCHING
\r
118 #define VOMP_LINUX_CLOCK CLOCK_MONOTONIC
\r
121 #ifdef VOMP_PLATTFORM_MVP
\r
122 #define Remote_TYPE RemoteMVP
\r
123 #define RemoteStartDev "/dev/rawir"
\r
124 #define Mtd_TYPE MtdMVP
\r
125 #define Led_TYPE LedMVP
\r
126 #define Osd_TYPE OsdMVP
\r
127 #define OsdStartDev "/dev/stbgfx"
\r
128 #define Audio_TYPE AudioMVP
\r
129 #define Video_TYPE VideoMVP
\r
130 #define Surface_TYPE SurfaceMVP //deprecated
\r
131 #define DEFAULT_TCP_WINDOWSIZENR 1 /*=2048*/
\r
133 #define MVP_REMOTE_TYPES
\r
135 #define VOMP_MEDIAPLAYER
\r
136 #define VOMP_LINUX_CLOCK CLOCK_REALTIME
\r
139 #ifdef VOMP_PLATTFORM_NMT // This was the attempt to port vomp to nmt, it failed but maybe the code is useful at some time
\r
140 #define Remote_TYPE RemoteLirc
\r
141 #define RemoteStartDev "/dev/lircd"
\r
142 #define Mtd_TYPE MtdNMT
\r
143 #define Led_TYPE LedMVP
\r
144 #define Osd_TYPE OsdDirectFB
\r
145 #define OsdStartDev ""
\r
146 #define Audio_TYPE AudioNMT
\r
147 #define Video_TYPE VideoNMT
\r
148 #define Surface_TYPE SurfaceDirectFB //deprecated
\r
149 #define DEFAULT_TCP_WINDOWSIZENR 1 /*=2048*/
\r
151 #define VOMP_LINUX_CLOCK CLOCK_REALTIME
\r
160 UINT id; // Used for working out what has changed at the end
\r
161 char *title; // Name of the option
\r
162 char *configSection; // Which section of the config file
\r
163 char *configParam; // Parameter name in the config file
\r
164 UINT optionType; // 1 for text, 2 for int
\r
165 UINT optionCount; // How many choices?
\r
166 UINT defaultOption; // Serial of the default choice (base 0), or actual option in int mode
\r
167 int startInt; // Starting int for int mode
\r
168 const char * const * options; // Text for the options (null for int mode)
\r