Skip site navigation (1)Skip section navigation (2)
Date:      Thu, 2 Mar 2000 19:56:21 -0500
From:      Randall Hopper <aa8vb@ipass.net>
To:        Ben <bda20@cam.ac.uk>
Cc:        multimedia@FreeBSD.ORG
Subject:   Re: FXTV query
Message-ID:  <20000302195620.A33789@ipass.net>
In-Reply-To: <Pine.SOL.3.96.1000302163425.12082K-100000@ursa.cus.cam.ac.uk>; from bda20@cam.ac.uk on Thu, Mar 02, 2000 at 04:37:17PM %2B0000
References:  <Pine.SOL.3.96.1000302163425.12082K-100000@ursa.cus.cam.ac.uk>

next in thread | previous in thread | raw e-mail | index | archive | help
Ben:
 |Am running 3.2-STABLE with the bktr0 stuff complied in.  When running
 |fxtv-1.02 I always have to change the input from S-video to CS-video to
 |get a colour image.
 |
 |The option -defaultInput csvideo has no effect.  Setting tuner, video, or
 |svideo in place do have their correct settings respected.  Is there a newer
 |version I haven't found yet which fixes this?

Thanks for the report.  It's a bug in 1.02.  Here's a patch:

--- ORIG/tv.c   Sat Oct 16 20:14:20 1999
+++ tv.c        Thu Mar  2 19:55:06 2000
@@ -502,12 +502,12 @@
         if (( strstr( App_res.def_input, "tuner" ) != NULL ) ||
             ( strstr( App_res.def_input, "TUNER" ) != NULL ))
             video_input_dev = TV_DEVICE_TUNER;
-        else if (( strstr( App_res.def_input, "svideo" ) != NULL ) ||
-                 ( strstr( App_res.def_input, "SVIDEO" ) != NULL ))
-            video_input_dev = TV_DEVICE_SVIDEO;
         else if (( strstr( App_res.def_input, "csvideo" ) != NULL ) ||
                  ( strstr( App_res.def_input, "CSVIDEO" ) != NULL ))
             video_input_dev = TV_DEVICE_CSVIDEO;
+        else if (( strstr( App_res.def_input, "svideo" ) != NULL ) ||
+                 ( strstr( App_res.def_input, "SVIDEO" ) != NULL ))
+            video_input_dev = TV_DEVICE_SVIDEO;
         else if (( strstr( App_res.def_input, "video" ) != NULL ) ||
                  ( strstr( App_res.def_input, "VIDEO" ) != NULL ))
             video_input_dev = TV_DEVICE_VIDEO;


Randall


To Unsubscribe: send mail to majordomo@FreeBSD.org
with "unsubscribe freebsd-multimedia" in the body of the message




Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?20000302195620.A33789>