msi: Verify the existence of fusion.dll before reporting the .Net version.
[wine] / dlls / qedit / mediadet.c
1 /*              DirectShow Media Detector object (QEDIT.DLL)
2  *
3  * Copyright 2008 Google (Lei Zhang, Dan Hipschman)
4  *
5  * This library is free software; you can redistribute it and/or
6  * modify it under the terms of the GNU Lesser General Public
7  * License as published by the Free Software Foundation; either
8  * version 2.1 of the License, or (at your option) any later version.
9  *
10  * This library is distributed in the hope that it will be useful,
11  * but WITHOUT ANY WARRANTY; without even the implied warranty of
12  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
13  * Lesser General Public License for more details.
14  *
15  * You should have received a copy of the GNU Lesser General Public
16  * License along with this library; if not, write to the Free Software
17  * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA
18  */
19
20 #include <assert.h>
21 #include <stdarg.h>
22
23 #define COBJMACROS
24
25 #include "windef.h"
26 #include "winbase.h"
27 #include "winuser.h"
28 #include "ole2.h"
29
30 #include "qedit_private.h"
31 #include "wine/debug.h"
32
33 WINE_DEFAULT_DEBUG_CHANNEL(qedit);
34
35 typedef struct MediaDetImpl {
36     const IMediaDetVtbl *MediaDet_Vtbl;
37     LONG refCount;
38     IGraphBuilder *graph;
39     IBaseFilter *source;
40     IBaseFilter *splitter;
41     long num_streams;
42     long cur_stream;
43     IPin *cur_pin;
44 } MediaDetImpl;
45
46 static void MD_cleanup(MediaDetImpl *This)
47 {
48     if (This->cur_pin) IPin_Release(This->cur_pin);
49     This->cur_pin = NULL;
50     if (This->source) IBaseFilter_Release(This->source);
51     This->source = NULL;
52     if (This->splitter) IBaseFilter_Release(This->splitter);
53     This->splitter = NULL;
54     if (This->graph) IGraphBuilder_Release(This->graph);
55     This->graph = NULL;
56     This->num_streams = -1;
57     This->cur_stream = 0;
58 }
59
60 static ULONG WINAPI MediaDet_AddRef(IMediaDet* iface)
61 {
62     MediaDetImpl *This = (MediaDetImpl *)iface;
63     ULONG refCount = InterlockedIncrement(&This->refCount);
64     TRACE("(%p)->() AddRef from %d\n", This, refCount - 1);
65     return refCount;
66 }
67
68 static ULONG WINAPI MediaDet_Release(IMediaDet* iface)
69 {
70     MediaDetImpl *This = (MediaDetImpl *)iface;
71     ULONG refCount = InterlockedDecrement(&This->refCount);
72     TRACE("(%p)->() Release from %d\n", This, refCount + 1);
73
74     if (refCount == 0)
75     {
76         MD_cleanup(This);
77         CoTaskMemFree(This);
78         return 0;
79     }
80
81     return refCount;
82 }
83
84 static HRESULT WINAPI MediaDet_QueryInterface(IMediaDet* iface, REFIID riid,
85                                               void **ppvObject)
86 {
87     MediaDetImpl *This = (MediaDetImpl *)iface;
88     TRACE("(%p)->(%s %p)\n", This, debugstr_guid(riid), ppvObject);
89
90     if (IsEqualIID(riid, &IID_IUnknown) ||
91         IsEqualIID(riid, &IID_IMediaDet)) {
92         MediaDet_AddRef(iface);
93         *ppvObject = This;
94         return S_OK;
95     }
96     *ppvObject = NULL;
97     WARN("(%p, %s,%p): not found\n", This, debugstr_guid(riid), ppvObject);
98     return E_NOINTERFACE;
99 }
100
101 static HRESULT WINAPI MediaDet_get_Filter(IMediaDet* iface, IUnknown **pVal)
102 {
103     MediaDetImpl *This = (MediaDetImpl *)iface;
104     FIXME("(%p)->(%p): not implemented!\n", This, pVal);
105     return E_NOTIMPL;
106 }
107
108 static HRESULT WINAPI MediaDet_put_Filter(IMediaDet* iface, IUnknown *newVal)
109 {
110     MediaDetImpl *This = (MediaDetImpl *)iface;
111     FIXME("(%p)->(%p): not implemented!\n", This, newVal);
112     return E_NOTIMPL;
113 }
114
115 static HRESULT WINAPI MediaDet_get_OutputStreams(IMediaDet* iface, LONG *pVal)
116 {
117     MediaDetImpl *This = (MediaDetImpl *)iface;
118     IEnumPins *pins;
119     IPin *pin;
120     HRESULT hr;
121
122     TRACE("(%p)\n", This);
123
124     if (!This->splitter)
125         return E_INVALIDARG;
126
127     if (This->num_streams != -1)
128     {
129         *pVal = This->num_streams;
130         return S_OK;
131     }
132
133     *pVal = 0;
134
135     hr = IBaseFilter_EnumPins(This->splitter, &pins);
136     if (FAILED(hr))
137         return hr;
138
139     while (IEnumPins_Next(pins, 1, &pin, NULL) == S_OK)
140     {
141         PIN_DIRECTION dir;
142         hr = IPin_QueryDirection(pin, &dir);
143         IPin_Release(pin);
144         if (FAILED(hr))
145         {
146             IEnumPins_Release(pins);
147             return hr;
148         }
149
150         if (dir == PINDIR_OUTPUT)
151             ++*pVal;
152     }
153     IEnumPins_Release(pins);
154
155     This->num_streams = *pVal;
156     return S_OK;
157 }
158
159 static HRESULT WINAPI MediaDet_get_CurrentStream(IMediaDet* iface, LONG *pVal)
160 {
161     MediaDetImpl *This = (MediaDetImpl *)iface;
162     TRACE("(%p)\n", This);
163
164     if (!pVal)
165         return E_POINTER;
166
167     *pVal = This->cur_stream;
168     return S_OK;
169 }
170
171 static HRESULT SetCurPin(MediaDetImpl *This, long strm)
172 {
173     IEnumPins *pins;
174     IPin *pin;
175     HRESULT hr;
176
177     assert(This->splitter);
178     assert(0 <= strm && strm < This->num_streams);
179
180     if (This->cur_pin)
181     {
182         IPin_Release(This->cur_pin);
183         This->cur_pin = NULL;
184     }
185
186     hr = IBaseFilter_EnumPins(This->splitter, &pins);
187     if (FAILED(hr))
188         return hr;
189
190     while (IEnumPins_Next(pins, 1, &pin, NULL) == S_OK && !This->cur_pin)
191     {
192         PIN_DIRECTION dir;
193         hr = IPin_QueryDirection(pin, &dir);
194         if (FAILED(hr))
195         {
196             IPin_Release(pin);
197             IEnumPins_Release(pins);
198             return hr;
199         }
200
201         if (dir == PINDIR_OUTPUT && strm-- == 0)
202             This->cur_pin = pin;
203         else
204             IPin_Release(pin);
205     }
206     IEnumPins_Release(pins);
207
208     assert(This->cur_pin);
209     return S_OK;
210 }
211
212 static HRESULT WINAPI MediaDet_put_CurrentStream(IMediaDet* iface, LONG newVal)
213 {
214     MediaDetImpl *This = (MediaDetImpl *)iface;
215     HRESULT hr;
216
217     TRACE("(%p)->(%d)\n", This, newVal);
218
219     if (This->num_streams == -1)
220     {
221         LONG n;
222         hr = MediaDet_get_OutputStreams(iface, &n);
223         if (FAILED(hr))
224             return hr;
225     }
226
227     if (newVal < 0 || This->num_streams <= newVal)
228         return E_INVALIDARG;
229
230     hr = SetCurPin(This, newVal);
231     if (FAILED(hr))
232         return hr;
233
234     This->cur_stream = newVal;
235     return S_OK;
236 }
237
238 static HRESULT WINAPI MediaDet_get_StreamType(IMediaDet* iface, GUID *pVal)
239 {
240     MediaDetImpl *This = (MediaDetImpl *)iface;
241     FIXME("(%p)->(%p): not implemented!\n", This, debugstr_guid(pVal));
242     return E_NOTIMPL;
243 }
244
245 static HRESULT WINAPI MediaDet_get_StreamTypeB(IMediaDet* iface, BSTR *pVal)
246 {
247     MediaDetImpl *This = (MediaDetImpl *)iface;
248     FIXME("(%p)->(%p): not implemented!\n", This, pVal);
249     return E_NOTIMPL;
250 }
251
252 static HRESULT WINAPI MediaDet_get_StreamLength(IMediaDet* iface, double *pVal)
253 {
254     MediaDetImpl *This = (MediaDetImpl *)iface;
255     FIXME("(%p): stub!\n", This);
256     return VFW_E_INVALIDMEDIATYPE;
257 }
258
259 static HRESULT WINAPI MediaDet_get_Filename(IMediaDet* iface, BSTR *pVal)
260 {
261     MediaDetImpl *This = (MediaDetImpl *)iface;
262     IFileSourceFilter *file;
263     LPOLESTR name;
264     HRESULT hr;
265
266     TRACE("(%p)\n", This);
267
268     if (!pVal)
269         return E_POINTER;
270
271     *pVal = NULL;
272     /* MSDN says it should return E_FAIL if no file is open, but tests
273        show otherwise.  */
274     if (!This->source)
275         return S_OK;
276
277     hr = IBaseFilter_QueryInterface(This->source, &IID_IFileSourceFilter,
278                                     (void **) &file);
279     if (FAILED(hr))
280         return hr;
281
282     hr = IFileSourceFilter_GetCurFile(file, &name, NULL);
283     IFileSourceFilter_Release(file);
284     if (FAILED(hr))
285         return hr;
286
287     *pVal = SysAllocString(name);
288     CoTaskMemFree(name);
289     if (!*pVal)
290         return E_OUTOFMEMORY;
291
292     return S_OK;
293 }
294
295 /* From quartz, 2008/04/07 */
296 static HRESULT GetFilterInfo(IMoniker *pMoniker, GUID *pclsid, VARIANT *pvar)
297 {
298     static const WCHAR wszClsidName[] = {'C','L','S','I','D',0};
299     static const WCHAR wszFriendlyName[] = {'F','r','i','e','n','d','l','y','N','a','m','e',0};
300     IPropertyBag *pPropBagCat = NULL;
301     HRESULT hr;
302
303     VariantInit(pvar);
304     V_VT(pvar) = VT_BSTR;
305
306     hr = IMoniker_BindToStorage(pMoniker, NULL, NULL, &IID_IPropertyBag,
307                                 (LPVOID *) &pPropBagCat);
308
309     if (SUCCEEDED(hr))
310         hr = IPropertyBag_Read(pPropBagCat, wszClsidName, pvar, NULL);
311
312     if (SUCCEEDED(hr))
313         hr = CLSIDFromString(V_UNION(pvar, bstrVal), pclsid);
314
315     if (SUCCEEDED(hr))
316         hr = IPropertyBag_Read(pPropBagCat, wszFriendlyName, pvar, NULL);
317
318     if (SUCCEEDED(hr))
319         TRACE("Moniker = %s - %s\n", debugstr_guid(pclsid),
320               debugstr_w(V_UNION(pvar, bstrVal)));
321
322     if (pPropBagCat)
323         IPropertyBag_Release(pPropBagCat);
324
325     return hr;
326 }
327
328 static HRESULT GetSplitter(MediaDetImpl *This)
329 {
330     IFileSourceFilter *file;
331     LPOLESTR name;
332     AM_MEDIA_TYPE mt;
333     GUID type[2];
334     IFilterMapper2 *map;
335     IEnumMoniker *filters;
336     IMoniker *mon;
337     VARIANT var;
338     GUID clsid;
339     IBaseFilter *splitter;
340     IEnumPins *pins;
341     IPin *source_pin, *splitter_pin;
342     HRESULT hr;
343
344     hr = CoCreateInstance(&CLSID_FilterMapper2, NULL, CLSCTX_INPROC_SERVER,
345                           &IID_IFilterMapper2, (void **) &map);
346     if (FAILED(hr))
347         return hr;
348
349     hr = IBaseFilter_QueryInterface(This->source, &IID_IFileSourceFilter,
350                                     (void **) &file);
351     if (FAILED(hr))
352     {
353         IFilterMapper2_Release(map);
354         return hr;
355     }
356
357     hr = IFileSourceFilter_GetCurFile(file, &name, &mt);
358     IFileSourceFilter_Release(file);
359     CoTaskMemFree(name);
360     if (FAILED(hr))
361     {
362         IFilterMapper2_Release(map);
363         return hr;
364     }
365     type[0] = mt.majortype;
366     type[1] = mt.subtype;
367     CoTaskMemFree(mt.pbFormat);
368
369     hr = IFilterMapper2_EnumMatchingFilters(map, &filters, 0, TRUE,
370                                             MERIT_UNLIKELY, FALSE, 1, type,
371                                             NULL, NULL, FALSE, TRUE,
372                                             0, NULL, NULL, NULL);
373     IFilterMapper2_Release(map);
374     if (FAILED(hr))
375         return hr;
376
377     hr = IEnumMoniker_Next(filters, 1, &mon, NULL);
378     IEnumMoniker_Release(filters);
379     if (hr != S_OK)    /* No matches, what do we do?  */
380         return E_NOINTERFACE;
381
382     hr = GetFilterInfo(mon, &clsid, &var);
383     IMoniker_Release(mon);
384     if (FAILED(hr))
385         return hr;
386
387     hr = CoCreateInstance(&clsid, NULL, CLSCTX_INPROC_SERVER,
388                           &IID_IBaseFilter, (void **) &splitter);
389     if (FAILED(hr))
390         return hr;
391
392     hr = IGraphBuilder_AddFilter(This->graph, splitter,
393                                  V_UNION(&var, bstrVal));
394     if (FAILED(hr))
395     {
396         IBaseFilter_Release(splitter);
397         return hr;
398     }
399     This->splitter = splitter;
400
401     hr = IBaseFilter_EnumPins(This->source, &pins);
402     if (FAILED(hr))
403         return hr;
404     IEnumPins_Next(pins, 1, &source_pin, NULL);
405     IEnumPins_Release(pins);
406
407     hr = IBaseFilter_EnumPins(splitter, &pins);
408     if (FAILED(hr))
409     {
410         IPin_Release(source_pin);
411         return hr;
412     }
413     IEnumPins_Next(pins, 1, &splitter_pin, NULL);
414     IEnumPins_Release(pins);
415
416     hr = IPin_Connect(source_pin, splitter_pin, NULL);
417     IPin_Release(source_pin);
418     IPin_Release(splitter_pin);
419     if (FAILED(hr))
420         return hr;
421
422     return S_OK;
423 }
424
425 static HRESULT WINAPI MediaDet_put_Filename(IMediaDet* iface, BSTR newVal)
426 {
427     static const WCHAR reader[] = {'R','e','a','d','e','r',0};
428     MediaDetImpl *This = (MediaDetImpl *)iface;
429     IGraphBuilder *gb;
430     IBaseFilter *bf;
431     HRESULT hr;
432
433     TRACE("(%p)->(%s)\n", This, debugstr_w(newVal));
434
435     if (This->graph)
436     {
437         WARN("MSDN says not to call this method twice\n");
438         MD_cleanup(This);
439     }
440
441     hr = CoCreateInstance(&CLSID_FilterGraph, NULL, CLSCTX_INPROC_SERVER,
442                           &IID_IGraphBuilder, (void **) &gb);
443     if (FAILED(hr))
444         return hr;
445
446     hr = IGraphBuilder_AddSourceFilter(gb, newVal, reader, &bf);
447     if (FAILED(hr))
448     {
449         IGraphBuilder_Release(gb);
450         return hr;
451     }
452
453     This->graph = gb;
454     This->source = bf;
455     hr = GetSplitter(This);
456     if (FAILED(hr))
457         return hr;
458
459     return MediaDet_put_CurrentStream(iface, 0);
460 }
461
462 static HRESULT WINAPI MediaDet_GetBitmapBits(IMediaDet* iface,
463                                              double StreamTime,
464                                              LONG *pBufferSize, char *pBuffer,
465                                              LONG Width, LONG Height)
466 {
467     MediaDetImpl *This = (MediaDetImpl *)iface;
468     FIXME("(%p)->(%f %p %p %d %d): not implemented!\n", This, StreamTime, pBufferSize, pBuffer,
469           Width, Height);
470     return E_NOTIMPL;
471 }
472
473 static HRESULT WINAPI MediaDet_WriteBitmapBits(IMediaDet* iface,
474                                                double StreamTime, LONG Width,
475                                                LONG Height, BSTR Filename)
476 {
477     MediaDetImpl *This = (MediaDetImpl *)iface;
478     FIXME("(%p)->(%f %d %d %p): not implemented!\n", This, StreamTime, Width, Height, Filename);
479     return E_NOTIMPL;
480 }
481
482 static HRESULT WINAPI MediaDet_get_StreamMediaType(IMediaDet* iface,
483                                                    AM_MEDIA_TYPE *pVal)
484 {
485     MediaDetImpl *This = (MediaDetImpl *)iface;
486     IEnumMediaTypes *types;
487     AM_MEDIA_TYPE *pmt;
488     HRESULT hr;
489
490     TRACE("(%p)\n", This);
491
492     if (!pVal)
493         return E_POINTER;
494
495     if (!This->cur_pin)
496         return E_INVALIDARG;
497
498     hr = IPin_EnumMediaTypes(This->cur_pin, &types);
499     if (SUCCEEDED(hr))
500     {
501         hr = (IEnumMediaTypes_Next(types, 1, &pmt, NULL) == S_OK
502               ? S_OK
503               : E_NOINTERFACE);
504         IEnumMediaTypes_Release(types);
505     }
506
507     if (SUCCEEDED(hr))
508     {
509         *pVal = *pmt;
510         CoTaskMemFree(pmt);
511     }
512
513     return hr;
514 }
515
516 static HRESULT WINAPI MediaDet_GetSampleGrabber(IMediaDet* iface,
517                                                 ISampleGrabber **ppVal)
518 {
519     MediaDetImpl *This = (MediaDetImpl *)iface;
520     FIXME("(%p)->(%p): not implemented!\n", This, ppVal);
521     return E_NOTIMPL;
522 }
523
524 static HRESULT WINAPI MediaDet_get_FrameRate(IMediaDet* iface, double *pVal)
525 {
526     MediaDetImpl *This = (MediaDetImpl *)iface;
527     AM_MEDIA_TYPE mt;
528     VIDEOINFOHEADER *vh;
529     HRESULT hr;
530
531     TRACE("(%p)\n", This);
532
533     if (!pVal)
534         return E_POINTER;
535
536     hr = MediaDet_get_StreamMediaType(iface, &mt);
537     if (FAILED(hr))
538         return hr;
539
540     if (!IsEqualGUID(&mt.majortype, &MEDIATYPE_Video))
541     {
542         CoTaskMemFree(mt.pbFormat);
543         return VFW_E_INVALIDMEDIATYPE;
544     }
545
546     vh = (VIDEOINFOHEADER *) mt.pbFormat;
547     *pVal = 1.0e7 / (double) vh->AvgTimePerFrame;
548
549     CoTaskMemFree(mt.pbFormat);
550     return S_OK;
551 }
552
553 static HRESULT WINAPI MediaDet_EnterBitmapGrabMode(IMediaDet* iface,
554                                                    double SeekTime)
555 {
556     MediaDetImpl *This = (MediaDetImpl *)iface;
557     FIXME("(%p)->(%f): not implemented!\n", This, SeekTime);
558     return E_NOTIMPL;
559 }
560
561 static const IMediaDetVtbl IMediaDet_VTable =
562 {
563     MediaDet_QueryInterface,
564     MediaDet_AddRef,
565     MediaDet_Release,
566     MediaDet_get_Filter,
567     MediaDet_put_Filter,
568     MediaDet_get_OutputStreams,
569     MediaDet_get_CurrentStream,
570     MediaDet_put_CurrentStream,
571     MediaDet_get_StreamType,
572     MediaDet_get_StreamTypeB,
573     MediaDet_get_StreamLength,
574     MediaDet_get_Filename,
575     MediaDet_put_Filename,
576     MediaDet_GetBitmapBits,
577     MediaDet_WriteBitmapBits,
578     MediaDet_get_StreamMediaType,
579     MediaDet_GetSampleGrabber,
580     MediaDet_get_FrameRate,
581     MediaDet_EnterBitmapGrabMode,
582 };
583
584 HRESULT MediaDet_create(IUnknown * pUnkOuter, LPVOID * ppv) {
585     MediaDetImpl* obj = NULL;
586
587     TRACE("(%p,%p)\n", ppv, pUnkOuter);
588
589     if (pUnkOuter)
590         return CLASS_E_NOAGGREGATION;
591
592     obj = CoTaskMemAlloc(sizeof(MediaDetImpl));
593     if (NULL == obj) {
594         *ppv = NULL;
595         return E_OUTOFMEMORY;
596     }
597     ZeroMemory(obj, sizeof(MediaDetImpl));
598
599     obj->refCount = 1;
600     obj->MediaDet_Vtbl = &IMediaDet_VTable;
601     obj->graph = NULL;
602     obj->source = NULL;
603     obj->splitter = NULL;
604     obj->cur_pin = NULL;
605     obj->num_streams = -1;
606     obj->cur_stream = 0;
607     *ppv = obj;
608
609     return S_OK;
610 }