]> git.sesse.net Git - vlc/commitdiff
frequency is nom frequency in MHz * 16, as for the v4l input.
authorBenjamin Pracht <bigben@videolan.org>
Tue, 22 Jul 2003 20:25:07 +0000 (20:25 +0000)
committerBenjamin Pracht <bigben@videolan.org>
Tue, 22 Jul 2003 20:25:07 +0000 (20:25 +0000)
Breaks compatibility with previous syntax...

modules/access/pvr/pvr.c

index 74f71b2d3b3d077f576a44c80a26c721e599ebe1..68be85b62bf20182c3f154183fdfebb50156dbda 100644 (file)
@@ -2,7 +2,7 @@
  * pvr.c
  *****************************************************************************
  * Copyright (C) 2001, 2002 VideoLAN
- * $Id: pvr.c,v 1.4 2003/07/22 13:58:23 bigben Exp $
+ * $Id: pvr.c,v 1.5 2003/07/22 20:25:07 bigben Exp $
  *
  * Authors: Eric Petit <titer@videolan.org>
  *
@@ -180,8 +180,8 @@ static int Open( vlc_object_t * p_this )
                                strlen( "frequency=" ) ) )
             {
                 p_sys->i_frequency =
-                    strtol( psz_parser + strlen( "frequency=" ),
-                            &psz_parser, 0 );
+                    1000 * strtol( psz_parser + strlen( "frequency=" ),
+                            &psz_parser, 0 ) / 16;
             }
             else if( !strncmp( psz_parser, "framerate=",
                                strlen( "framerate=" ) ) )