Commit 949ecd0d authored by Benjamin Pracht's avatar Benjamin Pracht

changed input parametter to channel, to be compatble with v4l input

parent ec8704b3
...@@ -2,7 +2,7 @@ ...@@ -2,7 +2,7 @@
* pvr.c * pvr.c
***************************************************************************** *****************************************************************************
* Copyright (C) 2001, 2002 VideoLAN * Copyright (C) 2001, 2002 VideoLAN
* $Id: pvr.c,v 1.8 2003/10/23 22:46:16 bigben Exp $ * $Id: pvr.c,v 1.9 2003/10/24 09:32:32 bigben Exp $
* *
* Authors: Eric Petit <titer@videolan.org> * Authors: Eric Petit <titer@videolan.org>
* *
...@@ -175,11 +175,11 @@ static int Open( vlc_object_t * p_this ) ...@@ -175,11 +175,11 @@ static int Open( vlc_object_t * p_this )
&psz_parser, 0 );} &psz_parser, 0 );}
} }
else if( !strncmp( psz_parser, "input=", else if( !strncmp( psz_parser, "channel=",
strlen( "input=" ) ) ) strlen( "channel=" ) ) )
{ {
p_sys->i_input = p_sys->i_input =
strtol( psz_parser + strlen( "input=" ), strtol( psz_parser + strlen( "channel=" ),
&psz_parser, 0 ); &psz_parser, 0 );
} }
else if( !strncmp( psz_parser, "device=", strlen( "device=" ) ) ) else if( !strncmp( psz_parser, "device=", strlen( "device=" ) ) )
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment