demux: ogg: check first frame granule index
[vlc.git] / bin / winvlc.c
blob5634ce7957c4ca7a788f874c265a3aab0351d52a
1 /*****************************************************************************
2 * winvlc.c: the Windows VLC media player
3 *****************************************************************************
4 * Copyright (C) 1998-2011 the VideoLAN team
6 * Authors: Vincent Seguin <seguin@via.ecp.fr>
7 * Samuel Hocevar <sam@zoy.org>
8 * Gildas Bazin <gbazin@videolan.org>
9 * Derk-Jan Hartman <hartman at videolan dot org>
10 * Lots of other people, see the libvlc AUTHORS file
12 * This program is free software; you can redistribute it and/or modify
13 * it under the terms of the GNU General Public License as published by
14 * the Free Software Foundation; either version 2 of the License, or
15 * (at your option) any later version.
17 * This program is distributed in the hope that it will be useful,
18 * but WITHOUT ANY WARRANTY; without even the implied warranty of
19 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
20 * GNU General Public License for more details.
22 * You should have received a copy of the GNU General Public License
23 * along with this program; if not, write to the Free Software
24 * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston MA 02110-1301, USA.
25 *****************************************************************************/
27 #ifdef HAVE_CONFIG_H
28 # include "config.h"
29 #endif
31 #ifndef UNICODE
32 #define UNICODE
33 #endif
35 #include <vlc/vlc.h>
36 #include <windows.h>
37 #include <shellapi.h>
39 #ifndef _WIN32_IE
40 # define _WIN32_IE 0x501
41 #endif
42 #include <fcntl.h>
43 #include <io.h>
44 #include <shlobj.h>
45 #define HeapEnableTerminationOnCorruption (HEAP_INFORMATION_CLASS)1
47 #ifdef HAVE_BREAKPAD
48 void CheckCrashDump( const wchar_t* crashdump_path );
49 void* InstallCrashHandler( const wchar_t* crashdump_path );
50 void ReleaseCrashHandler( void* handler );
51 #endif
53 static char *FromWide (const wchar_t *wide)
55 size_t len;
56 len = WideCharToMultiByte (CP_UTF8, 0, wide, -1, NULL, 0, NULL, NULL);
58 char *out = (char *)malloc (len);
59 if (out)
60 WideCharToMultiByte (CP_UTF8, 0, wide, -1, out, len, NULL, NULL);
61 return out;
64 #if (_WIN32_WINNT < _WIN32_WINNT_WIN8)
65 static BOOL SetDefaultDllDirectories_(DWORD flags)
67 HMODULE h = GetModuleHandle(TEXT("kernel32.dll"));
68 if (h == NULL)
69 return FALSE;
71 BOOL (WINAPI * SetDefaultDllDirectoriesReal)(DWORD);
73 SetDefaultDllDirectoriesReal = GetProcAddress(h,
74 "SetDefaultDllDirectories");
75 if (SetDefaultDllDirectoriesReal == NULL)
76 return FALSE;
78 return SetDefaultDllDirectoriesReal(flags);
80 # define SetDefaultDllDirectories SetDefaultDllDirectories_
82 #endif
84 static void PrioritizeSystem32(void)
86 #ifndef HAVE_PROCESS_MITIGATION_IMAGE_LOAD_POLICY
87 typedef struct _PROCESS_MITIGATION_IMAGE_LOAD_POLICY {
88 union {
89 DWORD Flags;
90 struct {
91 DWORD NoRemoteImages :1;
92 DWORD NoLowMandatoryLabelImages :1;
93 DWORD PreferSystem32Images :1;
94 DWORD ReservedFlags :29;
97 } PROCESS_MITIGATION_IMAGE_LOAD_POLICY;
98 #endif
99 #if _WIN32_WINNT < _WIN32_WINNT_WIN8
100 BOOL WINAPI (*SetProcessMitigationPolicy)(PROCESS_MITIGATION_POLICY, PVOID, SIZE_T);
101 HINSTANCE h_Kernel32 = GetModuleHandle(TEXT("kernel32.dll"));
102 if ( !h_Kernel32 )
103 return;
104 SetProcessMitigationPolicy = (BOOL (WINAPI *)(PROCESS_MITIGATION_POLICY, PVOID, SIZE_T))
105 GetProcAddress(h_Kernel32, "SetProcessMitigationPolicy");
106 if (SetProcessMitigationPolicy == NULL)
107 return;
108 #endif
109 PROCESS_MITIGATION_IMAGE_LOAD_POLICY m = { .Flags = 0 };
110 m.PreferSystem32Images = 1;
111 SetProcessMitigationPolicy( 10 /* ProcessImageLoadPolicy */, &m, sizeof( m ) );
114 static void vlc_kill(void *data)
116 HANDLE *semp = data;
118 ReleaseSemaphore(*semp, 1, NULL);
121 int WINAPI WinMain( HINSTANCE hInstance, HINSTANCE hPrevInstance,
122 LPSTR lpCmdLine,
123 int nCmdShow )
125 int argc;
127 /* VLC does not change the thread locale, so gettext/libintil will use the
128 * user default locale as reference. */
129 /* gettext versions 0.18-0.18.1 will use the Windows Vista locale name
130 * if the GETTEXT_MUI environment variable is set. If not set or if running
131 * on Windows 2000/XP/2003 an hard-coded language ID list is used. This
132 * putenv() call may become redundant with later versions of gettext. */
133 putenv("GETTEXT_MUI=1");
134 #ifdef TOP_BUILDDIR
135 putenv("VLC_PLUGIN_PATH=Z:"TOP_BUILDDIR"/modules");
136 putenv("VLC_DATA_PATH=Z:"TOP_SRCDIR"/share");
137 #endif
139 #ifndef NDEBUG
140 /* Disable stderr buffering. Indeed, stderr can be buffered on Windows (if
141 * connected to a pipe). */
142 setvbuf (stderr, NULL, _IONBF, BUFSIZ);
143 #endif
145 HeapSetInformation(NULL, HeapEnableTerminationOnCorruption, NULL, 0);
147 /* SetProcessDEPPolicy, SetDllDirectory, & Co. */
148 HINSTANCE h_Kernel32 = GetModuleHandle(TEXT("kernel32.dll"));
149 if (h_Kernel32 != NULL)
151 /* Enable DEP */
152 # define PROCESS_DEP_ENABLE 1
153 BOOL (WINAPI * mySetProcessDEPPolicy)( DWORD dwFlags);
154 mySetProcessDEPPolicy = (BOOL (WINAPI *)(DWORD))
155 GetProcAddress(h_Kernel32, "SetProcessDEPPolicy");
156 if(mySetProcessDEPPolicy)
157 mySetProcessDEPPolicy(PROCESS_DEP_ENABLE);
161 /* Do NOT load any library from cwd. */
162 SetDllDirectory(TEXT(""));
164 /***
165 * The LoadLibrary* calls from the modules and the 3rd party code
166 * will search in SYSTEM32 only
167 * */
168 SetDefaultDllDirectories(LOAD_LIBRARY_SEARCH_SYSTEM32);
169 /***
170 * Load DLLs from system32 before any other folder (when possible)
172 PrioritizeSystem32();
174 /* Args */
175 wchar_t **wargv = CommandLineToArgvW (GetCommandLine (), &argc);
176 if (wargv == NULL)
177 return 1;
179 char *argv[argc + 3];
180 BOOL crash_handling = TRUE;
181 int j = 0;
182 char *lang = NULL;
184 argv[j++] = FromWide( L"--media-library" );
185 argv[j++] = FromWide( L"--no-ignore-config" );
186 for (int i = 1; i < argc; i++)
188 if(!wcscmp(wargv[i], L"--no-crashdump"))
190 crash_handling = FALSE;
191 continue; /* don't give argument to libvlc */
193 if (!wcsncmp(wargv[i], L"--language", 10) )
195 if (i < argc - 1 && wcsncmp( wargv[i + 1], L"--", 2 ))
196 lang = FromWide (wargv[++i]);
197 continue;
200 argv[j++] = FromWide (wargv[i]);
203 argc = j;
204 argv[argc] = NULL;
205 LocalFree (wargv);
207 #ifdef HAVE_BREAKPAD
208 void* eh = NULL;
209 if(crash_handling)
211 static wchar_t path[MAX_PATH];
212 if( S_OK != SHGetFolderPathW( NULL, CSIDL_APPDATA | CSIDL_FLAG_CREATE,
213 NULL, SHGFP_TYPE_CURRENT, path ) )
214 fprintf( stderr, "Can't open the vlc conf PATH\n" );
215 _snwprintf( path+wcslen( path ), MAX_PATH, L"%s", L"\\vlc\\crashdump" );
216 CheckCrashDump( &path[0] );
217 eh = InstallCrashHandler( &path[0] );
219 #endif
221 _setmode( _fileno( stdin ), _O_BINARY ); /* Needed for pipes */
223 /* */
224 if (!lang)
226 HKEY h_key;
227 if( RegOpenKeyEx( HKEY_CURRENT_USER, TEXT("Software\\VideoLAN\\VLC\\"), 0, KEY_READ, &h_key )
228 == ERROR_SUCCESS )
230 TCHAR szData[256];
231 DWORD len = 256;
232 if( RegQueryValueEx( h_key, TEXT("Lang"), NULL, NULL, (LPBYTE) &szData, &len ) == ERROR_SUCCESS )
233 lang = FromWide( szData );
237 if (lang && strncmp( lang, "auto", 4 ) )
239 char tmp[11];
240 snprintf(tmp, 11, "LANG=%s", lang);
241 putenv(tmp);
243 free(lang);
245 /* Initialize libvlc */
246 libvlc_instance_t *vlc;
247 vlc = libvlc_new (argc, (const char **)argv);
248 if (vlc != NULL)
250 HANDLE sem = CreateSemaphore(NULL, 0, 1, NULL);
252 libvlc_set_exit_handler(vlc, vlc_kill, &sem);
253 libvlc_set_app_id (vlc, "org.VideoLAN.VLC", PACKAGE_VERSION,
254 PACKAGE_NAME);
255 libvlc_set_user_agent (vlc, "VLC media player", "VLC/"PACKAGE_VERSION);
256 libvlc_add_intf (vlc, "hotkeys,none");
257 libvlc_add_intf (vlc, "globalhotkeys,none");
258 libvlc_add_intf (vlc, NULL);
259 libvlc_playlist_play (vlc);
261 WaitForSingleObject(sem, INFINITE);
262 CloseHandle(sem);
264 libvlc_release (vlc);
266 else
267 MessageBox (NULL, TEXT("VLC media player could not start.\n"
268 "Either the command line options were invalid or no plugins were found.\n"),
269 TEXT("VLC media player"),
270 MB_OK|MB_ICONERROR);
273 #ifdef HAVE_BREAKPAD
274 ReleaseCrashHandler( eh );
275 #endif
276 for (int i = 0; i < argc; i++)
277 free (argv[i]);
279 (void)hInstance; (void)hPrevInstance; (void)lpCmdLine; (void)nCmdShow;
280 return 0;