[vlc-devel] [PATCH] V4L2: Allow device to be specified with option.

Rémi Denis-Courmont remi at remlab.net
Thu Apr 21 13:37:21 CEST 2011


   Hello,

I don't really how this is supposed to work though.
"v4l2-dev" is not a configuration item (anymore).

On Wednesday 20 April 2011, Thierry Reding wrote:
> Currently the V4L2 device to be used can only be set via the media URL.
> This patch allows the :v4l2-dev option to set the device as well.
> Setting the device via the media URL still takes precedence.
> 
> This is useful if a program auto-detects the V4L2 device so that the
> media URL only needs to contain e.g. the tuner settings.
> ---
>  modules/access/v4l2.c |    8 ++++++--
>  1 files changed, 6 insertions(+), 2 deletions(-)
> 
> diff --git a/modules/access/v4l2.c b/modules/access/v4l2.c
> index bae9d0d..1ffe1cc 100644
> --- a/modules/access/v4l2.c
> +++ b/modules/access/v4l2.c
> @@ -705,6 +705,8 @@ static int DemuxOpen( vlc_object_t *p_this )
>  
> **************************************************************************
> ***/ static void GetV4L2Params( demux_sys_t *p_sys, vlc_object_t *p_obj ) {
> +    p_sys->psz_device = var_CreateGetNonEmptyString( p_obj, "v4l2-dev" );
> +
>      p_sys->i_selected_standard_id =
>          i_standards_list[var_CreateGetInteger( p_obj, "v4l2-standard" )];
> 
> @@ -743,7 +745,6 @@ static void GetV4L2Params( demux_sys_t *p_sys,
> vlc_object_t *p_obj ) }
>      free( psz_aspect );
> 
> -    p_sys->psz_device = NULL;
>      p_sys->i_fd = -1;
> 
>      p_sys->p_es = NULL;
> @@ -1001,8 +1002,11 @@ static void ParseMRL( demux_sys_t *p_sys, char
> *psz_path, vlc_object_t *p_obj )
> 
>      /* Main device */
>      if( *psz_dup )
> +    {
> +        free( p_sys->psz_device );
>          p_sys->psz_device = strdup( psz_dup );
> -    else
> +    }
> +    else if( p_sys->psz_device == NULL )
>          p_sys->psz_device = strdup( V4L2_DEFAULT );
>      free( psz_dup );
>  }
-- 
Rémi Denis-Courmont
http://www.remlab.info



More information about the vlc-devel mailing list