]> git.sesse.net Git - vlc/blob - modules/access/dshow/filter.cpp
* modules/access/dshow: converted to access2/demux2. Let's hope I didn't break anythi...
[vlc] / modules / access / dshow / filter.cpp
1 /*****************************************************************************
2  * filter.c : DirectShow access module for vlc
3  *****************************************************************************
4  * Copyright (C) 2002 VideoLAN
5  * $Id$
6  *
7  * Author: Gildas Bazin <gbazin@videolan.org>
8  *
9  * This program is free software; you can redistribute it and/or modify
10  * it under the terms of the GNU General Public License as published by
11  * the Free Software Foundation; either version 2 of the License, or
12  * (at your option) any later version.
13  *
14  * This program is distributed in the hope that it will be useful,
15  * but WITHOUT ANY WARRANTY; without even the implied warranty of
16  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
17  * GNU General Public License for more details.
18  *
19  * You should have received a copy of the GNU General Public License
20  * along with this program; if not, write to the Free Software
21  * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA  02111, USA.
22  *****************************************************************************/
23
24 /*****************************************************************************
25  * Preamble
26  *****************************************************************************/
27 #include <stdlib.h>
28 #include <stdio.h>
29 #include <string.h>
30
31 #include <vlc/vlc.h>
32 #include <vlc/input.h>
33 #include <vlc/vout.h>
34
35 #ifndef _MSC_VER
36     /* Work-around a bug in w32api-2.5 */
37 #   define QACONTAINERFLAGS QACONTAINERFLAGS_SOMETHINGELSE
38 #endif
39
40 #include "filter.h"
41
42 #define DEBUG_DSHOW 1
43
44 struct access_sys_t
45 {
46     vlc_mutex_t lock;
47     vlc_cond_t  wait;
48 };
49
50
51 #define FILTER_NAME  L"VideoLAN Capture Filter"
52 #define PIN_NAME     L"Capture"
53
54 /*****************************************************************************
55  * DirectShow GUIDs.
56  * Easier to define them hear as mingw doesn't provide them all.
57  *****************************************************************************/
58 const GUID CLSID_SystemDeviceEnum = {0x62be5d10, 0x60eb, 0x11d0, {0xbd, 0x3b, 0x00, 0xa0, 0xc9, 0x11, 0xce, 0x86}};
59 const GUID CLSID_VideoInputDeviceCategory = {0x860BB310,0x5D01,0x11d0,{0xBD,0x3B,0x00,0xA0,0xC9,0x11,0xCE,0x86}};
60 const GUID CLSID_AudioInputDeviceCategory = {0x33d9a762, 0x90c8, 0x11d0, {0xbd, 0x43, 0x00, 0xa0, 0xc9, 0x11, 0xce, 0x86}};
61 const GUID IID_IPropertyBag = {0x55272A00, 0x42CB, 0x11CE, {0x81, 0x35, 0x00, 0xAA, 0x00, 0x4B, 0xB8, 0x51}};
62 const GUID IID_ICreateDevEnum = {0x29840822, 0x5b84, 0x11d0, {0xbd, 0x3b, 0x00, 0xa0, 0xc9, 0x11, 0xce, 0x86}};
63 const GUID IID_IFilterGraph = {0x56a8689f, 0x0ad4, 0x11ce, {0xb0, 0x3a, 0x00, 0x20, 0xaf, 0x0b, 0xa7, 0x70}};
64 const GUID IID_IMediaControl = {0x56a868b1, 0x0ad4, 0x11ce, {0xb0, 0x3a, 0x00, 0x20, 0xaf, 0x0b, 0xa7, 0x70}};
65 const GUID CLSID_FilterGraph = {0xe436ebb3, 0x524f, 0x11ce, {0x9f, 0x53, 0x00, 0x20, 0xaf, 0x0b, 0xa7, 0x70}};
66
67 const GUID IID_IUnknown = {0x00000000, 0x0000, 0x0000, {0xc0,0x00, 0x00,0x00,0x00,0x00,0x00,0x46}};
68 const GUID IID_IPersist = {0x0000010c, 0x0000, 0x0000, {0xc0,0x00, 0x00,0x00,0x00,0x00,0x00,0x46}};
69 const GUID IID_IMediaFilter = {0x56a86899, 0x0ad4, 0x11ce, {0xb0,0x3a, 0x00,0x20,0xaf,0x0b,0xa7,0x70}};
70 const GUID IID_IBaseFilter = {0x56a86895, 0x0ad4, 0x11ce, {0xb0, 0x3a, 0x00, 0x20, 0xaf, 0x0b, 0xa7, 0x70}};
71 const GUID IID_IPin = {0x56a86891, 0x0ad4, 0x11ce, {0xb0,0x3a, 0x00,0x20,0xaf,0x0b,0xa7,0x70}};
72 const GUID IID_IMemInputPin = {0x56a8689d, 0x0ad4, 0x11ce, {0xb0,0x3a, 0x00,0x20,0xaf,0x0b,0xa7,0x70}};
73
74 const GUID IID_IEnumPins = {0x56a86892, 0x0ad4, 0x11ce, {0xb0,0x3a, 0x00,0x20,0xaf,0x0b,0xa7,0x70}};
75 const GUID IID_IEnumMediaTypes = {0x89c31040, 0x846b, 0x11ce, {0x97,0xd3, 0x00,0xaa,0x00,0x55,0x59,0x5a}};
76
77 const GUID IID_IAMBufferNegotiation = {0x56ed71a0, 0xaf5f, 0x11d0, {0xb3, 0xf0, 0x00, 0xaa, 0x00, 0x37, 0x61, 0xc5}};
78
79 const GUID IID_ISpecifyPropertyPages = {0xb196b28b, 0xbab4, 0x101a, {0xb6, 0x9c, 0x00, 0xaa, 0x00, 0x34, 0x1d, 0x07}};
80
81 const GUID IID_IQualityControl = {0x56a868a5, 0x0ad4, 0x11ce, {0xb, 0x3a, 0x00, 0x20, 0xaf, 0x0b, 0xa7, 0x70}};
82
83 const GUID CLSID_CaptureGraphBuilder2 = {0xBF87B6E1, 0x8C27, 0x11d0, {0xB3, 0xF0, 0x0, 0xAA, 0x00, 0x37, 0x61, 0xC5}};
84
85 const GUID IID_IGraphBuilder = {0x56a868a9, 0x0ad4, 0x11ce, {0xb0, 0x3a, 0x00, 0x20, 0xaf, 0x0b, 0xa7, 0x70}};
86
87 const GUID IID_ICaptureGraphBuilder2 = {0x93E5A4E0, 0x2D50, 0x11d2, {0xAB, 0xFA, 0x00, 0xA0, 0xC9, 0xC6, 0xE3, 0x8D}};
88
89 const GUID IID_IAMTVAudio = {0x83EC1C30, 0x23D1, 0x11d1, {0x99, 0xE6, 0x00, 0xA0, 0xC9, 0x56, 0x02, 0x66}};
90 const GUID IID_IAMStreamConfig = {0xC6E13340, 0x30AC, 0x11d0, {0xA1, 0x8C, 0x00, 0xA0, 0xC9, 0x11, 0x89, 0x56}};
91 const GUID IID_IAMCrossbar = {0xC6E13380, 0x30AC, 0x11d0, {0xA1, 0x8C, 0x00, 0xA0, 0xC9, 0x11, 0x89, 0x56}};
92 const GUID IID_IAMTVTuner = {0x211A8766, 0x03AC, 0x11d1, {0x8D, 0x13, 0x00, 0xAA, 0x00, 0xBD, 0x83, 0x39}};
93
94 const GUID IID_IKsPropertySet = {0x31EFAC30, 0x515C, 0x11d0, {0xA9, 0xAA, 0x00, 0xAA, 0x00, 0x61, 0xBE, 0x93}};
95
96
97 /*
98  * MEDIATYPEs and MEDIASUBTYPEs
99  */
100 const GUID MEDIATYPE_Video = {0x73646976, 0x0000, 0x0010, {0x80, 0x00, 0x00, 0xaa, 0x00, 0x38, 0x9b, 0x71}};
101 const GUID MEDIATYPE_Interleaved = {0x73766169, 0x0000, 0x0010, {0x80, 0x00, 0x00, 0xaa, 0x00, 0x38, 0x9b, 0x71}};
102 const GUID MEDIATYPE_Stream = {0xe436eb83, 0x524f, 0x11ce, {0x9f, 0x53, 0x00, 0x20, 0xaf, 0x0b, 0xa7, 0x70}};
103 const GUID MEDIASUBTYPE_PREVIEW_VIDEO = {0x2859e1da, 0xb81f, 0x4fbd, {0x94, 0x3b, 0xe2, 0x37, 0x24, 0xa1, 0xab, 0xb3}};
104
105 /* Packed RGB formats */
106 const GUID MEDIASUBTYPE_RGB1 = {0xe436eb78, 0x524f, 0x11ce, {0x9f, 0x53, 0x00, 0x20, 0xaf, 0x0b, 0xa7, 0x70}};
107 const GUID MEDIASUBTYPE_RGB4 = {0xe436eb79, 0x524f, 0x11ce, {0x9f, 0x53, 0x00, 0x20, 0xaf, 0x0b, 0xa7, 0x70}};
108 const GUID MEDIASUBTYPE_RGB8 = {0xe436eb7a, 0x524f, 0x11ce, {0x9f, 0x53, 0x00, 0x20, 0xaf, 0x0b, 0xa7, 0x70}};
109 const GUID MEDIASUBTYPE_RGB565 = {0xe436eb7b, 0x524f, 0x11ce, {0x9f, 0x53, 0x00, 0x20, 0xaf, 0x0b, 0xa7, 0x70}};
110 const GUID MEDIASUBTYPE_RGB555 = {0xe436eb7c, 0x524f, 0x11ce, {0x9f, 0x53, 0x00, 0x20, 0xaf, 0x0b, 0xa7, 0x70}};
111 const GUID MEDIASUBTYPE_RGB24 = {0xe436eb7d, 0x524f, 0x11ce, {0x9f, 0x53, 0x00, 0x20, 0xaf, 0x0b, 0xa7, 0x70}};
112 const GUID MEDIASUBTYPE_RGB32 = {0xe436eb7e, 0x524f, 0x11ce, {0x9f, 0x53, 0x00, 0x20, 0xaf, 0x0b, 0xa7, 0x70}};
113 const GUID MEDIASUBTYPE_ARGB32 = {0x773c9ac0, 0x3274, 0x11d0, {0xb7, 0x24, 0x0, 0xaa, 0x0, 0x6c, 0x1a, 0x1}};
114
115 /* Packed YUV formats */
116 const GUID MEDIASUBTYPE_YUYV = {0x56595559, 0x0000, 0x0010, {0x80, 0x00, 0x00, 0xaa, 0x00, 0x38, 0x9b, 0x71}};
117 const GUID MEDIASUBTYPE_Y411 = {0x31313459, 0x0000, 0x0010, {0x80, 0x00, 0x00, 0xaa, 0x00, 0x38, 0x9b, 0x71}};
118 const GUID MEDIASUBTYPE_Y211 = {0x31313259, 0x0000, 0x0010, {0x80, 0x00, 0x00, 0xaa, 0x00, 0x38, 0x9b, 0x71}};
119 const GUID MEDIASUBTYPE_YUY2 = {0x32595559, 0x0000, 0x0010, {0x80, 0x00, 0x00, 0xaa, 0x00, 0x38, 0x9b, 0x71}};
120 const GUID MEDIASUBTYPE_YVYU = {0x55595659, 0x0000, 0x0010, {0x80, 0x00, 0x00, 0xaa, 0x00, 0x38, 0x9b, 0x71}};
121 const GUID MEDIASUBTYPE_UYVY = {0x59565955, 0x0000, 0x0010, {0x80, 0x00, 0x00, 0xaa, 0x00, 0x38, 0x9b, 0x71}};
122
123 /* Planar YUV formats */
124 const GUID MEDIASUBTYPE_YVU9 = {0x39555659, 0x0000, 0x0010, {0x80, 0x00, 0x00, 0xaa, 0x00, 0x38, 0x9b, 0x71}};
125 const GUID MEDIASUBTYPE_YV12 = {0x32315659, 0x0000, 0x0010, {0x80, 0x00, 0x00, 0xaa, 0x00, 0x38, 0x9b, 0x71}};
126 const GUID MEDIASUBTYPE_IYUV = {0x56555949, 0x0000, 0x0010, {0x80, 0x00, 0x00, 0xaa, 0x00, 0x38, 0x9b, 0x71}}; /* identical to YV12 */
127 const GUID MEDIASUBTYPE_Y41P = {0x50313459, 0x0000, 0x0010, {0x80, 0x00, 0x00, 0xaa, 0x00, 0x38, 0x9b, 0x71}};
128 const GUID MEDIASUBTYPE_I420 = {0x30323449, 0x0000, 0x0010, {0x80, 0x00, 0x00, 0xaa, 0x00, 0x38, 0x9b, 0x71}};
129
130 const GUID MEDIATYPE_Audio = {0x73647561, 0x0000, 0x0010, {0x80, 0x00, 0x00, 0xaa, 0x00, 0x38, 0x9b, 0x71}};
131 const GUID FORMAT_WaveFormatEx = {0x05589f81, 0xc356, 0x11ce, {0xbf, 0x01, 0x00, 0xaa, 0x00, 0x55, 0x59, 0x5a}};
132 const GUID MEDIASUBTYPE_PCM = {0x00000001, 0x0000, 0x0010, {0x80, 0x00, 0x00, 0xaa, 0x00, 0x38, 0x9b, 0x71}};
133 const GUID MEDIASUBTYPE_IEEE_FLOAT = {0x00000003, 0x0000, 0x0010, {0x80, 0x00, 0x00, 0xaa, 0x00, 0x38, 0x9b, 0x71}};
134
135 /* DV formats */
136 const GUID MEDIASUBTYPE_dvsd = {0x64737664, 0x0000, 0x0010, {0x80, 0x00, 0x00, 0xaa, 0x00, 0x38, 0x9b, 0x71}};
137 const GUID MEDIASUBTYPE_dvhd = {0x64687664, 0x0000, 0x0010, {0x80, 0x00, 0x00, 0xaa, 0x00, 0x38, 0x9b, 0x71}};
138 const GUID MEDIASUBTYPE_dvsl = {0x6c737664, 0x0000, 0x0010, {0x80, 0x00, 0x00, 0xaa, 0x00, 0x38, 0x9b, 0x71}};
139
140 /* MPEG2 formats */
141 const GUID MEDIASUBTYPE_MPEG2_VIDEO = {0xe06d8026, 0xdb46, 0x11cf, {0xb4, 0xd1, 0x00, 0x80, 0x5f, 0x6c, 0xbb, 0xea}};
142 const GUID MEDIASUBTYPE_MPEG2_PROGRAM = {0xe06d8022, 0xdb46, 0x11cf, {0xb4, 0xd1, 0x00, 0x80, 0x5f, 0x6c, 0xbb, 0xea}};
143 const GUID MEDIASUBTYPE_MPEG2_TRANSPORT = {0xe06d8023, 0xdb46, 0x11cf, {0xb4, 0xd1, 0x00, 0x80, 0x5f, 0x6c, 0xbb, 0xea}};
144 const GUID FORMAT_MPEG2Video = {0xe06d80e3, 0xdb46, 0x11cf, {0xb4, 0xd1, 0x00, 0x80, 0x5f, 0x6c, 0xbb, 0xea}};
145
146 /* Analog Video */
147 const GUID FORMAT_AnalogVideo = {0x482dde0, 0x7817, 0x11cf, {0x8a, 0x3, 0x0, 0xaa, 0x0, 0x6e, 0xcb, 0x65}};
148
149 const GUID MEDIATYPE_AnalogVideo = {0x482dde1, 0x7817, 0x11cf, {0x8a, 0x3, 0x0, 0xab, 0x0, 0x6e, 0xcb, 0x65}};
150
151 const GUID MEDIASUBTYPE_AnalogVideo_NTSC_M = {0x482dde2, 0x7817, 0x11cf, {0x8a, 0x3, 0x0, 0xaa, 0x0, 0x6e, 0xcb, 0x65}};
152 const GUID MEDIASUBTYPE_AnalogVideo_PAL_B = {0x482dde5, 0x7817, 0x11cf, {0x8a, 0x3, 0x0, 0xaa, 0x0, 0x6e, 0xcb, 0x65}};
153 const GUID MEDIASUBTYPE_AnalogVideo_PAL_D = {0x482dde6, 0x7817, 0x11cf, {0x8a, 0x3, 0x0, 0xaa, 0x0, 0x6e, 0xcb, 0x65}};
154 const GUID MEDIASUBTYPE_AnalogVideo_PAL_G = {0x482dde7, 0x7817, 0x11cf, {0x8a, 0x3, 0x0, 0xaa, 0x0, 0x6e, 0xcb, 0x65}};
155 const GUID MEDIASUBTYPE_AnalogVideo_PAL_H = {0x482dde8, 0x7817, 0x11cf, {0x8a, 0x3, 0x0, 0xaa, 0x0, 0x6e, 0xcb, 0x65}};
156 const GUID MEDIASUBTYPE_AnalogVideo_PAL_I = {0x482dde9, 0x7817, 0x11cf, {0x8a, 0x3, 0x0, 0xaa, 0x0, 0x6e, 0xcb, 0x65}};
157 const GUID MEDIASUBTYPE_AnalogVideo_PAL_M = {0x482ddea, 0x7817, 0x11cf, {0x8a, 0x3, 0x0, 0xaa, 0x0, 0x6e, 0xcb, 0x65}};
158 const GUID MEDIASUBTYPE_AnalogVideo_PAL_N = {0x482ddeb, 0x7817, 0x11cf, {0x8a, 0x3, 0x0, 0xaa, 0x0, 0x6e, 0xcb, 0x65}};
159 const GUID MEDIASUBTYPE_AnalogVideo_PAL_N_COMBO = {0x482ddec, 0x7817, 0x11cf, {0x8a, 0x3, 0x0, 0xaa, 0x0, 0x6e, 0xcb, 0x65}};
160 const GUID MEDIASUBTYPE_AnalogVideo_SECAM_B = {0x482ddf0, 0x7817, 0x11cf, {0x8a, 0x3, 0x0, 0xaa, 0x0, 0x6e, 0xcb, 0x65}};
161 const GUID MEDIASUBTYPE_AnalogVideo_SECAM_D = {0x482ddf1, 0x7817, 0x11cf, {0x8a, 0x3, 0x0, 0xaa, 0x0, 0x6e, 0xcb, 0x65}};
162 const GUID MEDIASUBTYPE_AnalogVideo_SECAM_G = {0x482ddf2, 0x7817, 0x11cf, {0x8a, 0x3, 0x0, 0xaa, 0x0, 0x6e, 0xcb, 0x65}};
163 const GUID MEDIASUBTYPE_AnalogVideo_SECAM_H = {0x482ddf3, 0x7817, 0x11cf, {0x8a, 0x3, 0x0, 0xaa, 0x0, 0x6e, 0xcb, 0x65}};
164 const GUID MEDIASUBTYPE_AnalogVideo_SECAM_K = {0x482ddf4, 0x7817, 0x11cf, {0x8a, 0x3, 0x0, 0xaa, 0x0, 0x6e, 0xcb, 0x65}};
165 const GUID MEDIASUBTYPE_AnalogVideo_SECAM_K1 = {0x482ddf5, 0x7817, 0x11cf, {0x8a, 0x3, 0x0, 0xaa, 0x0, 0x6e, 0xcb, 0x65}};
166 const GUID MEDIASUBTYPE_AnalogVideo_SECAM_L = {0x482ddf6, 0x7817, 0x11cf, {0x8a, 0x3, 0x0, 0xaa, 0x0, 0x6e, 0xcb, 0x65}};
167
168 const GUID AMPROPSETID_Pin= {0x9b00f101, 0x1567, 0x11d1, {0xb3, 0xf1, 0x0, 0xaa, 0x0, 0x37, 0x61, 0xc5}};
169 const GUID PIN_CATEGORY_ANALOGVIDEOIN= {0xfb6c4283, 0x0353, 0x11d1, {0x90, 0x5f, 0x00, 0x00, 0xc0, 0xcc, 0x16, 0xba}};
170 const GUID PIN_CATEGORY_CAPTURE= {0xfb6c4281, 0x0353, 0x11d1, {0x90, 0x5f, 0x0, 0x0, 0xc0, 0xcc, 0x16, 0xba}};
171 const GUID LOOK_UPSTREAM_ONLY= {0xac798be0, 0x98e3, 0x11d1, {0xb3, 0xf1, 0x0, 0xaa, 0x0, 0x37, 0x61, 0xc}};
172
173 const GUID GUID_NULL = {0x0000, 0x0000, 0x0000, {0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00}};
174
175 void WINAPI FreeMediaType( AM_MEDIA_TYPE& mt )
176 {
177     if( mt.cbFormat != 0 )
178     {
179         CoTaskMemFree( (PVOID)mt.pbFormat );
180         mt.cbFormat = 0;
181         mt.pbFormat = NULL;
182     }
183     if( mt.pUnk != NULL )
184     {
185         mt.pUnk->Release();
186         mt.pUnk = NULL;
187     }
188 }
189
190 HRESULT WINAPI CopyMediaType( AM_MEDIA_TYPE *pmtTarget,
191                               const AM_MEDIA_TYPE *pmtSource )
192 {
193     *pmtTarget = *pmtSource;
194     if( pmtSource->cbFormat != 0 )
195     {
196         pmtTarget->pbFormat = (PBYTE)CoTaskMemAlloc( pmtSource->cbFormat );
197         if( pmtTarget->pbFormat == NULL )
198         {
199             pmtTarget->cbFormat = 0;
200             return E_OUTOFMEMORY;
201         }
202         else
203         {
204             CopyMemory( (PVOID)pmtTarget->pbFormat, (PVOID)pmtSource->pbFormat,
205                         pmtTarget->cbFormat );
206         }
207     }
208     if( pmtTarget->pUnk != NULL )
209     {
210         pmtTarget->pUnk->AddRef();
211     }
212
213     return S_OK;
214 }
215
216 int GetFourCCFromMediaType(const AM_MEDIA_TYPE &media_type)
217 {
218     int i_fourcc = 0;
219
220     if( media_type.majortype == MEDIATYPE_Video )
221     {
222         /* Packed RGB formats */
223         if( media_type.subtype == MEDIASUBTYPE_RGB1 )
224            i_fourcc = VLC_FOURCC( 'R', 'G', 'B', '1' );
225         else if( media_type.subtype == MEDIASUBTYPE_RGB4 )
226            i_fourcc = VLC_FOURCC( 'R', 'G', 'B', '4' );
227         else if( media_type.subtype == MEDIASUBTYPE_RGB8 )
228            i_fourcc = VLC_FOURCC( 'R', 'G', 'B', '8' );
229         else if( media_type.subtype == MEDIASUBTYPE_RGB555 )
230            i_fourcc = VLC_FOURCC( 'R', 'V', '1', '5' );
231         else if( media_type.subtype == MEDIASUBTYPE_RGB565 )
232            i_fourcc = VLC_FOURCC( 'R', 'V', '1', '6' );
233         else if( media_type.subtype == MEDIASUBTYPE_RGB24 )
234            i_fourcc = VLC_FOURCC( 'R', 'V', '2', '4' );
235         else if( media_type.subtype == MEDIASUBTYPE_RGB32 )
236            i_fourcc = VLC_FOURCC( 'R', 'V', '3', '2' );
237         else if( media_type.subtype == MEDIASUBTYPE_ARGB32 )
238            i_fourcc = VLC_FOURCC( 'R', 'G', 'B', 'A' );
239
240         /* Planar YUV formats */
241         else if( media_type.subtype == MEDIASUBTYPE_I420 )
242            i_fourcc = VLC_FOURCC( 'I', '4', '2', '0' );
243         else if( media_type.subtype == MEDIASUBTYPE_Y41P )
244            i_fourcc = VLC_FOURCC( 'I', '4', '1', '1' );
245         else if( media_type.subtype == MEDIASUBTYPE_YV12 )
246            i_fourcc = VLC_FOURCC( 'Y', 'V', '1', '2' );
247         else if( media_type.subtype == MEDIASUBTYPE_IYUV )
248            i_fourcc = VLC_FOURCC( 'Y', 'V', '1', '2' );
249         else if( media_type.subtype == MEDIASUBTYPE_YVU9 )
250            i_fourcc = VLC_FOURCC( 'Y', 'V', 'U', '9' );
251
252         /* Packed YUV formats */
253         else if( media_type.subtype == MEDIASUBTYPE_YVYU )
254            i_fourcc = VLC_FOURCC( 'Y', 'V', 'Y', 'U' );
255         else if( media_type.subtype == MEDIASUBTYPE_YUYV )
256            i_fourcc = VLC_FOURCC( 'Y', 'U', 'Y', '2' );
257         else if( media_type.subtype == MEDIASUBTYPE_Y411 )
258            i_fourcc = VLC_FOURCC( 'I', '4', '1', 'N' );
259         else if( media_type.subtype == MEDIASUBTYPE_Y211 )
260            i_fourcc = VLC_FOURCC( 'Y', '2', '1', '1' );
261         else if( media_type.subtype == MEDIASUBTYPE_YUY2 )
262            i_fourcc = VLC_FOURCC( 'Y', 'U', 'Y', '2' );
263         else if( media_type.subtype == MEDIASUBTYPE_UYVY )
264            i_fourcc = VLC_FOURCC( 'U', 'Y', 'V', 'Y' );
265
266         /* MPEG2 video elementary stream */
267         else if( media_type.subtype == MEDIASUBTYPE_MPEG2_VIDEO )
268            i_fourcc = VLC_FOURCC( 'm', 'p', '2', 'v' );
269
270         /* DV formats */
271         else if( media_type.subtype == MEDIASUBTYPE_dvsl )
272            i_fourcc = VLC_FOURCC( 'd', 'v', 's', 'l' );
273         else if( media_type.subtype == MEDIASUBTYPE_dvsd )
274            i_fourcc = VLC_FOURCC( 'd', 'v', 's', 'd' );
275         else if( media_type.subtype == MEDIASUBTYPE_dvhd )
276            i_fourcc = VLC_FOURCC( 'd', 'v', 'h', 'd' );
277     }
278     else if( media_type.majortype == MEDIATYPE_Audio )
279     {
280         if( media_type.formattype == FORMAT_WaveFormatEx )
281         {
282             if( media_type.subtype == MEDIASUBTYPE_PCM )
283                 i_fourcc = VLC_FOURCC( 'a', 'r', 'a', 'w' );
284             else if( media_type.subtype == MEDIASUBTYPE_IEEE_FLOAT )
285                 i_fourcc = VLC_FOURCC( 'f', 'l', '3', '2' );
286         }
287     }
288     else if( media_type.majortype == MEDIATYPE_Stream )
289         {
290         if( media_type.subtype == MEDIASUBTYPE_MPEG2_PROGRAM )
291                    i_fourcc = VLC_FOURCC( 'm', 'p', '2', 'p' );
292         else if( media_type.subtype == MEDIASUBTYPE_MPEG2_TRANSPORT )
293                    i_fourcc = VLC_FOURCC( 'm', 'p', '2', 't' );
294     }
295     return i_fourcc;
296 }
297
298 /****************************************************************************
299  * Implementation of our dummy directshow filter pin class
300  ****************************************************************************/
301
302 CapturePin::CapturePin( access_t * _p_input, CaptureFilter *_p_filter,
303                         AM_MEDIA_TYPE *mt, size_t mt_count )
304   : p_input( _p_input ), p_filter( _p_filter ), p_connected_pin( NULL ),
305     media_types(mt), media_type_count(mt_count), i_ref( 1 )
306 {
307     cx_media_type.majortype = mt[0].majortype;
308     cx_media_type.subtype   = GUID_NULL;
309     cx_media_type.pbFormat  = NULL;
310     cx_media_type.pUnk      = NULL;
311 }
312
313 CapturePin::~CapturePin()
314 {
315 #ifdef DEBUG_DSHOW
316     msg_Dbg( p_input, "CapturePin::~CapturePin" );
317 #endif
318     for( size_t c=0; c<media_type_count; c++ )
319     {
320         FreeMediaType(media_types[c]);
321     }
322     FreeMediaType(cx_media_type);
323 }
324
325 HRESULT CapturePin::CustomGetSample( VLCMediaSample *vlc_sample )
326 {
327 #if 0 //def DEBUG_DSHOW
328     msg_Dbg( p_input, "CapturePin::CustomGetSample" );
329 #endif
330
331     access_sys_t *p_sys = p_input->p_sys;
332     vlc_mutex_lock( &p_sys->lock );
333     if( samples_queue.size() )
334     {
335         *vlc_sample = samples_queue.back();
336         samples_queue.pop_back();
337         vlc_mutex_unlock( &p_sys->lock );
338         return S_OK;
339     }
340     vlc_mutex_unlock( &p_sys->lock );
341     return S_FALSE;
342 }
343
344 AM_MEDIA_TYPE &CapturePin::CustomGetMediaType()
345 {
346     return cx_media_type;
347 }
348
349 /* IUnknown methods */
350 STDMETHODIMP CapturePin::QueryInterface(REFIID riid, void **ppv)
351 {
352 #ifdef DEBUG_DSHOW
353     msg_Dbg( p_input, "CapturePin::QueryInterface" );
354 #endif
355
356     if( riid == IID_IUnknown ||
357         riid == IID_IPin )
358     {
359         AddRef();
360         *ppv = (IPin *)this;
361         return NOERROR;
362     }
363     if( riid == IID_IMemInputPin )
364     {
365         AddRef();
366         *ppv = (IMemInputPin *)this;
367         return NOERROR;
368     }
369     else
370     {
371 #ifdef DEBUG_DSHOW
372         msg_Dbg( p_input, "CapturePin::QueryInterface() failed for: "
373                  "%04X-%02X-%02X-%02X%02X%02X%02X%02X%02X%02X%02X",
374                  (int)riid.Data1, (int)riid.Data2, (int)riid.Data3,
375                  static_cast<int>(riid.Data4[0]), (int)riid.Data4[1],
376                  (int)riid.Data4[2], (int)riid.Data4[3],
377                  (int)riid.Data4[4], (int)riid.Data4[5],
378                  (int)riid.Data4[6], (int)riid.Data4[7] );
379 #endif
380         *ppv = NULL;
381         return E_NOINTERFACE;
382     }
383 }
384
385 STDMETHODIMP_(ULONG) CapturePin::AddRef()
386 {
387 #ifdef DEBUG_DSHOW_L1
388     msg_Dbg( p_input, "CapturePin::AddRef (ref: %i)", i_ref );
389 #endif
390
391     return i_ref++;
392 };
393 STDMETHODIMP_(ULONG) CapturePin::Release()
394 {
395 #ifdef DEBUG_DSHOW_L1
396     msg_Dbg( p_input, "CapturePin::Release (ref: %i)", i_ref );
397 #endif
398
399     if( !InterlockedDecrement(&i_ref) ) delete this;
400
401     return 0;
402 };
403
404 /* IPin methods */
405 STDMETHODIMP CapturePin::Connect( IPin * pReceivePin,
406                                   const AM_MEDIA_TYPE *pmt )
407 {
408 #ifdef DEBUG_DSHOW
409     msg_Dbg( p_input, "CapturePin::Connect" );
410 #endif
411     if( State_Stopped == p_filter->state )
412     {
413         if( ! p_connected_pin )
414         {
415             if( ! pmt )
416                 return S_OK;
417                 
418             if( (GUID_NULL != pmt->majortype) && (media_types[0].majortype != pmt->majortype) )
419                 return S_FALSE;
420
421             if( (GUID_NULL != pmt->subtype) && (! GetFourCCFromMediaType(*pmt)) )
422                 return S_FALSE;
423
424             if( pmt->pbFormat )
425             {
426                 if( pmt->majortype == MEDIATYPE_Video )
427                 {
428                     if( (((VIDEOINFOHEADER *)pmt->pbFormat)->bmiHeader.biHeight == 0) )
429                         return S_FALSE;
430                     if( (((VIDEOINFOHEADER *)pmt->pbFormat)->bmiHeader.biWidth == 0) )
431                         return S_FALSE;
432
433                 }
434             }
435             return S_OK;
436         }
437         return VFW_E_ALREADY_CONNECTED;
438     }
439     return VFW_E_NOT_STOPPED;
440 }
441 STDMETHODIMP CapturePin::ReceiveConnection( IPin * pConnector,
442                                             const AM_MEDIA_TYPE *pmt )
443 {
444 #ifdef DEBUG_DSHOW
445     msg_Dbg( p_input, "CapturePin::ReceiveConnection" );
446 #endif
447
448     if( State_Stopped != p_filter->state )
449         return VFW_E_NOT_STOPPED;
450
451     if( ! pmt )
452         return E_POINTER;
453
454     if( p_connected_pin )
455         return VFW_E_ALREADY_CONNECTED;
456
457     if( S_OK != QueryAccept(pmt) )
458         return VFW_E_TYPE_NOT_ACCEPTED;
459
460     p_connected_pin = pConnector;
461     p_connected_pin->AddRef();
462
463     FreeMediaType( cx_media_type );
464     return CopyMediaType( &cx_media_type, pmt );
465 }
466 STDMETHODIMP CapturePin::Disconnect()
467 {
468 #ifdef DEBUG_DSHOW
469     msg_Dbg( p_input, "CapturePin::Disconnect" );
470 #endif
471
472     if( ! p_connected_pin ) return S_FALSE;
473
474 #if 0 // FIXME: This does seem to create crashes sometimes
475     VLCMediaSample vlc_sample;
476     access_sys_t *p_sys = p_input->p_sys;
477
478     vlc_mutex_lock( &p_sys->lock );
479     while( samples_queue.size() )
480     {
481         vlc_sample = samples_queue.back();
482         samples_queue.pop_back();
483         vlc_sample.p_sample->Release();
484     }
485     vlc_mutex_unlock( &p_sys->lock );
486 #endif
487
488     p_connected_pin->Release();
489     p_connected_pin = NULL;
490     FreeMediaType( cx_media_type );
491
492     return S_OK;
493 }
494 STDMETHODIMP CapturePin::ConnectedTo( IPin **pPin )
495 {
496 #ifdef DEBUG_DSHOW
497     msg_Dbg( p_input, "CapturePin::ConnectedTo" );
498 #endif
499
500     if( !p_connected_pin ) return VFW_E_NOT_CONNECTED;
501
502     p_connected_pin->AddRef();
503     *pPin = p_connected_pin;
504
505     return S_OK;
506 }
507 STDMETHODIMP CapturePin::ConnectionMediaType( AM_MEDIA_TYPE *pmt )
508 {
509 #ifdef DEBUG_DSHOW
510     msg_Dbg( p_input, "CapturePin::ConnectionMediaType" );
511 #endif
512
513     if( !p_connected_pin ) return VFW_E_NOT_CONNECTED;
514
515     return CopyMediaType( pmt, &cx_media_type );
516 }
517 STDMETHODIMP CapturePin::QueryPinInfo( PIN_INFO * pInfo )
518 {
519 #ifdef DEBUG_DSHOW
520     msg_Dbg( p_input, "CapturePin::QueryPinInfo" );
521 #endif
522
523     pInfo->pFilter = p_filter;
524     if( p_filter ) p_filter->AddRef();
525
526     memcpy(pInfo->achName, PIN_NAME, sizeof(PIN_NAME));
527     pInfo->dir = PINDIR_INPUT;
528
529     return NOERROR;
530 }
531 STDMETHODIMP CapturePin::QueryDirection( PIN_DIRECTION * pPinDir )
532 {
533 #ifdef DEBUG_DSHOW
534     msg_Dbg( p_input, "CapturePin::QueryDirection" );
535 #endif
536
537     *pPinDir = PINDIR_INPUT;
538     return NOERROR;
539 }
540 STDMETHODIMP CapturePin::QueryId( LPWSTR * Id )
541 {
542 #ifdef DEBUG_DSHOW
543     msg_Dbg( p_input, "CapturePin::QueryId" );
544 #endif
545
546     *Id = L"VideoLAN Capture Pin";
547
548     return S_OK;
549 }
550 STDMETHODIMP CapturePin::QueryAccept( const AM_MEDIA_TYPE *pmt )
551 {
552 #ifdef DEBUG_DSHOW
553     msg_Dbg( p_input, "CapturePin::QueryAccept" );
554 #endif
555     if( State_Stopped == p_filter->state )
556     {
557         if( media_types[0].majortype == pmt->majortype )
558         {
559             if( GetFourCCFromMediaType(*pmt) )
560             {
561                 if( pmt->majortype == MEDIATYPE_Video )
562                     if( pmt->pbFormat &&
563                         ((((VIDEOINFOHEADER *)pmt->pbFormat)->bmiHeader.biHeight == 0) ||
564                          (((VIDEOINFOHEADER *)pmt->pbFormat)->bmiHeader.biWidth == 0)) )
565                         return S_FALSE;
566
567                 if( !p_connected_pin )
568                     return S_OK;
569
570                 FreeMediaType( cx_media_type );
571                 return CopyMediaType( &cx_media_type, pmt );
572             }
573         }
574     }
575     return S_FALSE;
576 }
577 STDMETHODIMP CapturePin::EnumMediaTypes( IEnumMediaTypes **ppEnum )
578 {
579 #ifdef DEBUG_DSHOW
580     msg_Dbg( p_input, "CapturePin::EnumMediaTypes" );
581 #endif
582
583     *ppEnum = new CaptureEnumMediaTypes( p_input, this, NULL );
584
585     if( *ppEnum == NULL ) return E_OUTOFMEMORY;
586
587     return NOERROR;
588 }
589 STDMETHODIMP CapturePin::QueryInternalConnections( IPin* *apPin, ULONG *nPin )
590 {
591 #ifdef DEBUG_DSHOW
592     msg_Dbg( p_input, "CapturePin::QueryInternalConnections" );
593 #endif
594     return E_NOTIMPL;
595 }
596 STDMETHODIMP CapturePin::EndOfStream( void )
597 {
598 #ifdef DEBUG_DSHOW
599     msg_Dbg( p_input, "CapturePin::EndOfStream" );
600 #endif
601     return S_OK;
602 }
603 STDMETHODIMP CapturePin::BeginFlush( void )
604 {
605 #ifdef DEBUG_DSHOW
606     msg_Dbg( p_input, "CapturePin::BeginFlush" );
607 #endif
608     return S_OK;
609 }
610 STDMETHODIMP CapturePin::EndFlush( void )
611 {
612 #ifdef DEBUG_DSHOW
613     msg_Dbg( p_input, "CapturePin::EndFlush" );
614 #endif
615     return S_OK;
616 }
617 STDMETHODIMP CapturePin::NewSegment( REFERENCE_TIME tStart,
618                                      REFERENCE_TIME tStop,
619                                      double dRate )
620 {
621 #ifdef DEBUG_DSHOW
622     msg_Dbg( p_input, "CapturePin::NewSegment" );
623 #endif
624     return S_OK;
625 }
626
627 /* IMemInputPin methods */
628 STDMETHODIMP CapturePin::GetAllocator( IMemAllocator **ppAllocator )
629 {
630 #ifdef DEBUG_DSHOW
631     msg_Dbg( p_input, "CapturePin::GetAllocator" );
632 #endif
633
634     return VFW_E_NO_ALLOCATOR;
635 }
636 STDMETHODIMP CapturePin::NotifyAllocator( IMemAllocator *pAllocator,
637                                           BOOL bReadOnly )
638 {
639 #ifdef DEBUG_DSHOW
640     msg_Dbg( p_input, "CapturePin::NotifyAllocator" );
641 #endif
642
643     return S_OK;
644 }
645 STDMETHODIMP CapturePin::GetAllocatorRequirements( ALLOCATOR_PROPERTIES *pProps )
646 {
647 #ifdef DEBUG_DSHOW
648     msg_Dbg( p_input, "CapturePin::GetAllocatorRequirements" );
649 #endif
650
651     return E_NOTIMPL;
652 }
653 STDMETHODIMP CapturePin::Receive( IMediaSample *pSample )
654 {
655 #if 0 //def DEBUG_DSHOW
656     msg_Dbg( p_input, "CapturePin::Receive" );
657 #endif
658
659     pSample->AddRef();
660     mtime_t i_timestamp = mdate() * 10;
661     VLCMediaSample vlc_sample = {pSample, i_timestamp};
662
663     access_sys_t *p_sys = p_input->p_sys;
664     vlc_mutex_lock( &p_sys->lock );
665     samples_queue.push_front( vlc_sample );
666
667     /* Make sure we don't cache too many samples */
668     if( samples_queue.size() > 10 )
669     {
670         vlc_sample = samples_queue.back();
671         samples_queue.pop_back();
672         msg_Dbg( p_input, "CapturePin::Receive trashing late input sample" );
673         vlc_sample.p_sample->Release();
674     }
675
676     vlc_cond_signal( &p_sys->wait );
677     vlc_mutex_unlock( &p_sys->lock );
678
679     return S_OK;
680 }
681 STDMETHODIMP CapturePin::ReceiveMultiple( IMediaSample **pSamples,
682                                           long nSamples,
683                                           long *nSamplesProcessed )
684 {
685     HRESULT hr = S_OK;
686
687     *nSamplesProcessed = 0;
688     while( nSamples-- > 0 )
689     {
690          hr = Receive( pSamples[*nSamplesProcessed] );
691          if( hr != S_OK ) break;
692          (*nSamplesProcessed)++;
693     }
694     return hr;
695 }
696 STDMETHODIMP CapturePin::ReceiveCanBlock( void )
697 {
698 #ifdef DEBUG_DSHOW
699     msg_Dbg( p_input, "CapturePin::ReceiveCanBlock" );
700 #endif
701
702     return S_FALSE; /* Thou shalt not block */
703 }
704
705 /****************************************************************************
706  * Implementation of our dummy directshow filter class
707  ****************************************************************************/
708 CaptureFilter::CaptureFilter( access_t * _p_input, AM_MEDIA_TYPE *mt,
709                               size_t mt_count )
710   : p_input( _p_input ),
711     p_pin( new CapturePin( _p_input, this, mt, mt_count ) ),
712     state( State_Stopped ), i_ref( 1 )
713 {
714 }
715
716 CaptureFilter::~CaptureFilter()
717 {
718 #ifdef DEBUG_DSHOW
719     msg_Dbg( p_input, "CaptureFilter::~CaptureFilter" );
720 #endif
721     p_pin->Release();
722 }
723
724 /* IUnknown methods */
725 STDMETHODIMP CaptureFilter::QueryInterface( REFIID riid, void **ppv )
726 {
727 #ifdef DEBUG_DSHOW
728     msg_Dbg( p_input, "CaptureFilter::QueryInterface" );
729 #endif
730
731     if( riid == IID_IUnknown )
732     {
733         AddRef();
734         *ppv = (IUnknown *)this;
735         return NOERROR;
736     }
737     if( riid == IID_IPersist )
738     {
739         AddRef();
740         *ppv = (IPersist *)this;
741         return NOERROR;
742     }
743     if( riid == IID_IMediaFilter )
744     {
745         AddRef();
746         *ppv = (IMediaFilter *)this;
747         return NOERROR;
748     }
749     if( riid == IID_IBaseFilter )
750     {
751         AddRef();
752         *ppv = (IBaseFilter *)this;
753         return NOERROR;
754     }
755     else
756     {
757 #ifdef DEBUG_DSHOW
758         msg_Dbg( p_input, "CaptureFilter::QueryInterface() failed for: "
759                  "%04X-%02X-%02X-%02X%02X%02X%02X%02X%02X%02X%02X",
760                  (int)riid.Data1, (int)riid.Data2, (int)riid.Data3,
761                  static_cast<int>(riid.Data4[0]), (int)riid.Data4[1],
762                  (int)riid.Data4[2], (int)riid.Data4[3],
763                  (int)riid.Data4[4], (int)riid.Data4[5],
764                  (int)riid.Data4[6], (int)riid.Data4[7] );
765 #endif
766         *ppv = NULL;
767         return E_NOINTERFACE;
768     }
769 };
770 STDMETHODIMP_(ULONG) CaptureFilter::AddRef()
771 {
772 #ifdef DEBUG_DSHOW_L1
773     msg_Dbg( p_input, "CaptureFilter::AddRef (ref: %i)", i_ref );
774 #endif
775
776     return i_ref++;
777 };
778 STDMETHODIMP_(ULONG) CaptureFilter::Release()
779 {
780 #ifdef DEBUG_DSHOW_L1
781     msg_Dbg( p_input, "CaptureFilter::Release (ref: %i)", i_ref );
782 #endif
783
784     if( !InterlockedDecrement(&i_ref) ) delete this;
785
786     return 0;
787 };
788
789 /* IPersist method */
790 STDMETHODIMP CaptureFilter::GetClassID(CLSID *pClsID)
791 {
792 #ifdef DEBUG_DSHOW
793     msg_Dbg( p_input, "CaptureFilter::GetClassID" );
794 #endif
795     return E_NOTIMPL;
796 };
797
798 /* IMediaFilter methods */
799 STDMETHODIMP CaptureFilter::GetState(DWORD dwMSecs, FILTER_STATE *State)
800 {
801 #ifdef DEBUG_DSHOW
802     msg_Dbg( p_input, "CaptureFilter::GetState %i", state );
803 #endif
804
805     *State = state;
806     return S_OK;
807 };
808 STDMETHODIMP CaptureFilter::SetSyncSource(IReferenceClock *pClock)
809 {
810 #ifdef DEBUG_DSHOW
811     msg_Dbg( p_input, "CaptureFilter::SetSyncSource" );
812 #endif
813
814     return S_OK;
815 };
816 STDMETHODIMP CaptureFilter::GetSyncSource(IReferenceClock **pClock)
817 {
818 #ifdef DEBUG_DSHOW
819     msg_Dbg( p_input, "CaptureFilter::GetSyncSource" );
820 #endif
821
822     *pClock = NULL;
823     return NOERROR;
824 };
825 STDMETHODIMP CaptureFilter::Stop()
826 {
827 #ifdef DEBUG_DSHOW
828     msg_Dbg( p_input, "CaptureFilter::Stop" );
829 #endif
830
831     state = State_Stopped;
832     return S_OK;
833 };
834 STDMETHODIMP CaptureFilter::Pause()
835 {
836 #ifdef DEBUG_DSHOW
837     msg_Dbg( p_input, "CaptureFilter::Pause" );
838 #endif
839
840     state = State_Paused;
841     return S_OK;
842 };
843 STDMETHODIMP CaptureFilter::Run(REFERENCE_TIME tStart)
844 {
845 #ifdef DEBUG_DSHOW
846     msg_Dbg( p_input, "CaptureFilter::Run" );
847 #endif
848
849     state = State_Running;
850     return S_OK;
851 };
852
853 /* IBaseFilter methods */
854 STDMETHODIMP CaptureFilter::EnumPins( IEnumPins ** ppEnum )
855 {
856 #ifdef DEBUG_DSHOW
857     msg_Dbg( p_input, "CaptureFilter::EnumPins" );
858 #endif
859
860     /* Create a new ref counted enumerator */
861     *ppEnum = new CaptureEnumPins( p_input, this, NULL );
862     return *ppEnum == NULL ? E_OUTOFMEMORY : NOERROR;
863 };
864 STDMETHODIMP CaptureFilter::FindPin( LPCWSTR Id, IPin ** ppPin )
865 {
866 #ifdef DEBUG_DSHOW
867     msg_Dbg( p_input, "CaptureFilter::FindPin" );
868 #endif
869     return E_NOTIMPL;
870 };
871 STDMETHODIMP CaptureFilter::QueryFilterInfo( FILTER_INFO * pInfo )
872 {
873 #ifdef DEBUG_DSHOW
874     msg_Dbg( p_input, "CaptureFilter::QueryFilterInfo" );
875 #endif
876
877     memcpy(pInfo->achName, FILTER_NAME, sizeof(FILTER_NAME));
878
879     pInfo->pGraph = p_graph;
880     if( p_graph ) p_graph->AddRef();
881
882     return NOERROR;
883 };
884 STDMETHODIMP CaptureFilter::JoinFilterGraph( IFilterGraph * pGraph,
885                                              LPCWSTR pName )
886 {
887 #ifdef DEBUG_DSHOW
888     msg_Dbg( p_input, "CaptureFilter::JoinFilterGraph" );
889 #endif
890
891     p_graph = pGraph;
892
893     return NOERROR;
894 };
895 STDMETHODIMP CaptureFilter::QueryVendorInfo( LPWSTR* pVendorInfo )
896 {
897 #ifdef DEBUG_DSHOW
898     msg_Dbg( p_input, "CaptureFilter::QueryVendorInfo" );
899 #endif
900     return E_NOTIMPL;
901 };
902
903 /* Custom methods */
904 CapturePin *CaptureFilter::CustomGetPin()
905 {
906     return p_pin;
907 }
908
909 /****************************************************************************
910  * Implementation of our dummy directshow enumpins class
911  ****************************************************************************/
912
913 CaptureEnumPins::CaptureEnumPins( access_t * _p_input,
914                                   CaptureFilter *_p_filter,
915                                   CaptureEnumPins *pEnumPins )
916   : p_input( _p_input ), p_filter( _p_filter ), i_ref( 1 )
917 {
918     /* Hold a reference count on our filter */
919     p_filter->AddRef();
920
921     /* Are we creating a new enumerator */
922
923     if( pEnumPins == NULL )
924     {
925         i_position = 0;
926     }
927     else
928     {
929         i_position = pEnumPins->i_position;
930     }
931 }
932
933 CaptureEnumPins::~CaptureEnumPins()
934 {
935 #ifdef DEBUG_DSHOW
936     msg_Dbg( p_input, "CaptureEnumPins::~CaptureEnumPins" );
937 #endif
938     p_filter->Release();
939 }
940
941 /* IUnknown methods */
942 STDMETHODIMP CaptureEnumPins::QueryInterface( REFIID riid, void **ppv )
943 {
944 #ifdef DEBUG_DSHOW
945     msg_Dbg( p_input, "CaptureEnumPins::QueryInterface" );
946 #endif
947
948     if( riid == IID_IUnknown ||
949         riid == IID_IEnumPins )
950     {
951         AddRef();
952         *ppv = (IEnumPins *)this;
953         return NOERROR;
954     }
955     else
956     {
957         *ppv = NULL;
958         return E_NOINTERFACE;
959     }
960 };
961 STDMETHODIMP_(ULONG) CaptureEnumPins::AddRef()
962 {
963 #ifdef DEBUG_DSHOW_L1
964     msg_Dbg( p_input, "CaptureEnumPins::AddRef (ref: %i)", i_ref );
965 #endif
966
967     return i_ref++;
968 };
969 STDMETHODIMP_(ULONG) CaptureEnumPins::Release()
970 {
971 #ifdef DEBUG_DSHOW_L1
972     msg_Dbg( p_input, "CaptureEnumPins::Release (ref: %i)", i_ref );
973 #endif
974
975     if( !InterlockedDecrement(&i_ref) ) delete this;
976
977     return 0;
978 };
979
980 /* IEnumPins */
981 STDMETHODIMP CaptureEnumPins::Next( ULONG cPins, IPin ** ppPins,
982                                     ULONG * pcFetched )
983 {
984 #ifdef DEBUG_DSHOW
985     msg_Dbg( p_input, "CaptureEnumPins::Next" );
986 #endif
987
988     unsigned int i_fetched = 0;
989
990     if( i_position < 1 && cPins > 0 )
991     {
992         IPin *pPin = p_filter->CustomGetPin();
993         *ppPins = pPin;
994         pPin->AddRef();
995         i_fetched = 1;
996         i_position++;
997     }
998
999     if( pcFetched ) *pcFetched = i_fetched;
1000
1001     return (i_fetched == cPins) ? S_OK : S_FALSE;
1002 };
1003 STDMETHODIMP CaptureEnumPins::Skip( ULONG cPins )
1004 {
1005 #ifdef DEBUG_DSHOW
1006     msg_Dbg( p_input, "CaptureEnumPins::Skip" );
1007 #endif
1008
1009     i_position += cPins;
1010
1011     if( i_position > 1 )
1012     {
1013         return S_FALSE;
1014     }
1015
1016     return S_OK;
1017 };
1018 STDMETHODIMP CaptureEnumPins::Reset()
1019 {
1020 #ifdef DEBUG_DSHOW
1021     msg_Dbg( p_input, "CaptureEnumPins::Reset" );
1022 #endif
1023
1024     i_position = 0;
1025     return S_OK;
1026 };
1027 STDMETHODIMP CaptureEnumPins::Clone( IEnumPins **ppEnum )
1028 {
1029 #ifdef DEBUG_DSHOW
1030     msg_Dbg( p_input, "CaptureEnumPins::Clone" );
1031 #endif
1032
1033     *ppEnum = new CaptureEnumPins( p_input, p_filter, this );
1034     if( *ppEnum == NULL ) return E_OUTOFMEMORY;
1035
1036     return NOERROR;
1037 };
1038
1039 /****************************************************************************
1040  * Implementation of our dummy directshow enummediatypes class
1041  ****************************************************************************/
1042 CaptureEnumMediaTypes::CaptureEnumMediaTypes( access_t * _p_input,
1043     CapturePin *_p_pin, CaptureEnumMediaTypes *pEnumMediaTypes )
1044   : p_input( _p_input ), p_pin( _p_pin ), i_ref( 1 )
1045 {
1046     /* Hold a reference count on our filter */
1047     p_pin->AddRef();
1048
1049     /* Are we creating a new enumerator */
1050     if( pEnumMediaTypes == NULL )
1051     {
1052         i_position = 0;
1053     }
1054     else
1055     {
1056         i_position = pEnumMediaTypes->i_position;
1057     }
1058 }
1059
1060 CaptureEnumMediaTypes::~CaptureEnumMediaTypes()
1061 {
1062 #ifdef DEBUG_DSHOW
1063     msg_Dbg( p_input, "CaptureEnumMediaTypes::~CaptureEnumMediaTypes" );
1064 #endif
1065     p_pin->Release();
1066 }
1067
1068 /* IUnknown methods */
1069 STDMETHODIMP CaptureEnumMediaTypes::QueryInterface( REFIID riid, void **ppv )
1070 {
1071 #ifdef DEBUG_DSHOW
1072     msg_Dbg( p_input, "CaptureEnumMediaTypes::QueryInterface" );
1073 #endif
1074
1075     if( riid == IID_IUnknown ||
1076         riid == IID_IEnumMediaTypes )
1077     {
1078         AddRef();
1079         *ppv = (IEnumMediaTypes *)this;
1080         return NOERROR;
1081     }
1082     else
1083     {
1084         *ppv = NULL;
1085         return E_NOINTERFACE;
1086     }
1087 };
1088 STDMETHODIMP_(ULONG) CaptureEnumMediaTypes::AddRef()
1089 {
1090 #ifdef DEBUG_DSHOW_L1
1091     msg_Dbg( p_input, "CaptureEnumMediaTypes::AddRef (ref: %i)", i_ref );
1092 #endif
1093
1094     return i_ref++;
1095 };
1096 STDMETHODIMP_(ULONG) CaptureEnumMediaTypes::Release()
1097 {
1098 #ifdef DEBUG_DSHOW_L1
1099     msg_Dbg( p_input, "CaptureEnumMediaTypes::Release (ref: %i)", i_ref );
1100 #endif
1101
1102     if( !InterlockedDecrement(&i_ref) ) delete this;
1103
1104     return 0;
1105 };
1106
1107 /* IEnumMediaTypes */
1108 STDMETHODIMP CaptureEnumMediaTypes::Next( ULONG cMediaTypes,
1109                                           AM_MEDIA_TYPE ** ppMediaTypes,
1110                                           ULONG * pcFetched )
1111 {
1112 #ifdef DEBUG_DSHOW
1113     msg_Dbg( p_input, "CaptureEnumMediaTypes::Next" );
1114 #endif
1115     ULONG count;
1116
1117     if( ! ppMediaTypes ) 
1118         return E_POINTER;
1119
1120     if( (! pcFetched)  && (cMediaTypes > 1) )
1121        return E_POINTER;
1122
1123     count = 0;
1124
1125     while( (count < cMediaTypes) && (i_position < p_pin->media_type_count)  )
1126     {
1127         ppMediaTypes[count] = (AM_MEDIA_TYPE *)CoTaskMemAlloc(sizeof(AM_MEDIA_TYPE));
1128         if( CopyMediaType(ppMediaTypes[count], &p_pin->media_types[i_position]) != S_OK )
1129             return E_OUTOFMEMORY;
1130
1131         count++;
1132         i_position++; 
1133     }
1134
1135     if( pcFetched ) 
1136     {
1137         *pcFetched = count;
1138     }
1139
1140     return (count == cMediaTypes) ? S_OK : S_FALSE;
1141 };
1142 STDMETHODIMP CaptureEnumMediaTypes::Skip( ULONG cMediaTypes )
1143 {
1144 #ifdef DEBUG_DSHOW
1145     msg_Dbg( p_input, "CaptureEnumMediaTypes::Skip" );
1146 #endif
1147
1148     i_position += cMediaTypes;
1149     return (i_position < p_pin->media_type_count) ? S_OK : S_FALSE;
1150 };
1151 STDMETHODIMP CaptureEnumMediaTypes::Reset()
1152 {
1153 #ifdef DEBUG_DSHOW
1154     msg_Dbg( p_input, "CaptureEnumMediaTypes::Reset" );
1155 #endif
1156
1157     i_position = 0;
1158     return S_OK;
1159 };
1160 STDMETHODIMP CaptureEnumMediaTypes::Clone( IEnumMediaTypes **ppEnum )
1161 {
1162 #ifdef DEBUG_DSHOW
1163     msg_Dbg( p_input, "CaptureEnumMediaTypes::Clone" );
1164 #endif
1165
1166     *ppEnum = new CaptureEnumMediaTypes( p_input, p_pin, this );
1167     if( *ppEnum == NULL ) return E_OUTOFMEMORY;
1168
1169     return NOERROR;
1170 };