1 /* Gstreamer Base Functions
3 * Copyright 2002 Lionel Ulmer
4 * Copyright 2010 Aric Stewart, CodeWeavers
6 * This library is free software; you can redistribute it and/or
7 * modify it under the terms of the GNU Lesser General Public
8 * License as published by the Free Software Foundation; either
9 * version 2.1 of the License, or (at your option) any later version.
11 * This library 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 GNU
14 * Lesser General Public License for more details.
16 * You should have received a copy of the GNU Lesser General Public
17 * License along with this library; if not, write to the Free Software
18 * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA
25 #include <gst/app/gstappsink.h>
26 #include <gst/app/gstappsrc.h>
27 #include <gst/app/gstappbuffer.h>
35 #include "wine/debug.h"
37 #include "wine/unicode.h"
38 #include "gst_private.h"
40 #include "gst_guids.h"
42 static HINSTANCE hInst = NULL;
44 WINE_DEFAULT_DEBUG_CHANNEL(gstreamer);
46 static const WCHAR wGstreamer_Splitter[] =
47 {'G','S','t','r','e','a','m','e','r',' ','s','p','l','i','t','t','e','r',' ','f','i','l','t','e','r',0};
49 static WCHAR wNull[] = {'\0'};
51 static const AMOVIESETUP_MEDIATYPE amfMTstream[] =
52 { { &MEDIATYPE_Stream, &WINESUBTYPE_Gstreamer },
53 { &MEDIATYPE_Stream, &MEDIASUBTYPE_NULL },
56 static const AMOVIESETUP_MEDIATYPE amfMTaudio[] =
57 { { &MEDIATYPE_Audio, &MEDIASUBTYPE_NULL } };
59 static const AMOVIESETUP_MEDIATYPE amfMTvideo[] =
60 { { &MEDIATYPE_Video, &MEDIASUBTYPE_NULL } };
62 static const AMOVIESETUP_PIN amfSplitPin[] =
64 FALSE, FALSE, FALSE, FALSE,
72 FALSE, TRUE, FALSE, FALSE,
80 FALSE, TRUE, FALSE, FALSE,
88 static const AMOVIESETUP_FILTER amfSplitter =
89 { &CLSID_Gstreamer_Splitter,
96 FactoryTemplate const g_Templates[] = {
99 &CLSID_Gstreamer_Splitter,
100 Gstreamer_Splitter_create,
106 const int g_cTemplates = sizeof(g_Templates) / sizeof (g_Templates[0]);
108 BOOL WINAPI DllMain(HINSTANCE hInstDLL, DWORD fdwReason, LPVOID lpv)
110 if (fdwReason == DLL_PROCESS_ATTACH)
112 return STRMBASE_DllMain(hInstDLL, fdwReason, lpv);
115 /* GStreamer common functions */
117 void dump_AM_MEDIA_TYPE(const AM_MEDIA_TYPE * pmt)
121 TRACE("\t%s\n\t%s\n\t...\n\t%s\n", debugstr_guid(&pmt->majortype), debugstr_guid(&pmt->subtype), debugstr_guid(&pmt->formattype));
124 DWORD Gstreamer_init(void) {
128 char argv0[] = "wine";
129 char argv1[] = "--gst-disable-registry-fork";
130 char **argv = HeapAlloc(GetProcessHeap(), 0, sizeof(char *)*3);
136 g_thread_impl_init();
137 inited = gst_init_check(&argc, &argv, &err);
138 HeapFree(GetProcessHeap(), 0, argv);
140 FIXME("Failed to initialize gstreamer: %s\n", err->message);
147 #define INF_SET_ID(id) \
150 static CHAR name[] = #id; \
152 pse[i].pszName = name; \
156 #define INF_SET_CLSID(clsid) INF_SET_ID(CLSID_ ## clsid)
158 static HRESULT register_server(BOOL do_register)
162 HRESULT (WINAPI *pRegInstall)(HMODULE hm, LPCSTR pszSection, const STRTABLEA* pstTable);
165 static CLSID const *clsids[3];
168 static const WCHAR wszAdvpack[] = {'a','d','v','p','a','c','k','.','d','l','l',0};
170 TRACE("(%x)\n", do_register);
172 INF_SET_CLSID(AsyncReader);
173 INF_SET_ID(MEDIATYPE_Stream);
174 INF_SET_ID(WINESUBTYPE_Gstreamer);
176 for(i=0; i < sizeof(pse)/sizeof(pse[0]); i++) {
177 pse[i].pszValue = HeapAlloc(GetProcessHeap(),0,39);
178 sprintf(pse[i].pszValue, "{%08X-%04X-%04X-%02X%02X-%02X%02X%02X%02X%02X%02X}",
179 clsids[i]->Data1, clsids[i]->Data2, clsids[i]->Data3, clsids[i]->Data4[0],
180 clsids[i]->Data4[1], clsids[i]->Data4[2], clsids[i]->Data4[3], clsids[i]->Data4[4],
181 clsids[i]->Data4[5], clsids[i]->Data4[6], clsids[i]->Data4[7]);
184 strtable.cEntries = sizeof(pse)/sizeof(pse[0]);
187 hAdvpack = LoadLibraryW(wszAdvpack);
188 pRegInstall = (void *)GetProcAddress(hAdvpack, "RegInstall");
190 hres = pRegInstall(hInst, do_register ? "RegisterDll" : "UnregisterDll", &strtable);
192 for(i=0; i < sizeof(pse)/sizeof(pse[0]); i++)
193 HeapFree(GetProcessHeap(),0,pse[i].pszValue);
196 ERR("RegInstall failed: %08x\n", hres);
206 /***********************************************************************
209 HRESULT WINAPI DllRegisterServer(void)
215 hr = AMovieDllRegisterServer2(TRUE);
217 hr = register_server(TRUE);
221 /***********************************************************************
222 * DllUnregisterServer
224 HRESULT WINAPI DllUnregisterServer(void)
230 hr = AMovieDllRegisterServer2(FALSE);
232 hr = register_server(FALSE);