]> git.sesse.net Git - vlc/blob - modules/access/dshow/dshow.cpp
Revert revision 13903. It is implemented in a different way by checking if the option...
[vlc] / modules / access / dshow / dshow.cpp
1 /*****************************************************************************
2  * dshow.cpp : DirectShow access module for vlc
3  *****************************************************************************
4  * Copyright (C) 2002, 2003 the VideoLAN team
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., 51 Franklin Street, Fifth Floor, Boston MA 02110-1301, 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 #include "common.h"
36 #include "filter.h"
37
38 /*****************************************************************************
39  * Access: local prototypes
40  *****************************************************************************/
41 static block_t *ReadCompressed( access_t * );
42 static int AccessControl ( access_t *, int, va_list );
43
44 static int Demux       ( demux_t * );
45 static int DemuxControl( demux_t *, int, va_list );
46
47 static int OpenDevice( vlc_object_t *, access_sys_t *, string, vlc_bool_t );
48 static IBaseFilter *FindCaptureDevice( vlc_object_t *, string *,
49                                        list<string> *, vlc_bool_t );
50 static size_t EnumDeviceCaps( vlc_object_t *, IBaseFilter *,
51                               int, int, int, int, int, int,
52                               AM_MEDIA_TYPE *mt, size_t );
53 static bool ConnectFilters( vlc_object_t *, access_sys_t *,
54                             IBaseFilter *, CaptureFilter * );
55 static int FindDevicesCallback( vlc_object_t *, char const *,
56                                 vlc_value_t, vlc_value_t, void * );
57 static int ConfigDevicesCallback( vlc_object_t *, char const *,
58                                   vlc_value_t, vlc_value_t, void * );
59
60 static void ShowPropertyPage( IUnknown * );
61 static void ShowDeviceProperties( vlc_object_t *, ICaptureGraphBuilder2 *, 
62                                   IBaseFilter *, vlc_bool_t );
63 static void ShowTunerProperties( vlc_object_t *, ICaptureGraphBuilder2 *, 
64                                  IBaseFilter *, vlc_bool_t );
65 static void ConfigTuner( vlc_object_t *, ICaptureGraphBuilder2 *,
66                          IBaseFilter * );
67
68 /*****************************************************************************
69  * Module descriptor
70  *****************************************************************************/
71 static char *ppsz_vdev[] = { "", "none" };
72 static char *ppsz_vdev_text[] = { N_("Default"), N_("None") };
73 static char *ppsz_adev[] = { "", "none" };
74 static char *ppsz_adev_text[] = { N_("Default"), N_("None") };
75 static int  pi_tuner_input[] = { 0, 1, 2 };
76 static char *ppsz_tuner_input_text[] =
77     {N_("Default"), N_("Cable"), N_("Antenna")};
78
79 #define CACHING_TEXT N_("Caching value in ms")
80 #define CACHING_LONGTEXT N_( \
81     "Allows you to modify the default caching value for DirectShow streams. " \
82     "This value should be set in milliseconds units." )
83 #define VDEV_TEXT N_("Video device name")
84 #define VDEV_LONGTEXT N_( \
85     "You can specify the name of the video device that will be used by the " \
86     "DirectShow plugin. If you don't specify anything, the default device " \
87     "will be used.")
88 #define ADEV_TEXT N_("Audio device name")
89 #define ADEV_LONGTEXT N_( \
90     "You can specify the name of the audio device that will be used by the " \
91     "DirectShow plugin. If you don't specify anything, the default device " \
92     "will be used.")
93 #define SIZE_TEXT N_("Video size")
94 #define SIZE_LONGTEXT N_( \
95     "You can specify the size of the video that will be displayed by the " \
96     "DirectShow plugin. If you don't specify anything the default size for " \
97     "your device will be used.")
98 #define CHROMA_TEXT N_("Video input chroma format")
99 #define CHROMA_LONGTEXT N_( \
100     "Force the DirectShow video input to use a specific chroma format " \
101     "(eg. I420 (default), RV24, etc.)")
102 #define FPS_TEXT N_("Video input frame rate")
103 #define FPS_LONGTEXT N_( \
104     "Force the DirectShow video input to use a specific frame rate" \
105     "(eg. 0 means default, 25, 29.97, 50, 59.94, etc.)")
106 #define CONFIG_TEXT N_("Device properties")
107 #define CONFIG_LONGTEXT N_( \
108     "Show the properties dialog of the selected device before starting the " \
109     "stream.")
110 #define TUNER_TEXT N_("Tuner properties")
111 #define TUNER_LONGTEXT N_( \
112     "Show the tuner properties [channel selection] page." )
113 #define CHANNEL_TEXT N_("Tuner TV Channel")
114 #define CHANNEL_LONGTEXT N_( \
115     "Allows you to set the TV channel the tuner will set to " \
116     "(0 means default)." )
117 #define COUNTRY_TEXT N_("Tuner country code")
118 #define COUNTRY_LONGTEXT N_( \
119     "Allows you to set the tuner country code that establishes the current " \
120     "channel-to-frequency mapping (0 means default)." )
121 #define TUNER_INPUT_TEXT N_("Tuner input type")
122 #define TUNER_INPUT_LONGTEXT N_( \
123     "Allows you to select the tuner input type (Cable/Antenna)." )
124
125 static int  CommonOpen ( vlc_object_t *, access_sys_t *, vlc_bool_t );
126 static void CommonClose( vlc_object_t *, access_sys_t * );
127
128 static int  AccessOpen ( vlc_object_t * );
129 static void AccessClose( vlc_object_t * );
130
131 static int  DemuxOpen  ( vlc_object_t * );
132 static void DemuxClose ( vlc_object_t * );
133
134 vlc_module_begin();
135     set_shortname( _("DirectShow") );
136     set_description( _("DirectShow input") );
137     set_category( CAT_INPUT );
138     set_subcategory( SUBCAT_INPUT_ACCESS );
139     add_integer( "dshow-caching", (mtime_t)(0.2*CLOCK_FREQ) / 1000, NULL,
140                  CACHING_TEXT, CACHING_LONGTEXT, VLC_TRUE );
141
142     add_string( "dshow-vdev", NULL, NULL, VDEV_TEXT, VDEV_LONGTEXT, VLC_FALSE);
143         change_string_list( ppsz_vdev, ppsz_vdev_text, FindDevicesCallback );
144         change_action_add( FindDevicesCallback, N_("Refresh list") );
145         change_action_add( ConfigDevicesCallback, N_("Configure") );
146
147     add_string( "dshow-adev", NULL, NULL, ADEV_TEXT, ADEV_LONGTEXT, VLC_FALSE);
148         change_string_list( ppsz_adev, ppsz_adev_text, FindDevicesCallback );
149         change_action_add( FindDevicesCallback, N_("Refresh list") );
150         change_action_add( ConfigDevicesCallback, N_("Configure") );
151
152     add_string( "dshow-size", NULL, NULL, SIZE_TEXT, SIZE_LONGTEXT, VLC_FALSE);
153
154     add_string( "dshow-chroma", NULL, NULL, CHROMA_TEXT, CHROMA_LONGTEXT,
155                 VLC_TRUE );
156
157     add_float( "dshow-fps", 0.0f, NULL, FPS_TEXT, FPS_LONGTEXT,
158                 VLC_TRUE );
159
160     add_bool( "dshow-config", VLC_FALSE, NULL, CONFIG_TEXT, CONFIG_LONGTEXT,
161               VLC_TRUE );
162
163     add_bool( "dshow-tuner", VLC_FALSE, NULL, TUNER_TEXT, TUNER_LONGTEXT,
164               VLC_TRUE );
165
166     add_integer( "dshow-tuner-channel", 0, NULL, CHANNEL_TEXT,
167                  CHANNEL_LONGTEXT, VLC_TRUE );
168
169     add_integer( "dshow-tuner-country", 0, NULL, COUNTRY_TEXT,
170                  COUNTRY_LONGTEXT, VLC_TRUE );
171
172     add_integer( "dshow-tuner-input", 0, NULL, TUNER_INPUT_TEXT,
173                  TUNER_INPUT_LONGTEXT, VLC_TRUE );
174         change_integer_list( pi_tuner_input, ppsz_tuner_input_text, 0 );
175
176     add_shortcut( "dshow" );
177     set_capability( "access_demux", 0 );
178     set_callbacks( DemuxOpen, DemuxClose );
179
180     add_submodule();
181     set_description( _("DirectShow input") );
182     add_shortcut( "dshow" );
183     set_capability( "access2", 0 );
184     set_callbacks( AccessOpen, AccessClose );
185
186 vlc_module_end();
187
188 /*****************************************************************************
189  * DirectShow elementary stream descriptor
190  *****************************************************************************/
191 typedef struct dshow_stream_t
192 {
193     string          devicename;
194     IBaseFilter     *p_device_filter;
195     CaptureFilter   *p_capture_filter;
196     AM_MEDIA_TYPE   mt;
197
198     union
199     {
200       VIDEOINFOHEADER video;
201       WAVEFORMATEX    audio;
202
203     } header;
204
205     int             i_fourcc;
206     es_out_id_t     *p_es;
207
208     vlc_bool_t      b_pts;
209 } dshow_stream_t;
210
211 /*****************************************************************************
212  * DirectShow utility functions
213  *****************************************************************************/
214 static void CreateDirectShowGraph( access_sys_t *p_sys )
215 {
216     p_sys->i_crossbar_route_depth = 0;
217
218     /* Create directshow filter graph */
219     if( SUCCEEDED( CoCreateInstance( CLSID_FilterGraph, 0, CLSCTX_INPROC,
220                        (REFIID)IID_IFilterGraph, (void **)&p_sys->p_graph) ) )
221     {
222         /* Create directshow capture graph builder if available */
223         if( SUCCEEDED( CoCreateInstance( CLSID_CaptureGraphBuilder2, 0,
224                          CLSCTX_INPROC, (REFIID)IID_ICaptureGraphBuilder2,
225                          (void **)&p_sys->p_capture_graph_builder2 ) ) )
226         {
227             p_sys->p_capture_graph_builder2->
228                 SetFiltergraph((IGraphBuilder *)p_sys->p_graph);
229         }
230
231         p_sys->p_graph->QueryInterface( IID_IMediaControl,
232                                         (void **)&p_sys->p_control );
233     }
234 }
235
236 static void DeleteDirectShowGraph( access_sys_t *p_sys )
237 {
238     DeleteCrossbarRoutes( p_sys );
239
240     /* Remove filters from graph */
241     for( int i = 0; i < p_sys->i_streams; i++ )
242     {
243         p_sys->p_graph->RemoveFilter( p_sys->pp_streams[i]->p_capture_filter );
244         p_sys->p_graph->RemoveFilter( p_sys->pp_streams[i]->p_device_filter );
245         p_sys->pp_streams[i]->p_capture_filter->Release();
246         p_sys->pp_streams[i]->p_device_filter->Release();
247     }
248
249     /* Release directshow objects */
250     if( p_sys->p_control )
251     {
252         p_sys->p_control->Release();
253         p_sys->p_control = NULL;
254     }
255     if( p_sys->p_capture_graph_builder2 )
256     {
257         p_sys->p_capture_graph_builder2->Release();
258         p_sys->p_capture_graph_builder2 = NULL;
259     }
260
261     if( p_sys->p_graph )
262     {
263         p_sys->p_graph->Release();
264         p_sys->p_graph = NULL;
265     }
266 }
267
268 /*****************************************************************************
269  * CommonOpen: open direct show device
270  *****************************************************************************/
271 static int CommonOpen( vlc_object_t *p_this, access_sys_t *p_sys,
272                        vlc_bool_t b_access_demux )
273 {
274     vlc_value_t  val;
275     int i;
276
277     /* Get/parse options and open device(s) */
278     string vdevname, adevname;
279     int i_width = 0, i_height = 0, i_chroma = 0;
280     vlc_bool_t b_audio = VLC_TRUE;
281
282     var_Create( p_this, "dshow-config", VLC_VAR_BOOL | VLC_VAR_DOINHERIT );
283     var_Create( p_this, "dshow-tuner", VLC_VAR_BOOL | VLC_VAR_DOINHERIT );
284     var_Create( p_this, "dshow-vdev", VLC_VAR_STRING | VLC_VAR_DOINHERIT );
285     var_Get( p_this, "dshow-vdev", &val );
286     if( val.psz_string ) vdevname = string( val.psz_string );
287     if( val.psz_string ) free( val.psz_string );
288
289     var_Create( p_this, "dshow-adev", VLC_VAR_STRING | VLC_VAR_DOINHERIT );
290     var_Get( p_this, "dshow-adev", &val );
291     if( val.psz_string ) adevname = string( val.psz_string );
292     if( val.psz_string ) free( val.psz_string );
293
294     static struct {char *psz_size; int  i_width; int  i_height;} size_table[] =
295     { { "subqcif", 128, 96 }, { "qsif", 160, 120 }, { "qcif", 176, 144 },
296       { "sif", 320, 240 }, { "cif", 352, 288 }, { "cif", 640, 480 },
297       { 0, 0, 0 },
298     };
299
300     var_Create( p_this, "dshow-size", VLC_VAR_STRING | VLC_VAR_DOINHERIT );
301     var_Get( p_this, "dshow-size", &val );
302     if( val.psz_string && *val.psz_string )
303     {
304         for( i = 0; size_table[i].psz_size; i++ )
305         {
306             if( !strcmp( val.psz_string, size_table[i].psz_size ) )
307             {
308                 i_width = size_table[i].i_width;
309                 i_height = size_table[i].i_height;
310                 break;
311             }
312         }
313         if( !size_table[i].psz_size ) /* Try to parse "WidthxHeight" */
314         {
315             char *psz_parser;
316             i_width = strtol( val.psz_string, &psz_parser, 0 );
317             if( *psz_parser == 'x' || *psz_parser == 'X')
318             {
319                 i_height = strtol( psz_parser + 1, &psz_parser, 0 );
320             }
321             msg_Dbg( p_this, "Width x Height %dx%d", i_width, i_height );
322         }
323     }
324     if( val.psz_string ) free( val.psz_string );
325
326     p_sys->b_chroma = VLC_FALSE;
327     var_Create( p_this, "dshow-chroma", VLC_VAR_STRING | VLC_VAR_DOINHERIT );
328     var_Get( p_this, "dshow-chroma", &val );
329     if( val.psz_string && strlen( val.psz_string ) >= 4 )
330     {
331         i_chroma = VLC_FOURCC( val.psz_string[0], val.psz_string[1],
332                                val.psz_string[2], val.psz_string[3] );
333         p_sys->b_chroma = VLC_TRUE;
334     }
335     if( val.psz_string ) free( val.psz_string );
336
337     var_Create( p_this, "dshow-fps", VLC_VAR_FLOAT | VLC_VAR_DOINHERIT );
338     var_Create( p_this, "dshow-tuner-channel",
339                 VLC_VAR_INTEGER | VLC_VAR_DOINHERIT );
340     var_Create( p_this, "dshow-tuner-country",
341                 VLC_VAR_INTEGER | VLC_VAR_DOINHERIT );
342     var_Create( p_this, "dshow-tuner-input",
343                 VLC_VAR_INTEGER | VLC_VAR_DOINHERIT );
344
345     var_Create( p_this, "dshow-caching", VLC_VAR_INTEGER | VLC_VAR_DOINHERIT );
346
347     /* Initialize OLE/COM */
348     CoInitialize( 0 );
349
350     /* Initialize some data */
351     p_sys->i_streams = 0;
352     p_sys->pp_streams = 0;
353     p_sys->i_width = i_width;
354     p_sys->i_height = i_height;
355     p_sys->i_chroma = i_chroma;
356
357     p_sys->p_graph = NULL;
358     p_sys->p_capture_graph_builder2 = NULL;
359     p_sys->p_control = NULL;
360
361     vlc_mutex_init( p_this, &p_sys->lock );
362     vlc_cond_init( p_this, &p_sys->wait );
363
364     /* Build directshow graph */
365     CreateDirectShowGraph( p_sys );
366
367     if( OpenDevice( p_this, p_sys, vdevname, 0 ) != VLC_SUCCESS )
368     {
369         msg_Err( p_this, "can't open video");
370     }
371     else
372     {
373         /* Check if we can handle the demuxing ourselves or need to spawn
374          * a demuxer module */
375         dshow_stream_t *p_stream = p_sys->pp_streams[p_sys->i_streams-1];
376
377         if( p_stream->mt.majortype == MEDIATYPE_Video )
378         {
379             if( /* Raw DV stream */
380                 p_stream->i_fourcc == VLC_FOURCC('d','v','s','l') ||
381                 p_stream->i_fourcc == VLC_FOURCC('d','v','s','d') ||
382                 p_stream->i_fourcc == VLC_FOURCC('d','v','h','d') ||
383                 /* Raw MPEG video stream */
384                 p_stream->i_fourcc == VLC_FOURCC('m','p','2','v') )
385             {
386                 b_audio = VLC_FALSE;
387
388                 if( b_access_demux )
389                 {
390                     /* Let the access (only) take care of that */
391                     return VLC_EGENERIC;
392                 }
393             }
394         }
395
396         if( p_stream->mt.majortype == MEDIATYPE_Stream )
397         {
398             b_audio = VLC_FALSE;
399
400             if( b_access_demux )
401             {
402                 /* Let the access (only) take care of that */
403                 return VLC_EGENERIC;
404             }
405
406             var_Get( p_this, "dshow-tuner", &val );
407             if( val.b_bool )
408             {
409                 /* FIXME: we do MEDIATYPE_Stream here so we don't do
410                  * it twice. */
411                 ShowTunerProperties( p_this, p_sys->p_capture_graph_builder2,
412                                      p_stream->p_device_filter, 0 );
413             }
414         }
415     }
416
417     if( b_audio && OpenDevice( p_this, p_sys, adevname, 1 ) != VLC_SUCCESS )
418     {
419         msg_Err( p_this, "can't open audio");
420     }
421
422     for( i = p_sys->i_crossbar_route_depth-1; i >= 0 ; --i )
423     {
424         IAMCrossbar *pXbar = p_sys->crossbar_routes[i].pXbar;
425         LONG VideoInputIndex = p_sys->crossbar_routes[i].VideoInputIndex;
426         LONG VideoOutputIndex = p_sys->crossbar_routes[i].VideoOutputIndex;
427         LONG AudioInputIndex = p_sys->crossbar_routes[i].AudioInputIndex;
428         LONG AudioOutputIndex = p_sys->crossbar_routes[i].AudioOutputIndex;
429
430         if( SUCCEEDED(pXbar->Route(VideoOutputIndex, VideoInputIndex)) )
431         {
432             msg_Dbg( p_this, "Crossbar at depth %d, Routed video "
433                      "ouput %ld to video input %ld", i, VideoOutputIndex,
434                      VideoInputIndex );
435
436             if( AudioOutputIndex != -1 && AudioInputIndex != -1 )
437             {
438                 if( SUCCEEDED( pXbar->Route(AudioOutputIndex,
439                                             AudioInputIndex)) )
440                 {
441                     msg_Dbg(p_this, "Crossbar at depth %d, Routed audio "
442                             "ouput %ld to audio input %ld", i,
443                             AudioOutputIndex, AudioInputIndex );
444                 }
445             }
446         }
447     }
448
449     /*
450     ** Show properties pages from other filters in graph
451     */
452     var_Get( p_this, "dshow-config", &val );
453     if( val.b_bool )
454     {
455         for( i = p_sys->i_crossbar_route_depth-1; i >= 0 ; --i )
456         {
457             IAMCrossbar *pXbar = p_sys->crossbar_routes[i].pXbar;
458             IBaseFilter *p_XF;
459
460             if( SUCCEEDED( pXbar->QueryInterface( IID_IBaseFilter,
461                                                   (void **)&p_XF ) ) )
462             {
463                 ShowPropertyPage( p_XF );
464                 p_XF->Release();
465             }
466         }
467     }
468
469     /* Initialize some data */
470     p_sys->i_current_stream = 0;
471
472     if( !p_sys->i_streams ) return VLC_EGENERIC;
473
474     return VLC_SUCCESS;
475 }
476
477 /*****************************************************************************
478  * DemuxOpen: open direct show device as an access_demux module
479  *****************************************************************************/
480 static int DemuxOpen( vlc_object_t *p_this )
481 {
482     demux_t      *p_demux = (demux_t *)p_this;
483     access_sys_t *p_sys;
484     int i;
485
486     p_sys = (access_sys_t *)malloc( sizeof( access_sys_t ) );
487     memset( p_sys, 0, sizeof( access_sys_t ) );
488     p_demux->p_sys = (demux_sys_t *)p_sys;
489
490     if( CommonOpen( p_this, p_sys, VLC_TRUE ) != VLC_SUCCESS )
491     {
492         CommonClose( p_this, p_sys );
493         return VLC_EGENERIC;
494     }
495
496     /* Everything is ready. Let's rock baby */
497     msg_Dbg( p_this, "Playing...");
498     p_sys->p_control->Run();
499
500     p_demux->pf_demux   = Demux;
501     p_demux->pf_control = DemuxControl;
502     p_demux->info.i_update = 0;
503     p_demux->info.i_title = 0;
504     p_demux->info.i_seekpoint = 0;
505
506     for( i = 0; i < p_sys->i_streams; i++ )
507     {
508         dshow_stream_t *p_stream = p_sys->pp_streams[i];
509         es_format_t fmt;
510
511         if( p_stream->mt.majortype == MEDIATYPE_Video )
512         {
513             es_format_Init( &fmt, VIDEO_ES, p_stream->i_fourcc );
514
515             fmt.video.i_width  = p_stream->header.video.bmiHeader.biWidth;
516             fmt.video.i_height = p_stream->header.video.bmiHeader.biHeight;
517             fmt.video.i_aspect = 4 * VOUT_ASPECT_FACTOR / 3;
518
519             if( !p_stream->header.video.bmiHeader.biCompression )
520             {
521                 /* RGB DIB are coded from bottom to top */
522                 fmt.video.i_height = (unsigned int)(-(int)fmt.video.i_height);
523             }
524
525             /* Setup rgb mask for RGB formats */
526             if( p_stream->i_fourcc == VLC_FOURCC('R','V','2','4') )
527             {
528                 /* This is in BGR format */
529                 fmt.video.i_bmask = 0x00ff0000;
530                 fmt.video.i_gmask = 0x0000ff00;
531                 fmt.video.i_rmask = 0x000000ff;
532             }
533
534             if( p_stream->header.video.AvgTimePerFrame )
535             {
536                 fmt.video.i_frame_rate = 10000000;
537                 fmt.video.i_frame_rate_base =
538                     p_stream->header.video.AvgTimePerFrame;
539             }
540         }
541         else if( p_stream->mt.majortype == MEDIATYPE_Audio )
542         {
543             es_format_Init( &fmt, AUDIO_ES, p_stream->i_fourcc );
544
545             fmt.audio.i_channels = p_stream->header.audio.nChannels;
546             fmt.audio.i_rate = p_stream->header.audio.nSamplesPerSec;
547             fmt.audio.i_bitspersample = p_stream->header.audio.wBitsPerSample;
548             fmt.audio.i_blockalign = fmt.audio.i_channels *
549                 fmt.audio.i_bitspersample / 8;
550             fmt.i_bitrate = fmt.audio.i_channels * fmt.audio.i_rate *
551                 fmt.audio.i_bitspersample;
552         }
553
554         p_stream->p_es = es_out_Add( p_demux->out, &fmt );
555     }
556
557     return VLC_SUCCESS;
558 }
559
560 /*****************************************************************************
561  * AccessOpen: open direct show device as an access module
562  *****************************************************************************/
563 static int AccessOpen( vlc_object_t *p_this )
564 {
565     access_t     *p_access = (access_t*)p_this;
566     access_sys_t *p_sys;
567
568     p_access->p_sys = p_sys = (access_sys_t *)malloc( sizeof( access_sys_t ) );
569     memset( p_sys, 0, sizeof( access_sys_t ) );
570
571     if( CommonOpen( p_this, p_sys, VLC_FALSE ) != VLC_SUCCESS )
572     {
573         CommonClose( p_this, p_sys );
574         return VLC_EGENERIC;
575     }
576
577     dshow_stream_t *p_stream = p_sys->pp_streams[0];
578
579     /* Check if we need to force demuxers */
580     if( !p_access->psz_demux || !*p_access->psz_demux )
581     {
582         if( p_stream->i_fourcc == VLC_FOURCC('d','v','s','l') ||
583             p_stream->i_fourcc == VLC_FOURCC('d','v','s','d') ||
584             p_stream->i_fourcc == VLC_FOURCC('d','v','h','d') )
585         {
586             p_access->psz_demux = strdup( "rawdv" );
587         }
588         else if( p_stream->i_fourcc == VLC_FOURCC('m','p','2','v') )
589         {
590             p_access->psz_demux = "mpgv";
591         }
592     }
593
594     /* Setup Access */
595     p_access->pf_read = NULL;
596     p_access->pf_block = ReadCompressed;
597     p_access->pf_control = AccessControl;
598     p_access->pf_seek = NULL;
599     p_access->info.i_update = 0;
600     p_access->info.i_size = 0;
601     p_access->info.i_pos = 0;
602     p_access->info.b_eof = VLC_FALSE;
603     p_access->info.i_title = 0;
604     p_access->info.i_seekpoint = 0;
605     p_access->p_sys = p_sys;
606
607     /* Everything is ready. Let's rock baby */
608     msg_Dbg( p_this, "Playing...");
609     p_sys->p_control->Run();
610
611     return VLC_SUCCESS;
612 }
613
614 /*****************************************************************************
615  * CommonClose: close device
616  *****************************************************************************/
617 static void CommonClose( vlc_object_t *p_this, access_sys_t *p_sys )
618 {
619     msg_Dbg( p_this, "Releasing DirectShow");
620
621     DeleteDirectShowGraph( p_sys );
622
623     /* Uninitialize OLE/COM */
624     CoUninitialize();
625
626     for( int i = 0; i < p_sys->i_streams; i++ ) delete p_sys->pp_streams[i];
627     if( p_sys->i_streams ) free( p_sys->pp_streams );
628
629     vlc_mutex_destroy( &p_sys->lock );
630     vlc_cond_destroy( &p_sys->wait );
631
632     free( p_sys );
633 }
634
635 /*****************************************************************************
636  * AccessClose: close device
637  *****************************************************************************/
638 static void AccessClose( vlc_object_t *p_this )
639 {
640     access_t     *p_access = (access_t *)p_this;
641     access_sys_t *p_sys    = p_access->p_sys;
642
643     /* Stop capturing stuff */
644     p_sys->p_control->Stop();
645
646     CommonClose( p_this, p_sys );
647 }
648
649 /*****************************************************************************
650  * DemuxClose: close device
651  *****************************************************************************/
652 static void DemuxClose( vlc_object_t *p_this )
653 {
654     demux_t      *p_demux = (demux_t *)p_this;
655     access_sys_t *p_sys   = (access_sys_t *)p_demux->p_sys;
656
657     /* Stop capturing stuff */
658     p_sys->p_control->Stop();
659
660     CommonClose( p_this, p_sys );
661 }
662
663 /****************************************************************************
664  * ConnectFilters
665  ****************************************************************************/
666 static bool ConnectFilters( vlc_object_t *p_this, access_sys_t *p_sys,
667                             IBaseFilter *p_filter,
668                             CaptureFilter *p_capture_filter )
669 {
670     CapturePin *p_input_pin = p_capture_filter->CustomGetPin();
671
672     AM_MEDIA_TYPE mediaType = p_input_pin->CustomGetMediaType();
673
674     if( p_sys->p_capture_graph_builder2 )
675     {
676         if( FAILED(p_sys->p_capture_graph_builder2->
677                 RenderStream( &PIN_CATEGORY_CAPTURE, &mediaType.majortype,
678                               p_filter, 0, (IBaseFilter *)p_capture_filter )) )
679         {
680             return false;
681         }
682
683         // Sort out all the possible video inputs
684         // The class needs to be given the capture filters ANALOGVIDEO input pin
685         IEnumPins *pins = 0;
686         if( ( mediaType.majortype == MEDIATYPE_Video ||
687               mediaType.majortype == MEDIATYPE_Stream ) &&
688             SUCCEEDED(p_filter->EnumPins(&pins)) )
689         {
690             IPin        *pP = 0;
691             ULONG        n;
692             PIN_INFO     pinInfo;
693             BOOL         Found = FALSE;
694             IKsPropertySet *pKs=0;
695             GUID guid;
696             DWORD dw;
697
698             while( !Found && ( S_OK == pins->Next(1, &pP, &n) ) )
699             {
700                 if( S_OK == pP->QueryPinInfo(&pinInfo) )
701                 {
702                     // is this pin an ANALOGVIDEOIN input pin?
703                     if( pinInfo.dir == PINDIR_INPUT &&
704                         pP->QueryInterface( IID_IKsPropertySet,
705                                             (void **)&pKs ) == S_OK )
706                     {
707                         if( pKs->Get( AMPROPSETID_Pin,
708                                       AMPROPERTY_PIN_CATEGORY, NULL, 0,
709                                       &guid, sizeof(GUID), &dw ) == S_OK )
710                         {
711                             if( guid == PIN_CATEGORY_ANALOGVIDEOIN )
712                             {
713                                 // recursively search crossbar routes
714                                 FindCrossbarRoutes( p_this, p_sys, pP, 0 );
715                                 // found it
716                                 Found = TRUE;
717                             }
718                         }
719                         pKs->Release();
720                     }
721                     pinInfo.pFilter->Release();
722                 }
723                 pP->Release();
724             }
725             pins->Release();
726         }
727         return true;
728     }
729     else
730     {
731         IEnumPins *p_enumpins;
732         IPin *p_pin;
733
734         if( S_OK != p_filter->EnumPins( &p_enumpins ) ) return false;
735
736         while( S_OK == p_enumpins->Next( 1, &p_pin, NULL ) )
737         {
738             PIN_DIRECTION pin_dir;
739             p_pin->QueryDirection( &pin_dir );
740
741             if( pin_dir == PINDIR_OUTPUT &&
742                 p_sys->p_graph->ConnectDirect( p_pin, (IPin *)p_input_pin,
743                                                0 ) == S_OK )
744             {
745                 p_pin->Release();
746                 p_enumpins->Release();
747                 return true;
748             }
749             p_pin->Release();
750         }
751
752         p_enumpins->Release();
753         return false;
754     }
755 }
756
757 /*
758  * get fourcc priority from arbritary preference, the higher the better
759  */
760 static int GetFourCCPriority( int i_fourcc )
761 {
762     switch( i_fourcc )
763     {
764     case VLC_FOURCC('I','4','2','0'):
765     case VLC_FOURCC('f','l','3','2'):
766         return 9;
767     case VLC_FOURCC('Y','V','1','2'):
768     case VLC_FOURCC('a','r','a','w'):
769         return 8;
770     case VLC_FOURCC('R','V','2','4'):
771         return 7;
772     case VLC_FOURCC('Y','U','Y','2'):
773     case VLC_FOURCC('R','V','3','2'):
774     case VLC_FOURCC('R','G','B','A'):
775         return 6;
776     }
777
778     return 0;
779 }
780
781 #define MAX_MEDIA_TYPES 32
782
783 static int OpenDevice( vlc_object_t *p_this, access_sys_t *p_sys,
784                        string devicename, vlc_bool_t b_audio )
785 {
786     /* See if device is already opened */
787     for( int i = 0; i < p_sys->i_streams; i++ )
788     {
789         if( devicename.size() &&
790             p_sys->pp_streams[i]->devicename == devicename )
791         {
792             /* Already opened */
793             return VLC_SUCCESS;
794         }
795     }
796
797     list<string> list_devices;
798
799     /* Enumerate devices and display their names */
800     FindCaptureDevice( p_this, NULL, &list_devices, b_audio );
801
802     if( !list_devices.size() )
803         return VLC_EGENERIC;
804
805     list<string>::iterator iter;
806     for( iter = list_devices.begin(); iter != list_devices.end(); iter++ )
807         msg_Dbg( p_this, "found device: %s", iter->c_str() );
808
809     /* If no device name was specified, pick the 1st one */
810     if( devicename.size() == 0 )
811     {
812         devicename = *list_devices.begin();
813     }
814
815     // Use the system device enumerator and class enumerator to find
816     // a capture/preview device, such as a desktop USB video camera.
817     IBaseFilter *p_device_filter =
818         FindCaptureDevice( p_this, &devicename, 0, b_audio );
819     if( p_device_filter )
820         msg_Dbg( p_this, "using device: %s", devicename.c_str() );
821     else
822     {
823         msg_Err( p_this, "can't use device: %s, unsupported device type",
824                  devicename.c_str() );
825         return VLC_EGENERIC;
826     }
827
828     // Retreive acceptable media types supported by device
829     AM_MEDIA_TYPE media_types[MAX_MEDIA_TYPES];
830     size_t media_count =
831         EnumDeviceCaps( p_this, p_device_filter, p_sys->i_chroma,
832                         p_sys->i_width, p_sys->i_height,
833                         0, 0, 0, media_types, MAX_MEDIA_TYPES );
834
835     size_t mt_count = 0;
836     AM_MEDIA_TYPE *mt = NULL;
837
838     /* Only force the chroma setting if it is specified by the user. */
839     if( p_sys->b_chroma )
840     {
841         /* Find out if the pin handles MEDIATYPE_Stream, in which case we
842         * won't add a prefered media type as this doesn't seem to work well
843         * -- to investigate. */
844         vlc_bool_t b_stream_type = VLC_FALSE;
845         for( size_t i = 0; i < media_count; i++ )
846         {
847             if( media_types[i].majortype == MEDIATYPE_Stream )
848             {
849                 b_stream_type = VLC_TRUE;
850                 break;
851             }
852         }
853
854         if( !b_stream_type && !b_audio )
855         {
856             // Insert prefered video media type
857             AM_MEDIA_TYPE mtr;
858             VIDEOINFOHEADER vh;
859
860             mtr.majortype            = MEDIATYPE_Video;
861             mtr.subtype              = MEDIASUBTYPE_I420;
862             mtr.bFixedSizeSamples    = TRUE;
863             mtr.bTemporalCompression = FALSE;
864             mtr.pUnk                 = NULL;
865             mtr.formattype           = FORMAT_VideoInfo;
866             mtr.cbFormat             = sizeof(vh);
867             mtr.pbFormat             = (BYTE *)&vh;
868
869             memset(&vh, 0, sizeof(vh));
870
871             vh.bmiHeader.biSize   = sizeof(vh.bmiHeader);
872             vh.bmiHeader.biWidth  = p_sys->i_width > 0 ? p_sys->i_width : 320;
873             vh.bmiHeader.biHeight = p_sys->i_height > 0 ? p_sys->i_height : 240;
874             vh.bmiHeader.biPlanes      = 3;
875             vh.bmiHeader.biBitCount    = 12;
876             vh.bmiHeader.biCompression = VLC_FOURCC('I','4','2','0');
877             vh.bmiHeader.biSizeImage   = vh.bmiHeader.biWidth * 12 *
878                 vh.bmiHeader.biHeight / 8;
879             mtr.lSampleSize            = vh.bmiHeader.biSizeImage;
880
881             mt_count = 1;
882             mt = (AM_MEDIA_TYPE *)malloc( sizeof(AM_MEDIA_TYPE)*mt_count );
883             CopyMediaType(mt, &mtr);
884         }
885         else if( !b_stream_type )
886         {
887             // Insert prefered audio media type
888             AM_MEDIA_TYPE mtr;
889             WAVEFORMATEX wf;
890
891             mtr.majortype            = MEDIATYPE_Audio;
892             mtr.subtype              = MEDIASUBTYPE_PCM;
893             mtr.bFixedSizeSamples    = TRUE;
894             mtr.bTemporalCompression = FALSE;
895             mtr.lSampleSize          = 0;
896             mtr.pUnk                 = NULL;
897             mtr.formattype           = FORMAT_WaveFormatEx;
898             mtr.cbFormat             = sizeof(wf);
899             mtr.pbFormat             = (BYTE *)&wf;
900
901             memset(&wf, 0, sizeof(wf));
902
903             wf.wFormatTag = WAVE_FORMAT_PCM;
904             wf.nChannels = 2;
905             wf.nSamplesPerSec = 44100;
906             wf.wBitsPerSample = 16;
907             wf.nBlockAlign = wf.nSamplesPerSec * wf.wBitsPerSample / 8;
908             wf.nAvgBytesPerSec = wf.nSamplesPerSec * wf.nBlockAlign;
909             wf.cbSize = 0;
910
911             mt_count = 1;
912             mt = (AM_MEDIA_TYPE *)malloc( sizeof(AM_MEDIA_TYPE)*mt_count );
913             CopyMediaType(mt, &mtr);
914         }
915     }
916
917     if( media_count > 0 )
918     {
919         mt = (AM_MEDIA_TYPE *)realloc( mt, sizeof(AM_MEDIA_TYPE) *
920                                        (mt_count + media_count) );
921
922         // Order and copy returned media types according to arbitrary
923         // fourcc priority
924         for( size_t c = 0; c < media_count; c++ )
925         {
926             int slot_priority =
927                 GetFourCCPriority(GetFourCCFromMediaType(media_types[c]));
928             size_t slot_copy = c;
929             for( size_t d = c+1; d < media_count; d++ )
930             {
931                 int priority =
932                     GetFourCCPriority(GetFourCCFromMediaType(media_types[d]));
933                 if( priority > slot_priority )
934                 {
935                     slot_priority = priority;
936                     slot_copy = d;
937                 }
938             }
939             if( slot_copy != c )
940             {
941                 mt[c+mt_count] = media_types[slot_copy];
942                 media_types[slot_copy] = media_types[c];
943             }
944             else
945             {
946                 mt[c+mt_count] = media_types[c];
947             }
948         }
949         mt_count += media_count;
950     }
951
952     /* Create and add our capture filter */
953     CaptureFilter *p_capture_filter =
954         new CaptureFilter( p_this, p_sys, mt, mt_count );
955     p_sys->p_graph->AddFilter( p_capture_filter, 0 );
956
957     /* Add the device filter to the graph (seems necessary with VfW before
958      * accessing pin attributes). */
959     p_sys->p_graph->AddFilter( p_device_filter, 0 );
960
961     /* Attempt to connect one of this device's capture output pins */
962     msg_Dbg( p_this, "connecting filters" );
963     if( ConnectFilters( p_this, p_sys, p_device_filter, p_capture_filter ) )
964     {
965         /* Success */
966         msg_Dbg( p_this, "filters connected successfully !" );
967
968         dshow_stream_t dshow_stream;
969         dshow_stream.b_pts = VLC_FALSE;
970         dshow_stream.p_es = 0;
971         dshow_stream.mt =
972             p_capture_filter->CustomGetPin()->CustomGetMediaType();
973
974         /* Show Device properties. Done here so the VLC stream is setup with
975          * the proper parameters. */
976         vlc_value_t val;
977         var_Get( p_this, "dshow-config", &val );
978         if( val.b_bool )
979         {
980             ShowDeviceProperties( p_this, p_sys->p_capture_graph_builder2,
981                                   p_device_filter, b_audio );
982         }
983
984         ConfigTuner( p_this, p_sys->p_capture_graph_builder2,
985                      p_device_filter );
986
987         var_Get( p_this, "dshow-tuner", &val );
988         if( val.b_bool && dshow_stream.mt.majortype != MEDIATYPE_Stream )
989         {
990             /* FIXME: we do MEDIATYPE_Stream later so we don't do it twice. */
991             ShowTunerProperties( p_this, p_sys->p_capture_graph_builder2,
992                                  p_device_filter, b_audio );
993         }
994
995         dshow_stream.mt =
996             p_capture_filter->CustomGetPin()->CustomGetMediaType();
997
998         dshow_stream.i_fourcc = GetFourCCFromMediaType( dshow_stream.mt );
999         if( dshow_stream.i_fourcc )
1000         {
1001             if( dshow_stream.mt.majortype == MEDIATYPE_Video )
1002             {
1003                 dshow_stream.header.video =
1004                     *(VIDEOINFOHEADER *)dshow_stream.mt.pbFormat;
1005                 msg_Dbg( p_this, "MEDIATYPE_Video" );
1006                 msg_Dbg( p_this, "selected video pin accepts format: %4.4s",
1007                          (char *)&dshow_stream.i_fourcc);
1008             }
1009             else if( dshow_stream.mt.majortype == MEDIATYPE_Audio )
1010             {
1011                 dshow_stream.header.audio =
1012                     *(WAVEFORMATEX *)dshow_stream.mt.pbFormat;
1013                 msg_Dbg( p_this, "MEDIATYPE_Audio" );
1014                 msg_Dbg( p_this, "selected audio pin accepts format: %4.4s",
1015                          (char *)&dshow_stream.i_fourcc);
1016             }
1017             else if( dshow_stream.mt.majortype == MEDIATYPE_Stream )
1018             {
1019                 msg_Dbg( p_this, "MEDIATYPE_Stream" );
1020                 msg_Dbg( p_this, "selected stream pin accepts format: %4.4s",
1021                          (char *)&dshow_stream.i_fourcc);
1022             }
1023             else
1024             {
1025                 msg_Dbg( p_this, "unknown stream majortype" );
1026                 goto fail;
1027             }
1028
1029             /* Add directshow elementary stream to our list */
1030             dshow_stream.p_device_filter = p_device_filter;
1031             dshow_stream.p_capture_filter = p_capture_filter;
1032
1033             p_sys->pp_streams = (dshow_stream_t **)realloc( p_sys->pp_streams,
1034                 sizeof(dshow_stream_t *) * (p_sys->i_streams + 1) );
1035             p_sys->pp_streams[p_sys->i_streams] = new dshow_stream_t;
1036             *p_sys->pp_streams[p_sys->i_streams++] = dshow_stream;
1037
1038             return VLC_SUCCESS;
1039         }
1040     }
1041
1042  fail:
1043     /* Remove filters from graph */
1044     p_sys->p_graph->RemoveFilter( p_device_filter );
1045     p_sys->p_graph->RemoveFilter( p_capture_filter );
1046
1047     /* Release objects */
1048     p_device_filter->Release();
1049     p_capture_filter->Release();
1050
1051     return VLC_EGENERIC;
1052 }
1053
1054 static IBaseFilter *
1055 FindCaptureDevice( vlc_object_t *p_this, string *p_devicename,
1056                    list<string> *p_listdevices, vlc_bool_t b_audio )
1057 {
1058     IBaseFilter *p_base_filter = NULL;
1059     IMoniker *p_moniker = NULL;
1060     ULONG i_fetched;
1061     HRESULT hr;
1062
1063     /* Create the system device enumerator */
1064     ICreateDevEnum *p_dev_enum = NULL;
1065
1066     hr = CoCreateInstance( CLSID_SystemDeviceEnum, NULL, CLSCTX_INPROC,
1067                            IID_ICreateDevEnum, (void **)&p_dev_enum );
1068     if( FAILED(hr) )
1069     {
1070         msg_Err( p_this, "failed to create the device enumerator (0x%lx)", hr);
1071         return NULL;
1072     }
1073
1074     /* Create an enumerator for the video capture devices */
1075     IEnumMoniker *p_class_enum = NULL;
1076     if( !b_audio )
1077         hr = p_dev_enum->CreateClassEnumerator( CLSID_VideoInputDeviceCategory,
1078                                                 &p_class_enum, 0 );
1079     else
1080         hr = p_dev_enum->CreateClassEnumerator( CLSID_AudioInputDeviceCategory,
1081                                                 &p_class_enum, 0 );
1082     p_dev_enum->Release();
1083     if( FAILED(hr) )
1084     {
1085         msg_Err( p_this, "failed to create the class enumerator (0x%lx)", hr );
1086         return NULL;
1087     }
1088
1089     /* If there are no enumerators for the requested type, then
1090      * CreateClassEnumerator will succeed, but p_class_enum will be NULL */
1091     if( p_class_enum == NULL )
1092     {
1093         msg_Err( p_this, "no capture device was detected" );
1094         return NULL;
1095     }
1096
1097     /* Enumerate the devices */
1098
1099     /* Note that if the Next() call succeeds but there are no monikers,
1100      * it will return S_FALSE (which is not a failure). Therefore, we check
1101      * that the return code is S_OK instead of using SUCCEEDED() macro. */
1102
1103     while( p_class_enum->Next( 1, &p_moniker, &i_fetched ) == S_OK )
1104     {
1105         /* Getting the property page to get the device name */
1106         IPropertyBag *p_bag;
1107         hr = p_moniker->BindToStorage( 0, 0, IID_IPropertyBag,
1108                                        (void **)&p_bag );
1109         if( SUCCEEDED(hr) )
1110         {
1111             VARIANT var;
1112             var.vt = VT_BSTR;
1113             hr = p_bag->Read( L"FriendlyName", &var, NULL );
1114             p_bag->Release();
1115             if( SUCCEEDED(hr) )
1116             {
1117                 int i_convert = WideCharToMultiByte(CP_ACP, 0, var.bstrVal,
1118                         SysStringLen(var.bstrVal), NULL, 0, NULL, NULL);
1119                 char *p_buf = (char *)alloca( i_convert+1 ); p_buf[0] = 0;
1120                 WideCharToMultiByte( CP_ACP, 0, var.bstrVal,
1121                         SysStringLen(var.bstrVal), p_buf, i_convert, NULL, NULL );
1122                 SysFreeString(var.bstrVal);
1123                 p_buf[i_convert] = '\0';
1124
1125                 if( p_listdevices ) p_listdevices->push_back( p_buf );
1126
1127                 if( p_devicename && *p_devicename == string(p_buf) )
1128                 {
1129                     /* Bind Moniker to a filter object */
1130                     hr = p_moniker->BindToObject( 0, 0, IID_IBaseFilter,
1131                                                   (void **)&p_base_filter );
1132                     if( FAILED(hr) )
1133                     {
1134                         msg_Err( p_this, "couldn't bind moniker to filter "
1135                                  "object (0x%lx)", hr );
1136                         p_moniker->Release();
1137                         p_class_enum->Release();
1138                         return NULL;
1139                     }
1140                     p_moniker->Release();
1141                     p_class_enum->Release();
1142                     return p_base_filter;
1143                 }
1144             }
1145         }
1146
1147         p_moniker->Release();
1148     }
1149
1150     p_class_enum->Release();
1151     return NULL;
1152 }
1153
1154 static size_t EnumDeviceCaps( vlc_object_t *p_this, IBaseFilter *p_filter,
1155                               int i_fourcc, int i_width, int i_height,
1156                               int i_channels, int i_samplespersec,
1157                               int i_bitspersample, AM_MEDIA_TYPE *mt,
1158                               size_t mt_max )
1159 {
1160     IEnumPins *p_enumpins;
1161     IPin *p_output_pin;
1162     IEnumMediaTypes *p_enummt;
1163     size_t mt_count = 0;
1164
1165     LONGLONG i_AvgTimePerFrame = 0;
1166     float r_fps = var_GetFloat( p_this, "dshow-fps" );
1167     if( r_fps )
1168         i_AvgTimePerFrame = 10000000000LL/(LONGLONG)(r_fps*1000.0f);
1169
1170     if( FAILED(p_filter->EnumPins( &p_enumpins )) )
1171     {
1172         msg_Dbg( p_this, "EnumDeviceCaps failed: no pin enumeration !");
1173         return 0;
1174     }
1175
1176     while( S_OK == p_enumpins->Next( 1, &p_output_pin, NULL ) )
1177     {
1178         PIN_INFO info;
1179
1180         if( S_OK == p_output_pin->QueryPinInfo( &info ) )
1181         {
1182             msg_Dbg( p_this, "EnumDeviceCaps: %s pin: %S",
1183                      info.dir == PINDIR_INPUT ? "input" : "output",
1184                      info.achName );
1185             if( info.pFilter ) info.pFilter->Release();
1186         }
1187
1188         p_output_pin->Release();
1189     }
1190
1191     p_enumpins->Reset();
1192
1193     while( !mt_count && p_enumpins->Next( 1, &p_output_pin, NULL ) == S_OK )
1194     {
1195         PIN_INFO info;
1196
1197         if( S_OK == p_output_pin->QueryPinInfo( &info ) )
1198         {
1199             if( info.pFilter ) info.pFilter->Release();
1200             if( info.dir == PINDIR_INPUT )
1201             {
1202                 p_output_pin->Release();
1203                 continue;
1204             }
1205             msg_Dbg( p_this, "EnumDeviceCaps: trying pin %S", info.achName );
1206         }
1207
1208         AM_MEDIA_TYPE *p_mt;
1209
1210         /*
1211         ** Configure pin with a default compatible media if possible
1212         */
1213
1214         IAMStreamConfig *pSC;
1215         if( SUCCEEDED(p_output_pin->QueryInterface( IID_IAMStreamConfig,
1216                                             (void **)&pSC )) )
1217         {
1218             int piCount, piSize;
1219             if( SUCCEEDED(pSC->GetNumberOfCapabilities(&piCount, &piSize)) )
1220             {
1221                 BYTE *pSCC= (BYTE *)CoTaskMemAlloc(piSize);
1222                 if( NULL != pSCC )
1223                 {
1224                     for( int i=0; i<piCount; ++i )
1225                     {
1226                         if( SUCCEEDED(pSC->GetStreamCaps(i, &p_mt, pSCC)) )
1227                         {
1228                             int i_current_fourcc = GetFourCCFromMediaType( *p_mt );
1229
1230                             if( !i_current_fourcc || (i_fourcc && (i_current_fourcc != i_fourcc)) )
1231                             {
1232                                 // incompatible or unrecognized chroma, try next media type
1233                                 FreeMediaType( *p_mt );
1234                                 CoTaskMemFree( (PVOID)p_mt );
1235                                 continue;
1236                             }
1237
1238                             if( MEDIATYPE_Video == p_mt->majortype
1239                                     && FORMAT_VideoInfo == p_mt->formattype )
1240                             {
1241                                 VIDEO_STREAM_CONFIG_CAPS *pVSCC = reinterpret_cast<VIDEO_STREAM_CONFIG_CAPS*>(pSCC);
1242                                 VIDEOINFOHEADER *pVih = reinterpret_cast<VIDEOINFOHEADER*>(p_mt->pbFormat);
1243
1244                                 if( i_AvgTimePerFrame )
1245                                 {
1246                                     if( pVSCC->MinFrameInterval > i_AvgTimePerFrame
1247                                       || i_AvgTimePerFrame > pVSCC->MaxFrameInterval )
1248                                     {
1249                                         // required frame rate not compatible, try next media type
1250                                         FreeMediaType( *p_mt );
1251                                         CoTaskMemFree( (PVOID)p_mt );
1252                                         continue;
1253                                     }
1254                                     pVih->AvgTimePerFrame = i_AvgTimePerFrame;
1255                                 }
1256
1257                                 if( i_width )
1258                                 {
1259                                     if( i_width % pVSCC->OutputGranularityX
1260                                      || pVSCC->MinOutputSize.cx > i_width
1261                                      || i_width > pVSCC->MaxOutputSize.cx )
1262                                     {
1263                                         // required width not compatible, try next media type
1264                                         FreeMediaType( *p_mt );
1265                                         CoTaskMemFree( (PVOID)p_mt );
1266                                         continue;
1267                                     }
1268                                     pVih->bmiHeader.biWidth = i_width;
1269                                 }
1270
1271                                 if( i_height )
1272                                 {
1273                                     if( i_height % pVSCC->OutputGranularityY
1274                                      || pVSCC->MinOutputSize.cy > i_height 
1275                                      || i_height > pVSCC->MaxOutputSize.cy )
1276                                     {
1277                                         // required height not compatible, try next media type
1278                                         FreeMediaType( *p_mt );
1279                                         CoTaskMemFree( (PVOID)p_mt );
1280                                         continue;
1281                                     }
1282                                     pVih->bmiHeader.biHeight = i_height;
1283                                 }
1284
1285                                 // Set the sample size and image size.
1286                                 // (Round the image width up to a DWORD boundary.)
1287                                 p_mt->lSampleSize = pVih->bmiHeader.biSizeImage = 
1288                                     ((pVih->bmiHeader.biWidth + 3) & ~3) *
1289                                     pVih->bmiHeader.biHeight * (pVih->bmiHeader.biBitCount>>3);
1290
1291                                 // no cropping, use full video input buffer
1292                                 memset(&(pVih->rcSource), 0, sizeof(RECT));
1293                                 memset(&(pVih->rcTarget), 0, sizeof(RECT));
1294
1295                                 // select this format as default
1296                                 if( SUCCEEDED( pSC->SetFormat(p_mt) ) )
1297                                 {
1298                                     msg_Dbg( p_this, "EnumDeviceCaps: input pin video format configured");
1299                                     // no need to check any more media types 
1300                                     i = piCount;
1301                                 }
1302                             }
1303                             else if( p_mt->majortype == MEDIATYPE_Audio
1304                                     && p_mt->formattype == FORMAT_WaveFormatEx )
1305                             {
1306                                 AUDIO_STREAM_CONFIG_CAPS *pASCC = reinterpret_cast<AUDIO_STREAM_CONFIG_CAPS*>(pSCC);
1307                                 WAVEFORMATEX *pWfx = reinterpret_cast<WAVEFORMATEX*>(p_mt->pbFormat);
1308
1309                                 if( i_channels )
1310                                 {
1311                                     if( i_channels % pASCC->ChannelsGranularity
1312                                      || (unsigned int)i_channels < pASCC->MinimumChannels
1313                                      || (unsigned int)i_channels > pASCC->MaximumChannels )
1314                                     {
1315                                         // required channels not compatible, try next media type
1316                                         FreeMediaType( *p_mt );
1317                                         CoTaskMemFree( (PVOID)p_mt );
1318                                         continue;
1319                                     }
1320                                     pWfx->nChannels = i_channels;
1321                                 }
1322
1323                                 if( i_samplespersec )
1324                                 {
1325                                     if( i_samplespersec % pASCC->BitsPerSampleGranularity
1326                                      || (unsigned int)i_samplespersec < pASCC->MinimumSampleFrequency
1327                                      || (unsigned int)i_samplespersec > pASCC->MaximumSampleFrequency )
1328                                     {
1329                                         // required sampling rate not compatible, try next media type
1330                                         FreeMediaType( *p_mt );
1331                                         CoTaskMemFree( (PVOID)p_mt );
1332                                         continue;
1333                                     }
1334                                     pWfx->nSamplesPerSec = i_samplespersec;
1335                                 }
1336
1337                                 if( i_bitspersample )
1338                                 {
1339                                     if( i_bitspersample % pASCC->BitsPerSampleGranularity
1340                                      || (unsigned int)i_bitspersample < pASCC->MinimumBitsPerSample
1341                                      || (unsigned int)i_bitspersample > pASCC->MaximumBitsPerSample )
1342                                     {
1343                                         // required sample size not compatible, try next media type
1344                                         FreeMediaType( *p_mt );
1345                                         CoTaskMemFree( (PVOID)p_mt );
1346                                         continue;
1347                                     }
1348                                     pWfx->wBitsPerSample = i_bitspersample;
1349                                 }
1350
1351                                 // select this format as default
1352                                 if( SUCCEEDED( pSC->SetFormat(p_mt) ) )
1353                                 {
1354                                     msg_Dbg( p_this, "EnumDeviceCaps: input pin default format configured");
1355                                     // no need to check any more media types 
1356                                     i = piCount;
1357                                 }
1358                             }
1359                             FreeMediaType( *p_mt );
1360                             CoTaskMemFree( (PVOID)p_mt );
1361                         }
1362                     }
1363                     CoTaskMemFree( (LPVOID)pSCC );
1364                 }
1365             }
1366             pSC->Release();
1367         }
1368
1369         /*
1370         ** Probe pin for available medias (may be a previously configured one)
1371         */
1372
1373         if( FAILED( p_output_pin->EnumMediaTypes( &p_enummt ) ) )
1374         {
1375             p_output_pin->Release();
1376             continue;
1377         }
1378
1379
1380         while( p_enummt->Next( 1, &p_mt, NULL ) == S_OK )
1381         {
1382             int i_current_fourcc = GetFourCCFromMediaType( *p_mt );
1383             if( i_current_fourcc && p_mt->majortype == MEDIATYPE_Video
1384                 && p_mt->formattype == FORMAT_VideoInfo )
1385             {
1386                 int i_current_width = ((VIDEOINFOHEADER *)p_mt->pbFormat)->bmiHeader.biWidth;
1387                 int i_current_height = ((VIDEOINFOHEADER *)p_mt->pbFormat)->bmiHeader.biHeight;
1388                 LONGLONG i_current_atpf = ((VIDEOINFOHEADER *)p_mt->pbFormat)->AvgTimePerFrame;
1389
1390                 if( i_current_height < 0 )
1391                     i_current_height = -i_current_height; 
1392
1393                 msg_Dbg( p_this, "EnumDeviceCaps: input pin "
1394                          "accepts chroma: %4.4s, width:%i, height:%i, fps:%f",
1395                          (char *)&i_current_fourcc, i_current_width,
1396                          i_current_height, (10000000.0f/((float)i_current_atpf)) );
1397
1398                 if( ( !i_fourcc || i_fourcc == i_current_fourcc ) &&
1399                     ( !i_width || i_width == i_current_width ) &&
1400                     ( !i_height || i_height == i_current_height ) &&
1401                     ( !i_AvgTimePerFrame || i_AvgTimePerFrame == i_current_atpf ) &&
1402                     mt_count < mt_max )
1403                 {
1404                     /* Pick match */
1405                     mt[mt_count++] = *p_mt;
1406                 }
1407                 else FreeMediaType( *p_mt );
1408             }
1409             else if( i_current_fourcc && p_mt->majortype == MEDIATYPE_Audio 
1410                     && p_mt->formattype == FORMAT_WaveFormatEx)
1411             {
1412                 int i_current_channels =
1413                     ((WAVEFORMATEX *)p_mt->pbFormat)->nChannels;
1414                 int i_current_samplespersec =
1415                     ((WAVEFORMATEX *)p_mt->pbFormat)->nSamplesPerSec;
1416                 int i_current_bitspersample =
1417                     ((WAVEFORMATEX *)p_mt->pbFormat)->wBitsPerSample;
1418
1419                 msg_Dbg( p_this, "EnumDeviceCaps: input pin "
1420                          "accepts format: %4.4s, channels:%i, "
1421                          "samples/sec:%i bits/sample:%i",
1422                          (char *)&i_current_fourcc, i_current_channels,
1423                          i_current_samplespersec, i_current_bitspersample);
1424
1425                 if( (!i_channels || i_channels == i_current_channels) &&
1426                     (!i_samplespersec ||
1427                      i_samplespersec == i_current_samplespersec) &&
1428                     (!i_bitspersample ||
1429                      i_bitspersample == i_current_bitspersample) &&
1430                     mt_count < mt_max )
1431                 {
1432                     /* Pick  match */
1433                     mt[mt_count++] = *p_mt;
1434
1435                     /* Setup a few properties like the audio latency */
1436                     IAMBufferNegotiation *p_ambuf;
1437                     if( SUCCEEDED( p_output_pin->QueryInterface(
1438                           IID_IAMBufferNegotiation, (void **)&p_ambuf ) ) )
1439                     {
1440                         ALLOCATOR_PROPERTIES AllocProp;
1441                         AllocProp.cbAlign = -1;
1442
1443                         /* 100 ms of latency */
1444                         AllocProp.cbBuffer = i_current_channels *
1445                           i_current_samplespersec *
1446                           i_current_bitspersample / 8 / 10;
1447
1448                         AllocProp.cbPrefix = -1;
1449                         AllocProp.cBuffers = -1;
1450                         p_ambuf->SuggestAllocatorProperties( &AllocProp );
1451                         p_ambuf->Release();
1452                     }
1453                 }
1454                 else FreeMediaType( *p_mt );
1455             }
1456             else if( i_current_fourcc && p_mt->majortype == MEDIATYPE_Stream )
1457             {
1458                 msg_Dbg( p_this, "EnumDeviceCaps: input pin "
1459                          "accepts stream format: %4.4s",
1460                          (char *)&i_current_fourcc );
1461
1462                 if( ( !i_fourcc || i_fourcc == i_current_fourcc ) &&
1463                     mt_count < mt_max )
1464                 {
1465                     /* Pick match */
1466                     mt[mt_count++] = *p_mt;
1467                     i_fourcc = i_current_fourcc;
1468                 }
1469                 else FreeMediaType( *p_mt );
1470             }
1471             else
1472             {
1473                 char *psz_type = "unknown";
1474                 if( p_mt->majortype == MEDIATYPE_Video ) psz_type = "video";
1475                 if( p_mt->majortype == MEDIATYPE_Audio ) psz_type = "audio";
1476                 if( p_mt->majortype == MEDIATYPE_Stream ) psz_type = "stream";
1477                 msg_Dbg( p_this, "EnumDeviceCaps: input pin media: unknown format "
1478                          "(%s %4.4s)", psz_type, (char *)&p_mt->subtype );
1479                 FreeMediaType( *p_mt );
1480             }
1481             CoTaskMemFree( (PVOID)p_mt );
1482         }
1483
1484         p_enummt->Release();
1485         p_output_pin->Release();
1486     }
1487
1488     p_enumpins->Release();
1489     return mt_count;
1490 }
1491
1492 /*****************************************************************************
1493  * ReadCompressed: reads compressed (MPEG/DV) data from the device.
1494  *****************************************************************************
1495  * Returns -1 in case of error, 0 in case of EOF, otherwise the number of
1496  * bytes.
1497  *****************************************************************************/
1498 static block_t *ReadCompressed( access_t *p_access )
1499 {
1500     access_sys_t   *p_sys = p_access->p_sys;
1501     dshow_stream_t *p_stream = NULL;
1502     VLCMediaSample sample;
1503
1504     /* Read 1 DV/MPEG frame (they contain the video and audio data) */
1505
1506     /* There must be only 1 elementary stream to produce a valid stream
1507      * of MPEG or DV data */
1508     p_stream = p_sys->pp_streams[0];
1509
1510     while( 1 )
1511     {
1512         if( p_access->b_die || p_access->b_error ) return 0;
1513
1514         /* Get new sample/frame from the elementary stream (blocking). */
1515         vlc_mutex_lock( &p_sys->lock );
1516
1517         if( p_stream->p_capture_filter->CustomGetPin()
1518               ->CustomGetSample( &sample ) != S_OK )
1519         {
1520             /* No data available. Wait until some data has arrived */
1521             vlc_cond_wait( &p_sys->wait, &p_sys->lock );
1522             vlc_mutex_unlock( &p_sys->lock );
1523             continue;
1524         }
1525
1526         vlc_mutex_unlock( &p_sys->lock );
1527
1528         /*
1529          * We got our sample
1530          */
1531         block_t *p_block;
1532         uint8_t *p_data;
1533         int i_data_size = sample.p_sample->GetActualDataLength();
1534
1535         if( !i_data_size || !(p_block = block_New( p_access, i_data_size )) )
1536         {
1537             sample.p_sample->Release();
1538             continue;
1539         }
1540
1541         sample.p_sample->GetPointer( &p_data );
1542         p_access->p_vlc->pf_memcpy( p_block->p_buffer, p_data, i_data_size );
1543         sample.p_sample->Release();
1544
1545         /* The caller got what he wanted */
1546         return p_block;
1547     }
1548
1549     return 0; /* never reached */
1550 }
1551
1552 /****************************************************************************
1553  * Demux:
1554  ****************************************************************************/
1555 static int Demux( demux_t *p_demux )
1556 {
1557     access_sys_t *p_sys = (access_sys_t *)p_demux->p_sys;
1558     dshow_stream_t *p_stream = NULL;
1559     VLCMediaSample sample;
1560     int i_data_size, i_stream;
1561     uint8_t *p_data;
1562     block_t *p_block;
1563
1564     vlc_mutex_lock( &p_sys->lock );
1565
1566     /* Try to grab an audio sample (audio has a higher priority) */
1567     for( i_stream = 0; i_stream < p_sys->i_streams; i_stream++ )
1568     {
1569         p_stream = p_sys->pp_streams[i_stream];
1570         if( p_stream->mt.majortype == MEDIATYPE_Audio &&
1571             p_stream->p_capture_filter &&
1572             p_stream->p_capture_filter->CustomGetPin()
1573               ->CustomGetSample( &sample ) == S_OK )
1574         {
1575             break;
1576         }
1577     }
1578     /* Try to grab a video sample */
1579     if( i_stream == p_sys->i_streams )
1580     {
1581         for( i_stream = 0; i_stream < p_sys->i_streams; i_stream++ )
1582         {
1583             p_stream = p_sys->pp_streams[i_stream];
1584             if( p_stream->p_capture_filter &&
1585                 p_stream->p_capture_filter->CustomGetPin()
1586                     ->CustomGetSample( &sample ) == S_OK )
1587             {
1588                 break;
1589             }
1590         }
1591     }
1592
1593     vlc_mutex_unlock( &p_sys->lock );
1594
1595     if( i_stream == p_sys->i_streams )
1596     {
1597         /* Sleep so we do not consume all the cpu, 10ms seems
1598          * like a good value (100fps) */
1599         msleep( 10000 );
1600         return 1;
1601     }
1602
1603     /*
1604      * We got our sample
1605      */
1606     i_data_size = sample.p_sample->GetActualDataLength();
1607     sample.p_sample->GetPointer( &p_data );
1608
1609     REFERENCE_TIME i_pts, i_end_date;
1610     HRESULT hr = sample.p_sample->GetTime( &i_pts, &i_end_date );
1611     if( hr != VFW_S_NO_STOP_TIME && hr != S_OK ) i_pts = 0;
1612
1613     if( !i_pts )
1614     {
1615         if( p_stream->mt.majortype == MEDIATYPE_Video || !p_stream->b_pts )
1616         {
1617             /* Use our data timestamp */
1618             i_pts = sample.i_timestamp;
1619             p_stream->b_pts = VLC_TRUE;
1620         }
1621     }
1622
1623     i_pts /= 10; /* Dshow works with 100 nano-seconds resolution */
1624
1625 #if 0
1626     msg_Dbg( p_demux, "Read() stream: %i, size: %i, PTS: "I64Fd,
1627              i_stream, i_data_size, i_pts );
1628 #endif
1629
1630     p_block = block_New( p_demux, i_data_size );
1631     p_demux->p_vlc->pf_memcpy( p_block->p_buffer, p_data, i_data_size );
1632     p_block->i_pts = p_block->i_dts = i_pts;
1633     sample.p_sample->Release();
1634
1635     es_out_Control( p_demux->out, ES_OUT_SET_PCR, i_pts > 0 ? i_pts : 0 );
1636     es_out_Send( p_demux->out, p_stream->p_es, p_block );
1637
1638     return 1;
1639 }
1640
1641 /*****************************************************************************
1642  * AccessControl:
1643  *****************************************************************************/
1644 static int AccessControl( access_t *p_access, int i_query, va_list args )
1645 {
1646     vlc_bool_t   *pb_bool;
1647     int          *pi_int;
1648     int64_t      *pi_64;
1649
1650     switch( i_query )
1651     {
1652     /* */
1653     case ACCESS_CAN_SEEK:
1654     case ACCESS_CAN_FASTSEEK:
1655     case ACCESS_CAN_PAUSE:
1656     case ACCESS_CAN_CONTROL_PACE:
1657         pb_bool = (vlc_bool_t*)va_arg( args, vlc_bool_t* );
1658         *pb_bool = VLC_FALSE;
1659         break;
1660
1661     /* */
1662     case ACCESS_GET_MTU:
1663         pi_int = (int*)va_arg( args, int * );
1664         *pi_int = 0;
1665         break;
1666
1667     case ACCESS_GET_PTS_DELAY:
1668         pi_64 = (int64_t*)va_arg( args, int64_t * );
1669         *pi_64 = (int64_t)var_GetInteger( p_access, "dshow-caching" ) * 1000;
1670         break;
1671
1672     /* */
1673     case ACCESS_SET_PAUSE_STATE:
1674     case ACCESS_GET_TITLE_INFO:
1675     case ACCESS_SET_TITLE:
1676     case ACCESS_SET_SEEKPOINT:
1677     case ACCESS_SET_PRIVATE_ID_STATE:
1678         return VLC_EGENERIC;
1679
1680     default:
1681         msg_Warn( p_access, "unimplemented query in control" );
1682         return VLC_EGENERIC;
1683     }
1684
1685     return VLC_SUCCESS;
1686 }
1687
1688 /****************************************************************************
1689  * DemuxControl:
1690  ****************************************************************************/
1691 static int DemuxControl( demux_t *p_demux, int i_query, va_list args )
1692 {
1693     vlc_bool_t *pb;
1694     int64_t    *pi64;
1695
1696     switch( i_query )
1697     {
1698     /* Special for access_demux */
1699     case DEMUX_CAN_PAUSE:
1700     case DEMUX_SET_PAUSE_STATE:
1701     case DEMUX_CAN_CONTROL_PACE:
1702         pb = (vlc_bool_t*)va_arg( args, vlc_bool_t * );
1703         *pb = VLC_FALSE;
1704         return VLC_SUCCESS;
1705
1706     case DEMUX_GET_PTS_DELAY:
1707         pi64 = (int64_t*)va_arg( args, int64_t * );
1708         *pi64 = (int64_t)var_GetInteger( p_demux, "dshow-caching" ) * 1000;
1709         return VLC_SUCCESS;
1710
1711     case DEMUX_GET_TIME:
1712         pi64 = (int64_t*)va_arg( args, int64_t * );
1713         *pi64 = mdate();
1714         return VLC_SUCCESS;
1715
1716     /* TODO implement others */
1717     default:
1718         return VLC_EGENERIC;
1719     }
1720
1721     return VLC_EGENERIC;
1722 }
1723
1724 /*****************************************************************************
1725  * config variable callback
1726  *****************************************************************************/
1727 static int FindDevicesCallback( vlc_object_t *p_this, char const *psz_name,
1728                                vlc_value_t newval, vlc_value_t oldval, void * )
1729 {
1730     module_config_t *p_item;
1731     vlc_bool_t b_audio = VLC_FALSE;
1732     int i;
1733
1734     p_item = config_FindConfig( p_this, psz_name );
1735     if( !p_item ) return VLC_SUCCESS;
1736
1737     if( !strcmp( psz_name, "dshow-adev" ) ) b_audio = VLC_TRUE;
1738
1739     /* Clear-up the current list */
1740     if( p_item->i_list )
1741     {
1742         /* Keep the 2 first entries */
1743         for( i = 2; i < p_item->i_list; i++ )
1744         {
1745             free( p_item->ppsz_list[i] );
1746             free( p_item->ppsz_list_text[i] );
1747         }
1748         /* TODO: Remove when no more needed */
1749         p_item->ppsz_list[i] = NULL;
1750         p_item->ppsz_list_text[i] = NULL;
1751     }
1752     p_item->i_list = 2;
1753
1754     /* Find list of devices */
1755     list<string> list_devices;
1756
1757     /* Initialize OLE/COM */
1758     CoInitialize( 0 );
1759
1760     FindCaptureDevice( p_this, NULL, &list_devices, b_audio );
1761
1762     /* Uninitialize OLE/COM */
1763     CoUninitialize();
1764
1765     if( !list_devices.size() ) return VLC_SUCCESS;
1766
1767     p_item->ppsz_list =
1768         (char **)realloc( p_item->ppsz_list,
1769                           (list_devices.size()+3) * sizeof(char *) );
1770     p_item->ppsz_list_text =
1771         (char **)realloc( p_item->ppsz_list_text,
1772                           (list_devices.size()+3) * sizeof(char *) );
1773
1774     list<string>::iterator iter;
1775     for( iter = list_devices.begin(), i = 2; iter != list_devices.end();
1776          iter++, i++ )
1777     {
1778         p_item->ppsz_list[i] = strdup( iter->c_str() );
1779         p_item->ppsz_list_text[i] = NULL;
1780         p_item->i_list++;
1781     }
1782     p_item->ppsz_list[i] = NULL;
1783     p_item->ppsz_list_text[i] = NULL;
1784
1785     /* Signal change to the interface */
1786     p_item->b_dirty = VLC_TRUE;
1787
1788     return VLC_SUCCESS;
1789 }
1790
1791 static int ConfigDevicesCallback( vlc_object_t *p_this, char const *psz_name,
1792                                vlc_value_t newval, vlc_value_t oldval, void * )
1793 {
1794     module_config_t *p_item;
1795     vlc_bool_t b_audio = VLC_FALSE;
1796
1797     /* Initialize OLE/COM */
1798     CoInitialize( 0 );
1799
1800     p_item = config_FindConfig( p_this, psz_name );
1801     if( !p_item ) return VLC_SUCCESS;
1802
1803     if( !strcmp( psz_name, "dshow-adev" ) ) b_audio = VLC_TRUE;
1804
1805     string devicename;
1806
1807     if( newval.psz_string && *newval.psz_string )
1808     {
1809         devicename = newval.psz_string;
1810     }
1811     else
1812     {
1813         /* If no device name was specified, pick the 1st one */
1814         list<string> list_devices;
1815
1816         /* Enumerate devices */
1817         FindCaptureDevice( p_this, NULL, &list_devices, b_audio );
1818         if( !list_devices.size() ) return VLC_EGENERIC;
1819         devicename = *list_devices.begin();
1820     }
1821
1822     IBaseFilter *p_device_filter =
1823         FindCaptureDevice( p_this, &devicename, NULL, b_audio );
1824     if( p_device_filter )
1825     {
1826         ShowPropertyPage( p_device_filter );
1827     }
1828     else
1829     {
1830         /* Uninitialize OLE/COM */
1831         CoUninitialize();
1832
1833         msg_Err( p_this, "didn't find device: %s", devicename.c_str() );
1834         return VLC_EGENERIC;
1835     }
1836
1837     /* Uninitialize OLE/COM */
1838     CoUninitialize();
1839
1840     return VLC_SUCCESS;
1841 }
1842
1843 /*****************************************************************************
1844  * Properties
1845  *****************************************************************************/
1846 static void ShowPropertyPage( IUnknown *obj )
1847 {
1848     ISpecifyPropertyPages *p_spec;
1849     CAUUID cauuid;
1850
1851     HRESULT hr = obj->QueryInterface( IID_ISpecifyPropertyPages,
1852                                       (void **)&p_spec );
1853     if( FAILED(hr) ) return;
1854
1855     if( SUCCEEDED(p_spec->GetPages( &cauuid )) )
1856     {
1857         if( cauuid.cElems > 0 )
1858         {
1859             HWND hwnd_desktop = ::GetDesktopWindow();
1860
1861             OleCreatePropertyFrame( hwnd_desktop, 30, 30, NULL, 1, &obj,
1862                                     cauuid.cElems, cauuid.pElems, 0, 0, NULL );
1863
1864             CoTaskMemFree( cauuid.pElems );
1865         }
1866         p_spec->Release();
1867     }
1868 }
1869
1870 static void ShowDeviceProperties( vlc_object_t *p_this,
1871                                   ICaptureGraphBuilder2 *p_graph,
1872                                   IBaseFilter *p_device_filter,
1873                                   vlc_bool_t b_audio )
1874 {
1875     HRESULT hr;
1876     msg_Dbg( p_this, "Configuring Device Properties" );
1877
1878     /*
1879      * Video or audio capture filter page
1880      */
1881     ShowPropertyPage( p_device_filter );
1882
1883     /*
1884      * Audio capture pin
1885      */
1886     if( p_graph && b_audio )
1887     {
1888         IAMStreamConfig *p_SC;
1889
1890         msg_Dbg( p_this, "Showing WDM Audio Configuration Pages" );
1891
1892         hr = p_graph->FindInterface( &PIN_CATEGORY_CAPTURE,
1893                                      &MEDIATYPE_Audio, p_device_filter,
1894                                      IID_IAMStreamConfig, (void **)&p_SC );
1895         if( SUCCEEDED(hr) )
1896         {
1897             ShowPropertyPage(p_SC);
1898             p_SC->Release();
1899         }
1900
1901         /*
1902          * TV Audio filter
1903          */
1904         IAMTVAudio *p_TVA;
1905         HRESULT hr = p_graph->FindInterface( &PIN_CATEGORY_CAPTURE,
1906                                              &MEDIATYPE_Audio, p_device_filter,
1907                                              IID_IAMTVAudio, (void **)&p_TVA );
1908         if( SUCCEEDED(hr) )
1909         {
1910             ShowPropertyPage(p_TVA);
1911             p_TVA->Release();
1912         }
1913     }
1914
1915     /*
1916      * Video capture pin
1917      */
1918     if( p_graph && !b_audio )
1919     {
1920         IAMStreamConfig *p_SC;
1921
1922         msg_Dbg( p_this, "Showing WDM Video Configuration Pages" );
1923
1924         hr = p_graph->FindInterface( &PIN_CATEGORY_CAPTURE,
1925                                      &MEDIATYPE_Interleaved, p_device_filter,
1926                                      IID_IAMStreamConfig, (void **)&p_SC );
1927         if( FAILED(hr) )
1928         {
1929             hr = p_graph->FindInterface( &PIN_CATEGORY_CAPTURE,
1930                                          &MEDIATYPE_Video, p_device_filter,
1931                                          IID_IAMStreamConfig, (void **)&p_SC );
1932         }
1933
1934         if( FAILED(hr) )
1935         {
1936             hr = p_graph->FindInterface( &PIN_CATEGORY_CAPTURE,
1937                                          &MEDIATYPE_Stream, p_device_filter,
1938                                          IID_IAMStreamConfig, (void **)&p_SC );
1939         }
1940
1941         if( SUCCEEDED(hr) )
1942         {
1943             ShowPropertyPage(p_SC);
1944             p_SC->Release();
1945         }
1946     }
1947 }
1948
1949 static void ShowTunerProperties( vlc_object_t *p_this,
1950                                  ICaptureGraphBuilder2 *p_graph,
1951                                  IBaseFilter *p_device_filter,
1952                                  vlc_bool_t b_audio )
1953 {
1954     HRESULT hr;
1955     msg_Dbg( p_this, "Configuring Tuner Properties" );
1956
1957     if( !p_graph || b_audio ) return;
1958
1959     IAMTVTuner *p_TV;
1960     hr = p_graph->FindInterface( &PIN_CATEGORY_CAPTURE,
1961                                  &MEDIATYPE_Interleaved, p_device_filter,
1962                                  IID_IAMTVTuner, (void **)&p_TV );
1963     if( FAILED(hr) )
1964     {
1965         hr = p_graph->FindInterface( &PIN_CATEGORY_CAPTURE,
1966                                      &MEDIATYPE_Video, p_device_filter,
1967                                      IID_IAMTVTuner, (void **)&p_TV );
1968     }
1969
1970     if( FAILED(hr) )
1971     {
1972         hr = p_graph->FindInterface( &PIN_CATEGORY_CAPTURE,
1973                                      &MEDIATYPE_Stream, p_device_filter,
1974                                      IID_IAMTVTuner, (void **)&p_TV );
1975     }
1976
1977     if( SUCCEEDED(hr) )
1978     {
1979         ShowPropertyPage(p_TV);
1980         p_TV->Release();
1981     }
1982 }
1983
1984 static void ConfigTuner( vlc_object_t *p_this, ICaptureGraphBuilder2 *p_graph,
1985                          IBaseFilter *p_device_filter )
1986 {
1987     int i_channel, i_country, i_input;
1988     long l_modes = 0;
1989     IAMTVTuner *p_TV;
1990     HRESULT hr;
1991
1992     if( !p_graph ) return;
1993
1994     i_channel = var_GetInteger( p_this, "dshow-tuner-channel" );
1995     i_country = var_GetInteger( p_this, "dshow-tuner-country" );
1996     i_input = var_GetInteger( p_this, "dshow-tuner-input" );
1997
1998     if( !i_channel && !i_country && !i_input ) return; /* Nothing to do */
1999
2000     msg_Dbg( p_this, "tuner config: channel %i, country %i, input type %i",
2001              i_channel, i_country, i_input );
2002
2003     hr = p_graph->FindInterface( &PIN_CATEGORY_CAPTURE, &MEDIATYPE_Interleaved,
2004                                  p_device_filter, IID_IAMTVTuner,
2005                                  (void **)&p_TV );
2006     if( FAILED(hr) )
2007     {
2008         hr = p_graph->FindInterface( &PIN_CATEGORY_CAPTURE, &MEDIATYPE_Video,
2009                                      p_device_filter, IID_IAMTVTuner,
2010                                      (void **)&p_TV );
2011     }
2012
2013     if( FAILED(hr) )
2014     {
2015         hr = p_graph->FindInterface( &PIN_CATEGORY_CAPTURE, &MEDIATYPE_Stream,
2016                                      p_device_filter, IID_IAMTVTuner,
2017                                      (void **)&p_TV );
2018     }
2019
2020     if( FAILED(hr) )
2021     {
2022         msg_Dbg( p_this, "couldn't find tuner interface" );
2023         return;
2024     }
2025
2026     hr = p_TV->GetAvailableModes( &l_modes );
2027     if( SUCCEEDED(hr) && (l_modes & AMTUNER_MODE_TV) )
2028     {
2029         hr = p_TV->put_Mode( AMTUNER_MODE_TV );
2030     }
2031
2032     if( i_input == 1 ) p_TV->put_InputType( 0, TunerInputCable );
2033     else if( i_input == 2 ) p_TV->put_InputType( 0, TunerInputAntenna );
2034
2035     p_TV->put_CountryCode( i_country );
2036     p_TV->put_Channel( i_channel, AMTUNER_SUBCHAN_NO_TUNE,
2037                        AMTUNER_SUBCHAN_NO_TUNE );
2038     p_TV->Release();
2039 }