From owner-freebsd-multimedia Sun Jul 12 06:15:13 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id GAA24249 for freebsd-multimedia-outgoing; Sun, 12 Jul 1998 06:15:13 -0700 (PDT) (envelope-from owner-freebsd-multimedia@FreeBSD.ORG) Received: from whqvax.picker.com (whqvax.picker.com [144.54.1.1]) by hub.freebsd.org (8.8.8/8.8.8) with SMTP id GAA24244 for ; Sun, 12 Jul 1998 06:15:11 -0700 (PDT) (envelope-from rhh@ct.picker.com) Received: from ct.picker.com by whqvax.picker.com with SMTP; Sun, 12 Jul 1998 9:13:36 -0400 (EDT) Received: from elmer.ct.picker.com ([144.54.57.34]) by ct.picker.com (4.1/SMI-4.1) id AA03823; Sun, 12 Jul 98 09:13:36 EDT Received: by elmer.ct.picker.com (SMI-8.6/SMI-SVR4) id JAA17128; Sun, 12 Jul 1998 09:13:09 -0400 Message-Id: <19980712091308.A17097@ct.picker.com> Date: Sun, 12 Jul 1998 09:13:08 -0400 From: Randall Hopper To: Kevin Day , Amancio Hasty Cc: multimedia@FreeBSD.ORG Subject: Re: bt878 support Mail-Followup-To: Kevin Day , Amancio Hasty , multimedia@freebsd.org References: <19980711193123.A15158@ct.picker.com> <199807120056.TAA09961@home.dragondata.com> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii X-Mailer: Mutt 0.91.1i In-Reply-To: <199807120056.TAA09961@home.dragondata.com>; from Kevin Day on Sat, Jul 11, 1998 at 07:56:14PM -0500 Sender: owner-freebsd-multimedia@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Kevin Day: |> 1. Does your TV card feed all 4 Bt878 inputs? |No. :) | |> 2. What are the Bt878 inputs on your card connected to? |> (tuner, video jacks, svideo jacks, etc.) | |I have a tuner in, and a video in. That's it. | |> The reason I ask is this: By convention, the mappings for Bt848 input |> device types -to- bktr input device ioctl #defines are as follows: |> |> #define DEVICE TYPE |> ------- --------------- |> DEV0 = STD VIDEO INPUT |> DEV1 = TUNER INPUT |> DEV2 = SVIDEO INPUT Amancio Hasty: |The Bt878 has for input muxes vs 3 Input Muxes for the bt848. | |It is up to the application to provide access to the muxes nor do |I expect Bt878 board manufacturers to standardize on the use of the |Input Muxes. | |vic handles this problem by providing select options for PORT-1, PORT-2, |PORT-3, |etc.. >From past mail, I understand that the Bt848 has 4 muxes instead of 3. But here's the issue: 1. A TV app should present selections to the user in terms of "video", "tuner", etc. Not "mux 0", "mux 1", "mux 2", "mux 3". 2. The user shouldn't have to know how the HW engineer wired up the Bt chip to configure or use the TV app. 3. The bktr driver knows what Bt chip, what tuner, what card is installed. From this it, it can infer which mux input is "video", which is "tuner", etc. The app doesn't (and shouldn't) know what Bt chip, what tuner, what card is installed. Thus it doesn't know where the tuner, video, etc. is. Now, the functional API to the driver currently has these semantics: - "select VIDEO input" (DEV0) - "select TUNER input" (DEV1) etc. This is a "good thing" IMO. Now, they're named with DEV0 and DEV1 due to legacy reuse of old METEOR symbols, but that's what they are (currently anyway). So if we were to follow convention, for these new TV boards, we'd map MUX3 to the video #define (METEOR_INPUT_DEV0). Possibly a little misleading from the symbol names. Even better, we can add are more explicit #defines (like the existing METEOR_INPUT_DEV_SVIDEO) which are, as the name implies, dynamically mapped to the appropriate input mux based on type. That is, add: METEOR_INPUT_DEV_VIDEO METEOR_INPUT_DEV_TUNER while keeping: METEOR_INPUT_DEV_SVIDEO in place. So basically, we need to keep a method in the driver API to select input based on input device type: video, tuner, etc. If this is supported, I'll be happy to put in the follow-through changes to Fxtv. Randall brooktree848.c: case METEORSINPUT: /* set input device */ ... /* this is the RCA video input */ case METEOR_INPUT_DEV0: ... /* this is the tuner input */ case METEOR_INPUT_DEV1: ... /* this is the S-VHS input */ case METEOR_INPUT_DEV2: case METEOR_INPUT_DEV_SVIDEO: ... To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-multimedia" in the body of the message From owner-freebsd-multimedia Sun Jul 12 08:42:25 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id IAA06619 for freebsd-multimedia-outgoing; Sun, 12 Jul 1998 08:42:25 -0700 (PDT) (envelope-from owner-freebsd-multimedia@FreeBSD.ORG) Received: from titus.stade.co.uk (stade.demon.co.uk [158.152.29.164]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id IAA06598 for ; Sun, 12 Jul 1998 08:42:21 -0700 (PDT) (envelope-from aw1@stade.co.uk) Received: (from aw1@localhost) by titus.stade.co.uk (8.8.8/8.8.8) id QAA11242; Sun, 12 Jul 1998 16:12:24 +0100 (BST) (envelope-from aw1) Message-ID: <19980712161224.C6054@stade.co.uk> Date: Sun, 12 Jul 1998 16:12:24 +0100 From: Adrian Wontroba To: multimedia@FreeBSD.ORG Subject: Re: New sound snapshot (with manpage) Reply-To: aw1@stade.co.uk Mail-Followup-To: multimedia@freebsd.org References: <199806071915.VAA14733@labinfo.iet.unipi.it> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii X-Mailer: Mutt 0.91.1i In-Reply-To: <199806071915.VAA14733@labinfo.iet.unipi.it>; from Luigi Rizzo on Sun, Jun 07, 1998 at 09:15:13PM +0200 Organization: Stade Computers Ltd, UK X-Phone: +(44) 121 681 6677 Sender: owner-freebsd-multimedia@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org On Sun, Jun 07, 1998 at 09:15:13PM +0200, Luigi Rizzo wrote: > i have a new snapshot of the audio driver at > http://www.iet.unipi.it/~luigi/snd980607.tgz I've just upgraded my machine from 2.2-stable to 3.0-current by the source route. Despite what you may read elsewhere, this was easy (8-) However, current's snd sources are basicly the 15 February version (though there appear to have been some changes). Unsurprisingly, my Vibra16X doesn't work too well. Just untarring the snd980607 package over isa/snd results in compilation errors (I've not kept these but can of course do it again). Does anybody have any advice about locally merging the latest snd driver with current, or even news about when it may happen to -current itself? -- Adrian Wontroba, Stade Computers Limited. phone: (+44) 121 681 6677 Mail info@accu.org for information about the Association of C and C++ Users or see To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-multimedia" in the body of the message From owner-freebsd-multimedia Sun Jul 12 10:50:41 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id KAA24908 for freebsd-multimedia-outgoing; Sun, 12 Jul 1998 10:50:41 -0700 (PDT) (envelope-from owner-freebsd-multimedia@FreeBSD.ORG) Received: from thelab.hub.org (tc-39.acadiau.ca [131.162.2.139]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id KAA24883 for ; Sun, 12 Jul 1998 10:50:34 -0700 (PDT) (envelope-from scrappy@hub.org) Received: from localhost (scrappy@localhost) by thelab.hub.org (8.8.8/8.8.2) with SMTP id OAA05808; Sun, 12 Jul 1998 14:50:30 -0300 (ADT) X-Authentication-Warning: thelab.hub.org: scrappy owned process doing -bs Date: Sun, 12 Jul 1998 14:50:05 -0300 (ADT) From: The Hermit Hacker To: Adrian Wontroba cc: multimedia@FreeBSD.ORG Subject: Re: New sound snapshot (with manpage) In-Reply-To: <19980712161224.C6054@stade.co.uk> Message-ID: MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII Sender: owner-freebsd-multimedia@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org On Sun, 12 Jul 1998, Adrian Wontroba wrote: > On Sun, Jun 07, 1998 at 09:15:13PM +0200, Luigi Rizzo wrote: > > i have a new snapshot of the audio driver at > > http://www.iet.unipi.it/~luigi/snd980607.tgz > > I've just upgraded my machine from 2.2-stable to 3.0-current by the > source route. Despite what you may read elsewhere, this was easy (8-) > > However, current's snd sources are basicly the 15 February version > (though there appear to have been some changes). Unsurprisingly, my > Vibra16X doesn't work too well. > > Just untarring the snd980607 package over isa/snd results in compilation > errors (I've not kept these but can of course do it again). > > Does anybody have any advice about locally merging the latest snd driver > with current, or even news about when it may happen to -current itself? I meant to merge it into -current about a week ago, but got tied up with other projects :( Will work on getting it in this week if nobody else does it first... Marc G. Fournier Systems Administrator @ hub.org primary: scrappy@hub.org secondary: scrappy@{freebsd|postgresql}.org To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-multimedia" in the body of the message From owner-freebsd-multimedia Sun Jul 12 12:31:05 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id MAA04665 for freebsd-multimedia-outgoing; Sun, 12 Jul 1998 12:31:05 -0700 (PDT) (envelope-from owner-freebsd-multimedia@FreeBSD.ORG) Received: from imo19.mx.aol.com (imo19.mx.aol.com [198.81.17.9]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id MAA04660 for ; Sun, 12 Jul 1998 12:31:04 -0700 (PDT) (envelope-from Sunnyline@aol.com) From: Sunnyline@aol.com Received: from Sunnyline@aol.com by imo19.mx.aol.com (IMOv14_b1.1) id HAHUa04160 for ; Sun, 12 Jul 1998 15:30:22 -0400 (EDT) Message-ID: Date: Sun, 12 Jul 1998 15:30:22 EDT To: multimedia@FreeBSD.ORG Mime-Version: 1.0 Subject: Question about Bt848 Content-type: text/plain; charset=US-ASCII Content-transfer-encoding: 7bit X-Mailer: Windows AOL sub 65 Sender: owner-freebsd-multimedia@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Hi, I'm owner of an Hauppauge Win Cast TV-Card and I want to handle it out of Windows... but that's not the question :) there was a link for a data-sheet for bt848 at your http, but i was not able to get contacted with www.brooktree.com ... do you know, where this data-sheet may be available somewhere else? (Sorry, but my english isn't pretty good, you read, but I think you see what I mean??) I would be glad if you can help me... greetz from germany Markus To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-multimedia" in the body of the message From owner-freebsd-multimedia Sun Jul 12 13:12:00 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id NAA08494 for freebsd-multimedia-outgoing; Sun, 12 Jul 1998 13:12:00 -0700 (PDT) (envelope-from owner-freebsd-multimedia@FreeBSD.ORG) Received: from titus.stade.co.uk (stade.demon.co.uk [158.152.29.164]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id NAA08489 for ; Sun, 12 Jul 1998 13:11:58 -0700 (PDT) (envelope-from aw1@stade.co.uk) Received: (from aw1@localhost) by titus.stade.co.uk (8.8.8/8.8.8) id VAA03037; Sun, 12 Jul 1998 21:11:32 +0100 (BST) (envelope-from aw1) Message-ID: <19980712211132.A901@stade.co.uk> Date: Sun, 12 Jul 1998 21:11:32 +0100 From: Adrian Wontroba To: The Hermit Hacker Cc: multimedia@FreeBSD.ORG Subject: Re: New sound snapshot (with manpage) Reply-To: aw1@stade.co.uk Mail-Followup-To: The Hermit Hacker , multimedia@FreeBSD.ORG References: <19980712161224.C6054@stade.co.uk> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii X-Mailer: Mutt 0.91.1i In-Reply-To: ; from The Hermit Hacker on Sun, Jul 12, 1998 at 02:50:05PM -0300 Organization: Stade Computers Ltd, UK X-Phone: +(44) 121 681 6677 Sender: owner-freebsd-multimedia@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org On Sun, Jul 12, 1998 at 02:50:05PM -0300, The Hermit Hacker wrote: > I meant to merge it into -current about a week ago, but got tied > up with other projects :( Will work on getting it in this week if nobody > else does it first... Thanks. -- Adrian Wontroba, Stade Computers Limited. phone: (+44) 121 681 6677 Mail info@accu.org for information about the Association of C and C++ Users or see To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-multimedia" in the body of the message From owner-freebsd-multimedia Sun Jul 12 19:25:43 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id TAA22773 for freebsd-multimedia-outgoing; Sun, 12 Jul 1998 19:25:43 -0700 (PDT) (envelope-from owner-freebsd-multimedia@FreeBSD.ORG) Received: from rah.star-gate.com (rah.star-gate.com [209.133.7.234]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id TAA22767 for ; Sun, 12 Jul 1998 19:25:41 -0700 (PDT) (envelope-from hasty@rah.star-gate.com) Received: from rah.star-gate.com (localhost.star-gate.com [127.0.0.1]) by rah.star-gate.com (8.8.8/8.8.8) with ESMTP id TAA00376 for ; Sun, 12 Jul 1998 19:25:38 -0700 (PDT) (envelope-from hasty@rah.star-gate.com) Message-Id: <199807130225.TAA00376@rah.star-gate.com> X-Mailer: exmh version 2.0.2 2/24/98 To: multimedia@FreeBSD.ORG Subject: bt848 driver update Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Date: Sun, 12 Jul 1998 19:25:38 -0700 From: Amancio Hasty Sender: owner-freebsd-multimedia@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org 1. The detection of Hauppauge's tuner has been improved by relying on eeprom[9]'s content. I think so far from the data that some have send me eeprom's 9'th byte appears to be the tuner model . To those who send their board info : A million tnks! 2. The problem with the Bt878 introducing one more input MUX and currently being used by board makers such as Hauppauge remains a problem for apps such as fxtv. I will address this issue as Randall has recommended however is going to have to wait till next week when I get breather from work. The new driver is at http://www.freebsd.org/~ahasty/Bt848.html ftp://rah.star-gate.com/pub/bt848.tar.gz and it has been checked in to -current. Amancio To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-multimedia" in the body of the message From owner-freebsd-multimedia Sun Jul 12 19:45:10 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id TAA25051 for freebsd-multimedia-outgoing; Sun, 12 Jul 1998 19:45:10 -0700 (PDT) (envelope-from owner-freebsd-multimedia@FreeBSD.ORG) Received: from time.cdrom.com (root@time.cdrom.com [204.216.27.226]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id TAA25045 for ; Sun, 12 Jul 1998 19:45:08 -0700 (PDT) (envelope-from jkh@time.cdrom.com) Received: from time.cdrom.com (jkh@localhost.cdrom.com [127.0.0.1]) by time.cdrom.com (8.8.8/8.8.8) with ESMTP id TAA28453 for ; Sun, 12 Jul 1998 19:45:03 -0700 (PDT) (envelope-from jkh@time.cdrom.com) To: multimedia@FreeBSD.ORG Subject: Spigot still supported? Date: Sun, 12 Jul 1998 19:45:02 -0700 Message-ID: <28449.900297902@time.cdrom.com> From: "Jordan K. Hubbard" Sender: owner-freebsd-multimedia@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org I recently dug a video spigot out of my junk drawer in the desire to get my camera working again (I have a VS440FX motherboard and my Matrox Meteor has a known bug which causes total lockup when used) but am having some trouble finding a way to even test it. At least with the Meteor we had that little `tv' program which Amancio and I hacked on, but I can't find anything similar for the Spigot. Building vic from the ports collection also doesn't get me a vic which displays the spigot as one of its supported grabber types - I see only "X11" and "still" when I click on the device button. Any tips? Thanks! - Jordan To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-multimedia" in the body of the message From owner-freebsd-multimedia Sun Jul 12 20:33:42 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id UAA00482 for freebsd-multimedia-outgoing; Sun, 12 Jul 1998 20:33:42 -0700 (PDT) (envelope-from owner-freebsd-multimedia@FreeBSD.ORG) Received: from labinfo.iet.unipi.it (labinfo.iet.unipi.it [131.114.9.5]) by hub.freebsd.org (8.8.8/8.8.8) with SMTP id UAA00469 for ; Sun, 12 Jul 1998 20:33:38 -0700 (PDT) (envelope-from luigi@labinfo.iet.unipi.it) Received: from localhost (luigi@localhost) by labinfo.iet.unipi.it (8.6.5/8.6.5) id DAA01148; Mon, 13 Jul 1998 03:41:38 +0200 From: Luigi Rizzo Message-Id: <199807130141.DAA01148@labinfo.iet.unipi.it> Subject: Re: New sound snapshot (with manpage) To: aw1@stade.co.uk Date: Mon, 13 Jul 1998 03:41:38 +0200 (MET DST) Cc: scrappy@hub.org, multimedia@FreeBSD.ORG In-Reply-To: <19980712211132.A901@stade.co.uk> from "Adrian Wontroba" at Jul 12, 98 09:11:13 pm X-Mailer: ELM [version 2.4 PL23] Content-Type: text Sender: owner-freebsd-multimedia@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org > On Sun, Jul 12, 1998 at 02:50:05PM -0300, The Hermit Hacker wrote: > > I meant to merge it into -current about a week ago, but got tied > > up with other projects :( Will work on getting it in this week if nobody > > else does it first... if someone does the commit can he please change the string 980215 (somewhere in sound.c) to 980607 or some other date which reflects the new version of the code. This would helpme with handling error reports. (I would do that myself but am on holidays tis week). cheers luigi To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-multimedia" in the body of the message From owner-freebsd-multimedia Sun Jul 12 22:50:16 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id WAA14960 for freebsd-multimedia-outgoing; Sun, 12 Jul 1998 22:50:16 -0700 (PDT) (envelope-from owner-freebsd-multimedia@FreeBSD.ORG) Received: from hal-pc.org (hal-pc.org [204.52.135.1]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id WAA14940 for ; Sun, 12 Jul 1998 22:50:10 -0700 (PDT) (envelope-from saber@hal-pc.org) Received: from Saber (fatman-51.hal-pc.org [209.113.52.51]) by hal-pc.org (8.9.0/8.9.0) with SMTP id AAA21494 for ; Mon, 13 Jul 1998 00:50:05 -0459 (CDT) From: "KEng" To: Subject: software needed for BT848 Date: Mon, 13 Jul 1998 00:48:46 -0700 Message-ID: <01bdae32$aae87200$333471d1@Saber> MIME-Version: 1.0 Content-Type: multipart/alternative; boundary="----=_NextPart_000_0004_01BDADF7.FE899A00" X-Priority: 3 X-MSMail-Priority: Normal X-Mailer: Microsoft Outlook Express 4.71.1712.3 X-MimeOLE: Produced By Microsoft MimeOLE V4.71.1712.3 Sender: owner-freebsd-multimedia@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org This is a multi-part message in MIME format. ------=_NextPart_000_0004_01BDADF7.FE899A00 Content-Type: text/plain; charset="iso-8859-1" Content-Transfer-Encoding: quoted-printable Dear sir/madam; Please advise how I can get the video capture program for the Bt848 = controller. Your help is greatly apprecipated.=20 Thanks, Saber :) ------=_NextPart_000_0004_01BDADF7.FE899A00 Content-Type: text/html; charset="iso-8859-1" Content-Transfer-Encoding: quoted-printable
Dear sir/madam;
 
Please advise how I can get the video capture = program for the=20 Bt848 controller.   Your help is greatly apprecipated. =
 
Thanks,
Saber :)
------=_NextPart_000_0004_01BDADF7.FE899A00-- To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-multimedia" in the body of the message From owner-freebsd-multimedia Mon Jul 13 02:00:18 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id CAA02192 for freebsd-multimedia-outgoing; Mon, 13 Jul 1998 02:00:18 -0700 (PDT) (envelope-from owner-freebsd-multimedia@FreeBSD.ORG) Received: from fleming.cs.strath.ac.uk (root@fleming.cs.strath.ac.uk [130.159.196.123]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id CAA02180 for ; Mon, 13 Jul 1998 02:00:13 -0700 (PDT) (envelope-from roger@cs.strath.ac.uk) Received: from brewster-02 (roger@brewster-02.cs.strath.ac.uk [130.159.172.2]) by fleming.cs.strath.ac.uk (8.8.8/8.8.8) with SMTP id JAA10749 Mon, 13 Jul 1998 09:59:59 +0100 (BST) Message-ID: <35A9CC8E.5BB6@cs.strath.ac.uk> Date: Mon, 13 Jul 1998 09:59:58 +0100 From: Roger Hardiman Organization: University of Strathclyde X-Mailer: Mozilla 3.04 (X11; I; SunOS 5.5.1 sun4u) MIME-Version: 1.0 To: Sunnyline@aol.com CC: freebsd-multimedia@FreeBSD.ORG Subject: Re: Question about Bt848 References: Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: 7bit Sender: owner-freebsd-multimedia@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Markus, You can download them from the brooktree site, but I have local copies here in the UK which may give you a faster download. I have put them on my ftp site, ftp://vulture.dmem.strath.ac.uk/pub/bt848 There are 3 versions, one for the bt848, one for the bt848a and one for the bt878/879 (an enhanced 848 chip) Roger -- Roger Hardiman, | Department of Computer Science, PhD Research Student, | University of Strathclyde, roger@cs.strath.ac.uk | Glasgow, Scotland, UK http://www.cs.strath.ac.uk/~roger To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-multimedia" in the body of the message From owner-freebsd-multimedia Mon Jul 13 03:07:47 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id DAA08957 for freebsd-multimedia-outgoing; Mon, 13 Jul 1998 03:07:47 -0700 (PDT) (envelope-from owner-freebsd-multimedia@FreeBSD.ORG) Received: from fleming.cs.strath.ac.uk (root@fleming.cs.strath.ac.uk [130.159.196.123]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id DAA08951 for ; Mon, 13 Jul 1998 03:07:40 -0700 (PDT) (envelope-from roger@cs.strath.ac.uk) Received: from cs.strath.ac.uk (posh.dmem.strath.ac.uk [130.159.202.3]) by fleming.cs.strath.ac.uk (8.8.8/8.8.8) with ESMTP id LAA11899 Mon, 13 Jul 1998 11:07:24 +0100 (BST) Message-ID: <35A9DC5B.D424CAA1@cs.strath.ac.uk> Date: Mon, 13 Jul 1998 11:07:23 +0100 From: Roger Hardiman Organization: Strathclyde Uni X-Mailer: Mozilla 4.05 [en] (X11; I; FreeBSD 3.0-980311-SNAP i386) MIME-Version: 1.0 To: hasty@rah.star-gate.com, freebsd-multimedia@FreeBSD.ORG Subject: Reverse engineering og Hauppauge Tuners Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: 7bit Sender: owner-freebsd-multimedia@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Hi, Since I noticed on my PAL cards that location [9] of the Hauppauge eeprom was my tuner type, and Amancio confirmed this with the NTSC cards, I have managed to reverse engineer the entire Hauppauge Tuner list from the Windows driver. Using the Strings command on the file HCWPNP.DLL from the windows driver (from their FTP site), a list of Tuners can be generated. Fortunatly, this ties in with what we already know. Hope this helps with future tuners. Roger 1 External 2 Unspecified 3 Phillips FI1216 4 Phillips FI1216MF 5 Phillips FI1236 6 Phillips FI1246 7 Phillips FI1256 8 Phillips FI1216 MK2 9 Phillips FI1216MF MK2 a Phillips FI1236 MK2 b Phillips FI1246 MK2 c Phillips FI1256 MK2 d Temic 4032FY5 e Temic 4002FH5 f Temic 4062FY5 10 Phillips FR1216 MK2 11 Phillips FR1216MF MK2 12 Phillips FR1236 MK2 13 Phillips FR1246 MK2 14 Phillips FR1256 MK2 15 Phillips FM1216 16 Phillips FM1216MF 17 Phillips FM1236 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-multimedia" in the body of the message From owner-freebsd-multimedia Mon Jul 13 06:58:17 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id GAA02408 for freebsd-multimedia-outgoing; Mon, 13 Jul 1998 06:58:17 -0700 (PDT) (envelope-from owner-freebsd-multimedia@FreeBSD.ORG) Received: from fleming.cs.strath.ac.uk (root@fleming.cs.strath.ac.uk [130.159.196.123]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id GAA02349 for ; Mon, 13 Jul 1998 06:58:07 -0700 (PDT) (envelope-from roger@cs.strath.ac.uk) Received: from cs.strath.ac.uk (posh.dmem.strath.ac.uk [130.159.202.3]) by fleming.cs.strath.ac.uk (8.8.8/8.8.8) with ESMTP id OAA16770 Mon, 13 Jul 1998 14:57:49 +0100 (BST) Message-ID: <35AA125B.A7A786E1@cs.strath.ac.uk> Date: Mon, 13 Jul 1998 14:57:47 +0100 From: Roger Hardiman Organization: Strathclyde Uni X-Mailer: Mozilla 4.05 [en] (X11; I; FreeBSD 3.0-980311-SNAP i386) MIME-Version: 1.0 To: freebsd-multimedia@FreeBSD.ORG, roger@cs.strath.ac.uk Subject: New IOCTL for bt848 grab area (was S/W PAN and ZOOM) Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: 7bit Sender: owner-freebsd-multimedia@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org To all bt848 users. Recently, I offered to write a new IOCTL which allowed you to select the area from the video image to grab from. This allows software Pan and Zoom. Currently the driver takes the full NTSC (or PAL) image of 640x480 and scales it down to fit the required size, eg 192x128. With the new IOCTL, you specify an X and Y offset and an X and Y image size. This defined area (eg 320x256 - offset of 100,100) is then captured instead of the full image. The captured area is then scaled into the size required by the application (eg 192x128). For example, by changing the capture area from 640x480, offset (0,0) to 320x240, offset (160,120) I get a x2 zoom function without any sofware overhead. The ioctl is passed a structure with the x and y offsets and sizes. Cannot decide on a name though. BT848 SET ACTIVE REGION BT848 SET ACTIVE GEO BT848 SET ACTIVE AREA BT848 SET CROP REGION BT848 SET CROP WINDOW BT848 SET CROP AREA BT848 SET CAP REGION BT848 SET CAP WINDOW BT848 SET CAP AREA What do you lot perfer? I'm sending the driver (which has changes to both the driver and the two include files) to Amancio to place on his FTP site. Cheers Roger Hardiman Strathclyde Uni Telepresence Group To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-multimedia" in the body of the message From owner-freebsd-multimedia Mon Jul 13 08:06:22 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id IAA12233 for freebsd-multimedia-outgoing; Mon, 13 Jul 1998 08:06:22 -0700 (PDT) (envelope-from owner-freebsd-multimedia@FreeBSD.ORG) Received: from trinity.radio-do.de (fn@trinity.Radio-do.de [193.101.164.3]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id IAA12129 for ; Mon, 13 Jul 1998 08:05:59 -0700 (PDT) (envelope-from fn@trinity.radio-do.de) Received: (from fn@localhost) by trinity.radio-do.de (8.8.8/8.8.5/RADIO-1.1) id RAA00307; Mon, 13 Jul 1998 17:04:19 +0200 (CEST) Message-ID: <19980713170418.A288@radio-do.de> Date: Mon, 13 Jul 1998 17:04:18 +0200 From: Frank Nobis To: Amancio Hasty , multimedia@FreeBSD.ORG Subject: Re: bt848 driver update References: <199807130225.TAA00376@rah.star-gate.com> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii X-Mailer: Mutt 0.91.1i In-Reply-To: <199807130225.TAA00376@rah.star-gate.com>; from Amancio Hasty on Sun, Jul 12, 1998 at 07:25:38PM -0700 Sender: owner-freebsd-multimedia@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org On Sun, Jul 12, 1998 at 07:25:38PM -0700, Amancio Hasty wrote: > 1. > The detection of Hauppauge's tuner has been improved by relying on > eeprom[9]'s content. I think so far from the data that some have > send me eeprom's 9'th byte appears to be the tuner model . > To those who send their board info : A million tnks! Just installed the new driver (1.38) It is working! bktr0: rev 0x12 int a irq 15 on pci0.9.0 Hauppauge WinCast/TV, Philips FR1216 PAL tuner, msp3400c stereo. This time without OVERRIDE :-) Frank -- Frank Nobis Email: PGP AVAILABLE Landgrafenstr. 130 dg3dcn http://www.radio-do.de/~fn/ 44139 Dortmund Powered by FreeBSD To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-multimedia" in the body of the message From owner-freebsd-multimedia Mon Jul 13 08:09:54 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id IAA12543 for freebsd-multimedia-outgoing; Mon, 13 Jul 1998 08:09:54 -0700 (PDT) (envelope-from owner-freebsd-multimedia@FreeBSD.ORG) Received: from miller.cs.uwm.edu (miller.cs.uwm.edu [129.89.139.22]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id IAA12538 for ; Mon, 13 Jul 1998 08:09:53 -0700 (PDT) (envelope-from james@miller.cs.uwm.edu) Received: (from james@localhost) by miller.cs.uwm.edu (8.8.5/8.8.5) id KAA10059; Mon, 13 Jul 1998 10:09:46 -0500 (CDT) Date: Mon, 13 Jul 1998 10:09:46 -0500 (CDT) From: Jim Lowe Message-Id: <199807131509.KAA10059@miller.cs.uwm.edu> To: jkh@time.cdrom.com, multimedia@FreeBSD.ORG Subject: Re: Spigot still supported? Sender: owner-freebsd-multimedia@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org > To: multimedia@FreeBSD.ORG > Subject: Spigot still supported? > Date: Sun, 12 Jul 1998 19:45:02 -0700 > From: "Jordan K. Hubbard" > > I recently dug a video spigot out of my junk drawer in the desire to > get my camera working again (I have a VS440FX motherboard and my > Matrox Meteor has a known bug which causes total lockup when used) but > am having some trouble finding a way to even test it. At least with > the Meteor we had that little `tv' program which Amancio and I hacked > on, but I can't find anything similar for the Spigot. Building vic > from the ports collection also doesn't get me a vic which displays the > spigot as one of its supported grabber types - I see only "X11" and > "still" when I click on the device button. For vic to work with the spigot as a regular user, you need the following kernel configuration: device spigot0 at isa? port 0xad6 iomem 0xd0000 vector spigintr options SPIGOT_UNSECURE # non-root access to spigot, security prob. You should also create /dev/spigot, then vic will be able to recognize the device. The meteor should work with the 440fx chipset if you don't use the multiple dma transfer mode (i.e. use the YUV_PACKED mode). The ports collection contains vic with the patched grabber_meteor.cc for YUV_PACKED mode. Do you still have lock up problems with the meteor and the version of vic in ports? -Jim To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-multimedia" in the body of the message From owner-freebsd-multimedia Mon Jul 13 08:59:51 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id IAA18668 for freebsd-multimedia-outgoing; Mon, 13 Jul 1998 08:59:51 -0700 (PDT) (envelope-from owner-freebsd-multimedia@FreeBSD.ORG) Received: from rah.star-gate.com (rah.star-gate.com [209.133.7.234]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id IAA18663 for ; Mon, 13 Jul 1998 08:59:49 -0700 (PDT) (envelope-from hasty@rah.star-gate.com) Received: from rah.star-gate.com (localhost.star-gate.com [127.0.0.1]) by rah.star-gate.com (8.8.8/8.8.8) with ESMTP id IAA01830; Mon, 13 Jul 1998 08:59:41 -0700 (PDT) (envelope-from hasty@rah.star-gate.com) Message-Id: <199807131559.IAA01830@rah.star-gate.com> X-Mailer: exmh version 2.0.2 2/24/98 To: Roger Hardiman cc: multimedia@FreeBSD.ORG Subject: Re: reminder of PAL bug on the -current driver In-reply-to: Your message of "Mon, 13 Jul 1998 14:48:20 BST." <35AA1024.58FA046A@cs.strath.ac.uk> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Date: Mon, 13 Jul 1998 08:59:41 -0700 From: Amancio Hasty Sender: owner-freebsd-multimedia@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Hi Roger, Tnks for the reminder and I will be more than happy to commit the fix tonite after I get home from work. Have Fun, Amancio To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-multimedia" in the body of the message From owner-freebsd-multimedia Mon Jul 13 09:06:01 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id JAA19347 for freebsd-multimedia-outgoing; Mon, 13 Jul 1998 09:06:01 -0700 (PDT) (envelope-from owner-freebsd-multimedia@FreeBSD.ORG) Received: from sos.freebsd.dk (sos.freebsd.dk [212.242.40.180]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id JAA19311 for ; Mon, 13 Jul 1998 09:05:57 -0700 (PDT) (envelope-from sos@sos.freebsd.dk) Received: (from sos@localhost) by sos.freebsd.dk (8.8.8/8.8.8) id RAA00282; Mon, 13 Jul 1998 17:54:45 +0200 (CEST) (envelope-from sos) Message-Id: <199807131554.RAA00282@sos.freebsd.dk> Subject: Re: bt848 driver update In-Reply-To: <19980713170418.A288@radio-do.de> from Frank Nobis at "Jul 13, 98 05:04:18 pm" To: fn@radio-do.de (Frank Nobis) Date: Mon, 13 Jul 1998 17:54:45 +0200 (CEST) Cc: hasty@rah.star-gate.com, multimedia@FreeBSD.ORG From: Søren Schmidt Reply-to: sos@FreeBSD.ORG X-Mailer: ELM [version 2.4ME+ PL38 (25)] MIME-Version: 1.0 Content-Type: text/plain; charset=ISO-8859-1 Content-Transfer-Encoding: 8bit Sender: owner-freebsd-multimedia@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org In reply to Frank Nobis who wrote: > On Sun, Jul 12, 1998 at 07:25:38PM -0700, Amancio Hasty wrote: > > 1. > > The detection of Hauppauge's tuner has been improved by relying on > > eeprom[9]'s content. I think so far from the data that some have > > send me eeprom's 9'th byte appears to be the tuner model . > > To those who send their board info : A million tnks! > > Just installed the new driver (1.38) > > It is working! > > bktr0: rev 0x12 int a irq 15 on pci0.9.0 > Hauppauge WinCast/TV, Philips FR1216 PAL tuner, msp3400c stereo. > > This time without OVERRIDE :-) Yeah, maybe but the probe functionality is still a joke, and it breaks on anything else... Amancio, why havn't you committed my patch to the AVer Media card yet ?? If you dont I will... -=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=- Søren Schmidt (sos@FreeBSD.org) FreeBSD Core Team Even more code to hack -- will it ever end? .. To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-multimedia" in the body of the message From owner-freebsd-multimedia Mon Jul 13 09:17:25 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id JAA20497 for freebsd-multimedia-outgoing; Mon, 13 Jul 1998 09:17:25 -0700 (PDT) (envelope-from owner-freebsd-multimedia@FreeBSD.ORG) Received: from rah.star-gate.com (rah.star-gate.com [209.133.7.234]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id JAA20491; Mon, 13 Jul 1998 09:17:23 -0700 (PDT) (envelope-from hasty@rah.star-gate.com) Received: from rah.star-gate.com (localhost.star-gate.com [127.0.0.1]) by rah.star-gate.com (8.8.8/8.8.8) with ESMTP id JAA02002; Mon, 13 Jul 1998 09:17:19 -0700 (PDT) (envelope-from hasty@rah.star-gate.com) Message-Id: <199807131617.JAA02002@rah.star-gate.com> X-Mailer: exmh version 2.0.2 2/24/98 To: sos@FreeBSD.ORG cc: fn@radio-do.de (Frank Nobis), multimedia@FreeBSD.ORG Subject: Re: bt848 driver update In-reply-to: Your message of "Mon, 13 Jul 1998 17:54:45 +0200." <199807131554.RAA00282@sos.freebsd.dk> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Date: Mon, 13 Jul 1998 09:17:19 -0700 From: Amancio Hasty Sender: owner-freebsd-multimedia@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org >Amancio, why havn't you committed my patch to the AVer Media card yet ?? Because you don't follow my postings. This round was meant for Hauppauge cards. Later, Amancio To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-multimedia" in the body of the message From owner-freebsd-multimedia Mon Jul 13 09:29:10 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id JAA21905 for freebsd-multimedia-outgoing; Mon, 13 Jul 1998 09:29:10 -0700 (PDT) (envelope-from owner-freebsd-multimedia@FreeBSD.ORG) Received: from fleming.cs.strath.ac.uk (root@fleming.cs.strath.ac.uk [130.159.196.123]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id JAA21898 for ; Mon, 13 Jul 1998 09:29:07 -0700 (PDT) (envelope-from roger@cs.strath.ac.uk) Received: from cs.strath.ac.uk (posh.dmem.strath.ac.uk [130.159.202.3]) by fleming.cs.strath.ac.uk (8.8.8/8.8.8) with ESMTP id RAA20037 Mon, 13 Jul 1998 17:28:55 +0100 (BST) Message-ID: <35AA35C6.58F58DF0@cs.strath.ac.uk> Date: Mon, 13 Jul 1998 17:28:54 +0100 From: Roger Hardiman Organization: Strathclyde Uni X-Mailer: Mozilla 4.05 [en] (X11; I; FreeBSD 3.0-980311-SNAP i386) MIME-Version: 1.0 To: freebsd-multimedia@FreeBSD.ORG Subject: Please can you test the new driver IOCTL Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: 7bit Sender: owner-freebsd-multimedia@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Hi, I am hoping some of you can try out the new IOCTL for software PAN and ZOOM functionality. You specify the region from the PAL (or NTSC) window you want capturing to be from using a new IOCTL There are three files to download, based on the -current driver, found in ftp://vulture.dmem.strath.ac.uk/pub/bt848/driver Please replace the corresponding files. Amancio has bunded these into a tar file at ftp://rah.star-gate.com/pub/roger_driver.tar.gz Can you give then a go please. You drive it like this.... > > int t; > struct bktr_active_region c; > > t = open("/dev/bktr0", O_RDONLY); > ioctl(t,BT848GACTIVEREGION, &c); > printf("results are %d %d %d %d\n",c.x_offset, c.y_offset, > c.x_size, c.y_size); > > c.x_offset = 10; > c.y_offset = 20; > c.x_size = 480; > c.y_size = 400; > ioctl(t,BT848SACTIVEREGION, &c); /* 480x400 window, offset(10,20) */ > > Known Problems: > > 1) at some scalings, RGB fails but YUV12 which I use works fine. > 2) When using even fields only, I cannot select a grab region > less than 256 scan lines. > 3) No consistency checks. User can enter stupid values. Let me know how you get on. Bye Roger To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-multimedia" in the body of the message From owner-freebsd-multimedia Mon Jul 13 10:33:26 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id KAA01482 for freebsd-multimedia-outgoing; Mon, 13 Jul 1998 10:33:26 -0700 (PDT) (envelope-from owner-freebsd-multimedia@FreeBSD.ORG) Received: from whqvax.picker.com (whqvax.picker.com [144.54.1.1]) by hub.freebsd.org (8.8.8/8.8.8) with SMTP id KAA01448 for ; Mon, 13 Jul 1998 10:33:15 -0700 (PDT) (envelope-from rhh@ct.picker.com) Received: from ct.picker.com by whqvax.picker.com with SMTP; Mon, 13 Jul 1998 13:32:41 -0400 (EDT) Received: from elmer.ct.picker.com ([144.54.57.34]) by ct.picker.com (4.1/SMI-4.1) id AA10498; Mon, 13 Jul 98 13:32:36 EDT Received: by elmer.ct.picker.com (SMI-8.6/SMI-SVR4) id NAA24773; Mon, 13 Jul 1998 13:32:05 -0400 Message-Id: <19980713133205.A24747@ct.picker.com> Date: Mon, 13 Jul 1998 13:32:05 -0400 From: Randall Hopper To: Roger Hardiman , freebsd-multimedia@FreeBSD.ORG Subject: Re: New IOCTL for bt848 grab area (was S/W PAN and ZOOM) Mail-Followup-To: Roger Hardiman , freebsd-multimedia@FreeBSD.ORG References: <35AA125B.A7A786E1@cs.strath.ac.uk> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii X-Mailer: Mutt 0.91.1i In-Reply-To: <35AA125B.A7A786E1@cs.strath.ac.uk>; from Roger Hardiman on Mon, Jul 13, 1998 at 02:57:47PM +0100 Sender: owner-freebsd-multimedia@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Roger Hardiman: |With the new IOCTL, you specify an X and Y offset and an |X and Y image size. ... |I get a x2 zoom function without any sofware overhead. Sounds pretty cool. |Cannot decide on a name though. Yeah, a bit tough. This is both a crop and a zoom so I guess I like your "CAP" series best. But everyone's opinion will be different on this one. Up to you! Now to figure out what cooool thing we can do with this on the app end 8^) Actually (bingo!), I know already. The TV card currently captures more of the height of the signal than you can see on a normal TV and I've been periodically distrated by the line or two of trash (or slightly not synced scan lines) at the top and/or bottom of the video window. This is accentuated by using older VCRs, or playing recorded VCR tapes. This ioctl is a perfect way to snip those off and still use the full height of the window. Maybe some other things as well. Randall To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-multimedia" in the body of the message From owner-freebsd-multimedia Mon Jul 13 10:39:41 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id KAA03264 for freebsd-multimedia-outgoing; Mon, 13 Jul 1998 10:39:41 -0700 (PDT) (envelope-from owner-freebsd-multimedia@FreeBSD.ORG) Received: from sos.freebsd.dk (sos.freebsd.dk [212.242.40.180]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id KAA03229; Mon, 13 Jul 1998 10:39:36 -0700 (PDT) (envelope-from sos@sos.freebsd.dk) Received: (from sos@localhost) by sos.freebsd.dk (8.8.8/8.8.8) id TAA00465; Mon, 13 Jul 1998 19:39:36 +0200 (CEST) (envelope-from sos) Message-Id: <199807131739.TAA00465@sos.freebsd.dk> Subject: Re: bt848 driver update In-Reply-To: <199807131617.JAA02002@rah.star-gate.com> from Amancio Hasty at "Jul 13, 98 09:17:19 am" To: hasty@rah.star-gate.com (Amancio Hasty) Date: Mon, 13 Jul 1998 19:39:36 +0200 (CEST) Cc: sos@FreeBSD.ORG, fn@radio-do.de, multimedia@FreeBSD.ORG From: Søren Schmidt Reply-to: sos@FreeBSD.ORG X-Mailer: ELM [version 2.4ME+ PL38 (25)] MIME-Version: 1.0 Content-Type: text/plain; charset=ISO-8859-1 Content-Transfer-Encoding: 8bit Sender: owner-freebsd-multimedia@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org In reply to Amancio Hasty who wrote: > >Amancio, why havn't you committed my patch to the AVer Media card yet ?? > Because you don't follow my postings. Say what ? > This round was meant for Hauppauge cards. Yeah, but you have had that patch for god knows how long, it ONLY adds one more card type to the mess, nothing else, and enables AVerMedia users to use their cards, so ?? But as I said, I can add it myself. -=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=- Søren Schmidt (sos@FreeBSD.org) FreeBSD Core Team Even more code to hack -- will it ever end? .. To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-multimedia" in the body of the message From owner-freebsd-multimedia Mon Jul 13 11:47:56 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id LAA14591 for freebsd-multimedia-outgoing; Mon, 13 Jul 1998 11:47:56 -0700 (PDT) (envelope-from owner-freebsd-multimedia@FreeBSD.ORG) Received: from rah.star-gate.com (rah.star-gate.com [209.133.7.234]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id LAA14571; Mon, 13 Jul 1998 11:47:53 -0700 (PDT) (envelope-from hasty@rah.star-gate.com) Received: from rah.star-gate.com (localhost.star-gate.com [127.0.0.1]) by rah.star-gate.com (8.8.8/8.8.8) with ESMTP id LAA02700; Mon, 13 Jul 1998 11:47:49 -0700 (PDT) (envelope-from hasty@rah.star-gate.com) Message-Id: <199807131847.LAA02700@rah.star-gate.com> To: sos@FreeBSD.ORG cc: hasty@rah.star-gate.com (Amancio Hasty), fn@radio-do.de, multimedia@FreeBSD.ORG, hasty@rah.star-gate.com Subject: Re: bt848 driver update In-reply-to: Your message of "Mon, 13 Jul 1998 19:39:36 +0200." <199807131739.TAA00465@sos.freebsd.dk> MIME-Version: 1.0 Content-Type: text/plain; charset="us-ascii" Content-ID: <2697.900355669.1@rah.star-gate.com> Date: Mon, 13 Jul 1998 11:47:49 -0700 From: Amancio Hasty Sender: owner-freebsd-multimedia@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org I don't have time for you right now . Tonite when I get home from work I will try to explain . Amancio To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-multimedia" in the body of the message From owner-freebsd-multimedia Mon Jul 13 12:38:26 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id MAA22319 for freebsd-multimedia-outgoing; Mon, 13 Jul 1998 12:38:26 -0700 (PDT) (envelope-from owner-freebsd-multimedia@FreeBSD.ORG) Received: from sos.freebsd.dk (sos.freebsd.dk [212.242.40.180]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id MAA22309; Mon, 13 Jul 1998 12:38:22 -0700 (PDT) (envelope-from sos@sos.freebsd.dk) Received: (from sos@localhost) by sos.freebsd.dk (8.8.8/8.8.8) id VAA00813; Mon, 13 Jul 1998 21:38:11 +0200 (CEST) (envelope-from sos) Message-Id: <199807131938.VAA00813@sos.freebsd.dk> Subject: Re: bt848 driver update In-Reply-To: <199807131847.LAA02700@rah.star-gate.com> from Amancio Hasty at "Jul 13, 98 11:47:49 am" To: hasty@rah.star-gate.com (Amancio Hasty) Date: Mon, 13 Jul 1998 21:38:11 +0200 (CEST) Cc: sos@FreeBSD.ORG, hasty@rah.star-gate.com, fn@radio-do.de, multimedia@FreeBSD.ORG From: Søren Schmidt Reply-to: sos@FreeBSD.ORG X-Mailer: ELM [version 2.4ME+ PL38 (25)] MIME-Version: 1.0 Content-Type: text/plain; charset=ISO-8859-1 Content-Transfer-Encoding: 8bit Sender: owner-freebsd-multimedia@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org In reply to Amancio Hasty who wrote: > I don't have time for you right now . Tonite when I get home > from work I will try to explain . That would be nice.... -=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=- Søren Schmidt (sos@FreeBSD.org) FreeBSD Core Team Even more code to hack -- will it ever end? .. To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-multimedia" in the body of the message From owner-freebsd-multimedia Mon Jul 13 21:06:42 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id VAA12615 for freebsd-multimedia-outgoing; Mon, 13 Jul 1998 21:06:42 -0700 (PDT) (envelope-from owner-freebsd-multimedia@FreeBSD.ORG) Received: from time.cdrom.com (root@time.cdrom.com [204.216.27.226]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id VAA12610 for ; Mon, 13 Jul 1998 21:06:41 -0700 (PDT) (envelope-from jkh@time.cdrom.com) Received: from time.cdrom.com (jkh@localhost.cdrom.com [127.0.0.1]) by time.cdrom.com (8.8.8/8.8.8) with ESMTP id VAA16434; Mon, 13 Jul 1998 21:06:32 -0700 (PDT) (envelope-from jkh@time.cdrom.com) To: Jim Lowe cc: multimedia@FreeBSD.ORG Subject: Re: Spigot still supported? In-reply-to: Your message of "Mon, 13 Jul 1998 10:09:46 CDT." <199807131509.KAA10059@miller.cs.uwm.edu> Date: Mon, 13 Jul 1998 21:06:32 -0700 Message-ID: <16430.900389192@time.cdrom.com> From: "Jordan K. Hubbard" Sender: owner-freebsd-multimedia@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org > For vic to work with the spigot as a regular user, you need the > following kernel configuration: > > device spigot0 at isa? port 0xad6 iomem 0xd0000 vector spigintr > options SPIGOT_UNSECURE # non-root access to spigot, security p rob. Yeargh, I forgot about SPIGOT_UNSECURE, thanks. However, even when running as root and the following being true: (#) dmesg|grep spigot spigot0 at 0xad6 irq 15 maddr 0xee000 on isa (#) ls -l /dev/spigot cr--r--r-- 1 root wheel 11, 0 Jul 12 19:42 /dev/spigot I still don't see the spigot listed as a grabber type. I'll try again with SPIGOT_UNSECURE and see if that makes any difference. > The meteor should work with the 440fx chipset if you don't use the > multiple dma transfer mode (i.e. use the YUV_PACKED mode). The > ports collection contains vic with the patched grabber_meteor.cc for > YUV_PACKED mode. Do you still have lock up problems with the meteor > and the version of vic in ports? To be honest, I hadn't actually tried it with vic - since I don't have multicast working over here. Neither I nor CRL seem to be able to get the routers talking multicast to one another, despite my having done everything to our router on this end that various people told me to do; it perhaps being still on the CRL end since they're not all that familiar with multicast over there and may not even be getting it onto their internal network correctly, thus explaining why I didn't have very good results from my end. In any case, is it possible to disable this in the meteor driver itself so that things like "tv" don't use it? My main use for the meteor was actually taking snapshots of things using tv - I never actually used it for conferencing. :) - Jordan To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-multimedia" in the body of the message From owner-freebsd-multimedia Mon Jul 13 21:44:12 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id VAA15996 for freebsd-multimedia-outgoing; Mon, 13 Jul 1998 21:44:12 -0700 (PDT) (envelope-from owner-freebsd-multimedia@FreeBSD.ORG) Received: from repop1.jps.net (repop1.jps.net [208.25.63.34]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id VAA15990 for ; Mon, 13 Jul 1998 21:44:09 -0700 (PDT) (envelope-from woodyp@jps.net) Received: from jps.net (oak-port289.jps.net [209.142.29.49]) by repop1.jps.net (8.8.5/8.8.5) with ESMTP id VAA29916 for ; Mon, 13 Jul 1998 21:44:56 -0700 (PDT) Message-ID: <35AAE210.CEF64C2A@jps.net> Date: Mon, 13 Jul 1998 21:44:00 -0700 From: Woody Poolson X-Mailer: Mozilla 4.04 [en] (X11; I; FreeBSD 2.2.6-RELEASE i386) MIME-Version: 1.0 To: multimedia@FreeBSD.ORG Subject: SoundBlaster 16 Vibra card configuration Content-Type: multipart/mixed; boundary="------------0A0B9C84D6643B5590839E82" Sender: owner-freebsd-multimedia@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org This is a multi-part message in MIME format. --------------0A0B9C84D6643B5590839E82 Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: 7bit I am having trouble getting the SB card running. Attached is my Kernel. Thank you for the assistance... Woody Poolson --------------0A0B9C84D6643B5590839E82 Content-Type: text/plain; charset=us-ascii; name="MINE" Content-Transfer-Encoding: 7bit Content-Disposition: inline; filename="MINE" machine "i386" cpu "I586_CPU" ident MINE maxusers 10 options MATH_EMULATE #Support for x87 emulation options INET #InterNETworking options FFS #Fast File system options NFS #Network Filesystem options MSDOSFS #MSDOS Filesystem options "CD9660" #ISO 9660 Filesystem options PROCFS #Process file system options "COMPAT_43" #Compatible with BSD 4.3 [KEEP THIS!] options BOUNCE_BUFFERS #include support for DMA bounce buffers options UCONSOLE #Allow users to grab the console options FAILSAFE #Be conservative options USERCONFIG #boot -c editor options VISUAL_USERCONFIG #visual boot -c editor config kernel root on wd0 controller pci0 controller isa0 controller fdc0 at isa? port "IO_FD1" bio irq 6 drq 2 vector fdintr disk fd0 at fdc0 drive 0 options "CMD640" # work around CMD640 chip deficiency controller wdc0 at isa? port "IO_WD1" bio irq 14 vector wdintr disk wd0 at wdc0 drive 0 controller wdc1 at isa? port "IO_WD2" bio irq 15 vector wdintr disk wd2 at wdc1 drive 0 options ATAPI #Enable ATAPI support for IDE bus options ATAPI_STATIC #Don't do it as an LKM device wcd0 #IDE CD-ROM #options DPTOPT # will go away soon options DPT_MEASURE_PERFORMANCE # just enable for now #options DPT_VERIFY_HINTR # Some hardware must have it! #options DPT_TRACK_CCB_STATES # Some hardware must have it! #options DPT_HANDLE_TIMEOUTS # Some hardware must have it! #options DPT_TIMEOUT_FACTOR=4 # Some hardware needs more device sc0 at isa? port "IO_KBD" tty irq 1 vector scintr # Enable this and PCVT_FREEBSD for pcvt vt220 compatible console driver device npx0 at isa? port "IO_NPX" flags 0x1 irq 13 vector npxintr device sio0 at isa? port "IO_COM1" tty irq 4 vector siointr device sio3 at isa? port "IO_COM4" tty irq 3 vector siointr device lpt0 at isa? port? tty irq 7 vector lptintr controller snd0 device sb0 at isa? port 0x220 irq 5 drq 1 vector sbintr options "SBC_IRQ=5" device sbxvi0 at isa? drq 3 options "SB16_DMA=3" device sbmidi0 at isa? port 0x330 device opl0 at isa? port 0x388 conflicts device awe0 at isa? port 0x620 device de0 pseudo-device loop pseudo-device ether pseudo-device log pseudo-device sl 1 pseudo-device ppp 1 pseudo-device vn 1 pseudo-device tun 1 pseudo-device bpfilter 4 pseudo-device pty 16 pseudo-device gzip # Exec gzipped a.out's options KTRACE #kernel tracing options SYSVSHM --------------0A0B9C84D6643B5590839E82-- To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-multimedia" in the body of the message From owner-freebsd-multimedia Tue Jul 14 02:51:45 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id CAA13076 for freebsd-multimedia-outgoing; Tue, 14 Jul 1998 02:51:45 -0700 (PDT) (envelope-from owner-freebsd-multimedia@FreeBSD.ORG) Received: from rah.star-gate.com (rah.star-gate.com [209.133.7.234]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id CAA13070 for ; Tue, 14 Jul 1998 02:51:43 -0700 (PDT) (envelope-from hasty@rah.star-gate.com) Received: from rah.star-gate.com (localhost.star-gate.com [127.0.0.1]) by rah.star-gate.com (8.8.8/8.8.8) with ESMTP id CAA00979; Tue, 14 Jul 1998 02:51:31 -0700 (PDT) (envelope-from hasty@rah.star-gate.com) Message-Id: <199807140951.CAA00979@rah.star-gate.com> X-Mailer: exmh version 2.0.2 2/24/98 To: Randall Hopper cc: Roger Hardiman , freebsd-multimedia@FreeBSD.ORG Subject: Re: New IOCTL for bt848 grab area (was S/W PAN and ZOOM) In-reply-to: Your message of "Mon, 13 Jul 1998 13:32:05 EDT." <19980713133205.A24747@ct.picker.com> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Date: Tue, 14 Jul 1998 02:51:31 -0700 From: Amancio Hasty Sender: owner-freebsd-multimedia@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org >Now to figure out what cooool thing we can do with this on the app end 8^) Select a region with the cursor . Press down left mouse on the screen , drag it diagonally , release mouse button and presto you have your zoom region. Middle mouse button click restores the normal display or some other keyevent Amancio To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-multimedia" in the body of the message From owner-freebsd-multimedia Tue Jul 14 03:24:10 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id DAA16020 for freebsd-multimedia-outgoing; Tue, 14 Jul 1998 03:24:10 -0700 (PDT) (envelope-from owner-freebsd-multimedia@FreeBSD.ORG) Received: from whqvax.picker.com (whqvax.picker.com [144.54.1.1]) by hub.freebsd.org (8.8.8/8.8.8) with SMTP id DAA16013 for ; Tue, 14 Jul 1998 03:24:08 -0700 (PDT) (envelope-from rhh@ct.picker.com) Received: from ct.picker.com by whqvax.picker.com with SMTP; Tue, 14 Jul 1998 6:22:56 -0400 (EDT) Received: from elmer.ct.picker.com ([144.54.57.34]) by ct.picker.com (4.1/SMI-4.1) id AA02152; Tue, 14 Jul 98 06:22:56 EDT Received: by elmer.ct.picker.com (SMI-8.6/SMI-SVR4) id GAA27463; Tue, 14 Jul 1998 06:22:25 -0400 Message-Id: <19980714062225.B27407@ct.picker.com> Date: Tue, 14 Jul 1998 06:22:25 -0400 From: Randall Hopper To: Amancio Hasty Cc: freebsd-multimedia@FreeBSD.ORG Subject: Re: New IOCTL for bt848 grab area (was S/W PAN and ZOOM) Mail-Followup-To: Amancio Hasty , freebsd-multimedia@freebsd.org References: <19980713133205.A24747@ct.picker.com> <199807140951.CAA00979@rah.star-gate.com> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii X-Mailer: Mutt 0.91.1i In-Reply-To: <199807140951.CAA00979@rah.star-gate.com>; from Amancio Hasty on Tue, Jul 14, 1998 at 02:51:31AM -0700 Sender: owner-freebsd-multimedia@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Amancio Hasty: |>Now to figure out what cooool thing we can do with this on the app end 8^) |Select a region with the cursor . | |Press down left mouse on the screen , drag it diagonally , |release mouse button and presto you have your zoom region. | |Middle mouse button click restores the normal display or some other keyevent Yeah, that's one of the ways I was thinking about allowing the user to configure their viewable area to snip off the borders. Randall To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-multimedia" in the body of the message From owner-freebsd-multimedia Tue Jul 14 05:51:44 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id FAA29158 for freebsd-multimedia-outgoing; Tue, 14 Jul 1998 05:51:44 -0700 (PDT) (envelope-from owner-freebsd-multimedia@FreeBSD.ORG) Received: from labinfo.iet.unipi.it (labinfo.iet.unipi.it [131.114.9.5]) by hub.freebsd.org (8.8.8/8.8.8) with SMTP id FAA29134 for ; Tue, 14 Jul 1998 05:51:18 -0700 (PDT) (envelope-from luigi@labinfo.iet.unipi.it) Received: from localhost (luigi@localhost) by labinfo.iet.unipi.it (8.6.5/8.6.5) id MAA02271; Tue, 14 Jul 1998 12:58:35 +0200 From: Luigi Rizzo Message-Id: <199807141058.MAA02271@labinfo.iet.unipi.it> Subject: Re: Spigot still supported? To: jkh@time.cdrom.com (Jordan K. Hubbard) Date: Tue, 14 Jul 1998 12:58:35 +0200 (MET DST) Cc: james@miller.cs.uwm.edu, multimedia@FreeBSD.ORG In-Reply-To: <16430.900389192@time.cdrom.com> from "Jordan K. Hubbard" at Jul 13, 98 09:06:13 pm X-Mailer: ELM [version 2.4 PL23] Content-Type: text Sender: owner-freebsd-multimedia@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org > > The meteor should work with the 440fx chipset if you don't use the > > multiple dma transfer mode (i.e. use the YUV_PACKED mode). The > > ports collection contains vic with the patched grabber_meteor.cc for > > YUV_PACKED mode. Do you still have lock up problems with the meteor > > and the version of vic in ports? > > To be honest, I hadn't actually tried it with vic - since I don't have > multicast working over here. Neither I nor CRL seem to be able to get not that you need multicast of course to use vic/vat... but i tried the patched grabber_meteor.cc in the above mode and it still froze repeatedly one of my PentiumPro systems so i gave upt with the meteor on PPro and only use them on old (pentium) motherboards. cheers luigi To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-multimedia" in the body of the message From owner-freebsd-multimedia Tue Jul 14 07:02:53 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id HAA06523 for freebsd-multimedia-outgoing; Tue, 14 Jul 1998 07:02:53 -0700 (PDT) (envelope-from owner-freebsd-multimedia@FreeBSD.ORG) Received: from miller.cs.uwm.edu (miller.cs.uwm.edu [129.89.139.22]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id HAA06516 for ; Tue, 14 Jul 1998 07:02:52 -0700 (PDT) (envelope-from james@miller.cs.uwm.edu) Received: (from james@localhost) by miller.cs.uwm.edu (8.8.5/8.8.5) id JAA20847; Tue, 14 Jul 1998 09:02:44 -0500 (CDT) Date: Tue, 14 Jul 1998 09:02:44 -0500 (CDT) From: Jim Lowe Message-Id: <199807141402.JAA20847@miller.cs.uwm.edu> To: jkh@time.cdrom.com Subject: Re: Spigot still supported? Cc: multimedia@FreeBSD.ORG Sender: owner-freebsd-multimedia@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org > To: Jim Lowe > cc: multimedia@FreeBSD.ORG > Subject: Re: Spigot still supported? > Date: Mon, 13 Jul 1998 21:06:32 -0700 > > Yeargh, I forgot about SPIGOT_UNSECURE, thanks. However, even when > running as root and the following being true: > > (#) dmesg|grep spigot > spigot0 at 0xad6 irq 15 maddr 0xee000 on isa > (#) ls -l /dev/spigot > cr--r--r-- 1 root wheel 11, 0 Jul 12 19:42 /dev/spigot > > I still don't see the spigot listed as a grabber type. I'll try again > with SPIGOT_UNSECURE and see if that makes any difference. Running as root would also solve the permission problem, the device should be readable/writeable (rw) by whoever is using it. I suspect the problem is that /usr/local/lib/libspigot.a was not installed when you compiled vic. The config for vic checks for this library and if it exists, then it includes the spigot grabber code. Libspigot.a can be installed using /usr/ports/graphics/spigot/. Once the library is installed, you will need to reconfig/make vic. > > > ports collection contains vic with the patched grabber_meteor.cc for > > YUV_PACKED mode. Do you still have lock up problems with the meteor > > To be honest, I hadn't actually tried it with vic - since I don't have > multicast working over here. Neither I nor CRL seem to be able to get > the routers talking multicast to one another, despite my having done > everything to our router on this end that various people told me to > do; it perhaps being still on the CRL end since they're not all that > familiar with multicast over there and may not even be getting it onto > their internal network correctly, thus explaining why I didn't have The mbone tools work in unicast mode, as well as, multicast mode. Multicast is fairly striaght forward in the setup, it depends on what type of routers you are using and what procotols you are using to exchange routing information. > very good results from my end. In any case, is it possible to disable > this in the meteor driver itself so that things like "tv" don't use > it? My main use for the meteor was actually taking snapshots of > things using tv - I never actually used it for conferencing. :) > I looked for the tv app in ports, but couldn't find it. It should be fairly straight forward to disable the multiple dma problem with the meteor. Just make sure your app doesn't use YUV_422 or YUV_PLANAR modes. If the app uses either of these modes, change it to use YUV_PACKED. Essentially, all three modes contain the same data, just different ordering. The RGB modes shouldn't have the same problem because they don't use multiple dma channels when coping the data to memory. -Jim To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-multimedia" in the body of the message From owner-freebsd-multimedia Tue Jul 14 08:24:22 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id IAA18215 for freebsd-multimedia-outgoing; Tue, 14 Jul 1998 08:24:22 -0700 (PDT) (envelope-from owner-freebsd-multimedia@FreeBSD.ORG) Received: from iservern.teligent.se (iservern.teligent.se [194.17.198.3]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id IAA18210 for ; Tue, 14 Jul 1998 08:24:19 -0700 (PDT) (envelope-from jakob@teligent.se) Received: from datorn.teligent.se (datorn.teligent.se [192.168.2.31]) by iservern.teligent.se (8.8.7/8.8.7) with SMTP id RAA26808 for ; Tue, 14 Jul 1998 17:24:08 +0200 (CEST) (envelope-from jakob@teligent.se) Date: Tue, 14 Jul 1998 17:24:08 +0200 (CEST) From: Jakob Alvermark To: multimedia@FreeBSD.ORG Subject: Cool apps? Message-ID: MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=iso-8859-1 Content-Transfer-Encoding: 8bit X-MIME-Autoconverted: from QUOTED-PRINTABLE to 8bit by hub.freebsd.org id IAA18211 Sender: owner-freebsd-multimedia@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Hello! Now I've got my new machine. It's a PII-400, 128 Mb RAM (100Mhz), Sound Blaster 16, Matrox Mystique, and Voodoo 2 card. (CD-ROM player and recorder also included) What cool multimedia apps is out there for FreeBSD? I have this cool machine, and I don't know what to do with it.. Any suggestions, pointer welcome. /Jakob ------------------------------------------------------- Teligent AB, P.O. Box 213, S-149 23 Nynäshamn, Sweden Telephone +46-(0)8 520 660 00 * Fax +46-(0)8 520 193 36 Direct +46-(0)8 520 660 32 * GSM +46-(0)70 792 16 57 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-multimedia" in the body of the message From owner-freebsd-multimedia Tue Jul 14 08:55:50 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id IAA21922 for freebsd-multimedia-outgoing; Tue, 14 Jul 1998 08:55:50 -0700 (PDT) (envelope-from owner-freebsd-multimedia@FreeBSD.ORG) Received: from fleming.cs.strath.ac.uk (root@fleming.cs.strath.ac.uk [130.159.196.123]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id IAA21917 for ; Tue, 14 Jul 1998 08:55:41 -0700 (PDT) (envelope-from roger@cs.strath.ac.uk) Received: from cs.strath.ac.uk (posh.dmem.strath.ac.uk [130.159.202.3]) by fleming.cs.strath.ac.uk (8.8.8/8.8.8) with ESMTP id QAA08338 Tue, 14 Jul 1998 16:55:22 +0100 (BST) Message-ID: <35AB7F60.29AE722A@cs.strath.ac.uk> Date: Tue, 14 Jul 1998 16:55:12 +0100 From: Roger Hardiman Organization: Strathclyde Uni X-Mailer: Mozilla 4.05 [en] (X11; I; FreeBSD 3.0-980311-SNAP i386) MIME-Version: 1.0 To: Amancio Hasty CC: Randall Hopper , freebsd-multimedia@FreeBSD.ORG Subject: Re: New IOCTL for bt848 grab area (was S/W PAN and ZOOM) References: <199807140951.CAA00979@rah.star-gate.com> Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: 7bit Sender: owner-freebsd-multimedia@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Amancio, Randall, bt848 users, I've found some interesting features of the new ioctl which you may be able to help with. When in RGB24 mode, even fields only, it appears that the active region x_size must no less than 1.66 * image width eg. I want a 192x128 image. then active_region.x_size can be no less than 320. If my output image is 256x128 the active_region.x-size can be no less than 426. In YUV_12 mode there is no problem. Something in the Split code or the alignment? Cheers Roger To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-multimedia" in the body of the message From owner-freebsd-multimedia Tue Jul 14 09:05:34 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id JAA22957 for freebsd-multimedia-outgoing; Tue, 14 Jul 1998 09:05:34 -0700 (PDT) (envelope-from owner-freebsd-multimedia@FreeBSD.ORG) Received: from rah.star-gate.com (rah.star-gate.com [209.133.7.234]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id JAA22952 for ; Tue, 14 Jul 1998 09:05:32 -0700 (PDT) (envelope-from hasty@rah.star-gate.com) Received: from rah.star-gate.com (localhost.star-gate.com [127.0.0.1]) by rah.star-gate.com (8.8.8/8.8.8) with ESMTP id JAA01103; Tue, 14 Jul 1998 09:05:21 -0700 (PDT) (envelope-from hasty@rah.star-gate.com) Message-Id: <199807141605.JAA01103@rah.star-gate.com> X-Mailer: exmh version 2.0.2 2/24/98 To: Roger Hardiman cc: Randall Hopper , freebsd-multimedia@FreeBSD.ORG Subject: Re: New IOCTL for bt848 grab area (was S/W PAN and ZOOM) In-reply-to: Your message of "Tue, 14 Jul 1998 16:55:12 BST." <35AB7F60.29AE722A@cs.strath.ac.uk> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Date: Tue, 14 Jul 1998 09:05:21 -0700 From: Amancio Hasty Sender: owner-freebsd-multimedia@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org I will try to track it down tonite. STATUS e4 b004206 1000028 ^ 4 means that the risc engine found a problem in the risc program -- number of expect lines does not match Tnks! Amancio To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-multimedia" in the body of the message From owner-freebsd-multimedia Tue Jul 14 09:29:01 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id JAA27237 for freebsd-multimedia-outgoing; Tue, 14 Jul 1998 09:29:01 -0700 (PDT) (envelope-from owner-freebsd-multimedia@FreeBSD.ORG) Received: from fleming.cs.strath.ac.uk (root@fleming.cs.strath.ac.uk [130.159.196.123]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id JAA27214 for ; Tue, 14 Jul 1998 09:28:56 -0700 (PDT) (envelope-from roger@cs.strath.ac.uk) Received: from cs.strath.ac.uk (posh.dmem.strath.ac.uk [130.159.202.3]) by fleming.cs.strath.ac.uk (8.8.8/8.8.8) with ESMTP id RAA08841 Tue, 14 Jul 1998 17:28:46 +0100 (BST) Message-ID: <35AB873D.B2715B0@cs.strath.ac.uk> Date: Tue, 14 Jul 1998 17:28:45 +0100 From: Roger Hardiman Organization: Strathclyde Uni X-Mailer: Mozilla 4.05 [en] (X11; I; FreeBSD 3.0-980311-SNAP i386) MIME-Version: 1.0 To: multimedia@FreeBSD.ORG Subject: New IOCTLfor bt848 updates Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: 7bit Sender: owner-freebsd-multimedia@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Hi, If you are trying the new ioctl for the active region (grab area) I have some new restrictions. RGB24 mode. WIDTHS Width. The active region width must not be less than 1.66*meteor geo width Eg METEORGEO is 256x128. Active region can be from 768 to 424 wide. (in PAL mode) This applies to Interlaced, Even and Odd modes. HEIGHTS In Interlaced mode the active region height must not be less than the MeteorGeo height. Eg METEORGEO is 256x128. Active region height can be from 576 down to 128. (PAL numbers) In Even Only or Odd Only the active region must not be less that 2*meteor geo height. Eg METEORGEO is 256x128. Active region height can be from 576 down to 256. (PAL numbers) Can anyone help track down the cause of these limits. Cheers Roger To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-multimedia" in the body of the message From owner-freebsd-multimedia Tue Jul 14 09:55:47 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id JAA02778 for freebsd-multimedia-outgoing; Tue, 14 Jul 1998 09:55:47 -0700 (PDT) (envelope-from owner-freebsd-multimedia@FreeBSD.ORG) Received: from home.dragondata.com (toasty@home.dragondata.com [204.137.237.2]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id JAA02767 for ; Tue, 14 Jul 1998 09:55:45 -0700 (PDT) (envelope-from toasty@home.dragondata.com) Received: (from toasty@localhost) by home.dragondata.com (8.8.8/8.8.5) id LAA05531 for multimedia@freebsd.org; Tue, 14 Jul 1998 11:55:36 -0500 (CDT) From: Kevin Day Message-Id: <199807141655.LAA05531@home.dragondata.com> Subject: splash kit to -stable To: multimedia@FreeBSD.ORG Date: Tue, 14 Jul 1998 11:55:35 -0500 (CDT) X-Mailer: ELM [version 2.4ME+ PL31 (25)] MIME-Version: 1.0 Content-Type: text/plain; charset=US-ASCII Content-Transfer-Encoding: 7bit Sender: owner-freebsd-multimedia@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Before I try figuring out why the splashscreen patch blows up all over in syscons.c - has anyone backported it to -stable yet? :) Kevin To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-multimedia" in the body of the message From owner-freebsd-multimedia Tue Jul 14 09:59:48 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id JAA03593 for freebsd-multimedia-outgoing; Tue, 14 Jul 1998 09:59:48 -0700 (PDT) (envelope-from owner-freebsd-multimedia@FreeBSD.ORG) Received: from fleming.cs.strath.ac.uk (root@fleming.cs.strath.ac.uk [130.159.196.123]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id JAA03583 for ; Tue, 14 Jul 1998 09:59:46 -0700 (PDT) (envelope-from roger@cs.strath.ac.uk) Received: from cs.strath.ac.uk (posh.dmem.strath.ac.uk [130.159.202.3]) by fleming.cs.strath.ac.uk (8.8.8/8.8.8) with ESMTP id RAA09229 Tue, 14 Jul 1998 17:59:21 +0100 (BST) Message-ID: <35AB8E68.6ED1CC03@cs.strath.ac.uk> Date: Tue, 14 Jul 1998 17:59:20 +0100 From: Roger Hardiman Organization: Strathclyde Uni X-Mailer: Mozilla 4.05 [en] (X11; I; FreeBSD 3.0-980311-SNAP i386) MIME-Version: 1.0 To: Amancio Hasty CC: Randall Hopper , freebsd-multimedia@FreeBSD.ORG Subject: Re: New IOCTL for bt848 grab area (was S/W PAN and ZOOM) References: <199807141605.JAA01103@rah.star-gate.com> Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: 7bit Sender: owner-freebsd-multimedia@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Following my earlier posts, I have now worked out the limits to the zooming available with the new ioctl. The README on my ftp site ftp://vulture.dmem.strath.ac.uk/pub/bt848/driver has been updated. I hope we can reduce these restrictions either with better selection of the hactive/hdelay/vative/vdelay registers or through some dma_prog changes. Cheers Roger Part of the README follows. Limitations =========== Modes 1) Only tested RGB24 and YUV12 grabs on PAL. Can someone check NTSC. Thanks No overshooting 1) x_offset + x_size must be <=768 (for PAL) or <=640 (for NTSC) 2) y_offset + y_size must be <=576 (for PAL) or <=480 (for NTSC) Restrictions 1) y_offset may need to be even in interlaced modes Error Checking 1) None yet in the driver. Will be added later RGB24 - Interlaced mode 1) x_size must be greater than or equal to 1.666*METEORSETGEO width (cols) 2) y_size must be greater than or equal to METEORSETGEO height (rows) RGB24 - Even Only (or Odd Only) mode 1) x_size must be greater than or equal to 1.666*METEORSETGEO width (cols) 2) y_size must be greater than or equal to 2*METEORSETGEO height (rows) YUV12 - Interlaced mode 1) x_size must be greater than or equal to METEORSETGEO width (cols) 2) y_size must be greater than or equal to METEORSETGEO height (rows) YUV12 - Even Only (or Odd Only) mode 1) x_size must be greater than or equal to METEORSETGEO width (cols) 2) y_size must be greater than or equal to 2*METEORSETGEO height (rows) To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-multimedia" in the body of the message From owner-freebsd-multimedia Tue Jul 14 11:26:40 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id LAA16642 for freebsd-multimedia-outgoing; Tue, 14 Jul 1998 11:26:40 -0700 (PDT) (envelope-from owner-freebsd-multimedia@FreeBSD.ORG) Received: from time.cdrom.com (root@time.cdrom.com [204.216.27.226]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id LAA16635 for ; Tue, 14 Jul 1998 11:26:39 -0700 (PDT) (envelope-from jkh@time.cdrom.com) Received: from time.cdrom.com (jkh@localhost.cdrom.com [127.0.0.1]) by time.cdrom.com (8.8.8/8.8.8) with ESMTP id LAA04388; Tue, 14 Jul 1998 11:25:25 -0700 (PDT) (envelope-from jkh@time.cdrom.com) To: Jim Lowe cc: multimedia@FreeBSD.ORG Subject: Re: Spigot still supported? In-reply-to: Your message of "Tue, 14 Jul 1998 09:02:44 CDT." <199807141402.JAA20847@miller.cs.uwm.edu> Date: Tue, 14 Jul 1998 11:25:25 -0700 Message-ID: <4384.900440725@time.cdrom.com> From: "Jordan K. Hubbard" Sender: owner-freebsd-multimedia@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org > Running as root would also solve the permission problem, the device > should be readable/writeable (rw) by whoever is using it. I've got "spigot" to appear in the grabbers menu now - thank you! Erm. Any quick tips now on seeing if the video is actually working? :) I have the camera on and the spigot selected, but if I run vic and then click "transmit", the thing core dumps with a signal 10. Fun fun! :) > I suspect the problem is that /usr/local/lib/libspigot.a was not > installed when you compiled vic. The config for vic checks for this > library and if it exists, then it includes the spigot grabber > code. Libspigot.a can be installed using /usr/ports/graphics/spigot/. > Once the library is installed, you will need to reconfig/make vic. That may have been the case - I cleaned things out here and made them all from scratch. > I looked for the tv app in ports, but couldn't find it. It should It was always just something up on Amancio's FTP site, I think. I also put a copy up on ftp://time.cdrom.com/pub/tv.tar.gz for anyone who's interested. - Jordan To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-multimedia" in the body of the message From owner-freebsd-multimedia Tue Jul 14 11:47:17 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id LAA20561 for freebsd-multimedia-outgoing; Tue, 14 Jul 1998 11:47:17 -0700 (PDT) (envelope-from owner-freebsd-multimedia@FreeBSD.ORG) Received: from miller.cs.uwm.edu (miller.cs.uwm.edu [129.89.139.22]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id LAA20556 for ; Tue, 14 Jul 1998 11:47:15 -0700 (PDT) (envelope-from james@miller.cs.uwm.edu) Received: (from james@localhost) by miller.cs.uwm.edu (8.8.5/8.8.5) id NAA31219; Tue, 14 Jul 1998 13:47:05 -0500 (CDT) Date: Tue, 14 Jul 1998 13:47:05 -0500 (CDT) From: Jim Lowe Message-Id: <199807141847.NAA31219@miller.cs.uwm.edu> To: jkh@time.cdrom.com Subject: Re: Spigot still supported? Cc: multimedia@FreeBSD.ORG Sender: owner-freebsd-multimedia@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org > Subject: Re: Spigot still supported? > From: "Jordan K. Hubbard" > > > Running as root would also solve the permission problem, the device > > should be readable/writeable (rw) by whoever is using it. > > I've got "spigot" to appear in the grabbers menu now - thank you! Great. > > Erm. Any quick tips now on seeing if the video is actually working? > :) I have the camera on and the spigot selected, but if I run vic and > then click "transmit", the thing core dumps with a signal 10. Fun fun! :) No so good. I put a copy of the vic binary in ftp://ftp.cs.uwm.edu/outgoing/vic.gz for you? Let me know if this works or you still are having trouble. This is the binary I am current using with the spigot to broadcast the parking lot cam. > > I looked for the tv app in ports, but couldn't find it. It should > > It was always just something up on Amancio's FTP site, I think. I also > put a copy up on ftp://time.cdrom.com/pub/tv.tar.gz for anyone who's > interested. There would have to be a fair amount of work done to the tv app to make it work with the spigot. The tv app referenced above expects data in rgb24 mode from the frame grabber. The spigot can only output in yuv 4:2:2 mode. You would have to convert the 4:2:2 data to RGB 24 data, then display it. You might be able to find some public utilities around to do this. I think fxtv also requires RGB data, but I havn't looked real close at the source code. It would be nice to have fxtv work with all various frame grabbers. -Jim To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-multimedia" in the body of the message From owner-freebsd-multimedia Tue Jul 14 12:58:42 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id MAA04109 for freebsd-multimedia-outgoing; Tue, 14 Jul 1998 12:58:42 -0700 (PDT) (envelope-from owner-freebsd-multimedia@FreeBSD.ORG) Received: from time.cdrom.com (root@time.cdrom.com [204.216.27.226]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id MAA04104 for ; Tue, 14 Jul 1998 12:58:40 -0700 (PDT) (envelope-from jkh@time.cdrom.com) Received: from time.cdrom.com (jkh@localhost.cdrom.com [127.0.0.1]) by time.cdrom.com (8.8.8/8.8.8) with ESMTP id MAA27162; Tue, 14 Jul 1998 12:57:27 -0700 (PDT) (envelope-from jkh@time.cdrom.com) To: Jim Lowe cc: multimedia@FreeBSD.ORG Subject: Re: Spigot still supported? In-reply-to: Your message of "Tue, 14 Jul 1998 13:47:05 CDT." <199807141847.NAA31219@miller.cs.uwm.edu> Date: Tue, 14 Jul 1998 12:57:26 -0700 Message-ID: <27135.900446246@time.cdrom.com> From: "Jordan K. Hubbard" Sender: owner-freebsd-multimedia@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org > No so good. I put a copy of the vic binary in > ftp://ftp.cs.uwm.edu/outgoing/vic.gz for you? > Let me know if this works or you still are having > trouble. This is the binary I am current using with > the spigot to broadcast the parking lot cam. Cool, but could you perhaps link it static? I'm using Tk 8.0/Tcl 8.0 and your stuff is all linked with 4.1. :( Thanks! > RGB data, but I havn't looked real close at the source code. It would > be nice to have fxtv work with all various frame grabbers. Sure would be! [puppydog expression] :-) - Jordan To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-multimedia" in the body of the message From owner-freebsd-multimedia Tue Jul 14 18:04:20 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id SAA17058 for freebsd-multimedia-outgoing; Tue, 14 Jul 1998 18:04:20 -0700 (PDT) (envelope-from owner-freebsd-multimedia@FreeBSD.ORG) Received: from whqvax.picker.com (whqvax.picker.com [144.54.1.1]) by hub.freebsd.org (8.8.8/8.8.8) with SMTP id SAA17033 for ; Tue, 14 Jul 1998 18:04:09 -0700 (PDT) (envelope-from rhh@ct.picker.com) Received: from ct.picker.com by whqvax.picker.com with SMTP; Tue, 14 Jul 1998 21:03:32 -0400 (EDT) Received: from elmer.ct.picker.com ([144.54.57.34]) by ct.picker.com (4.1/SMI-4.1) id AA00690; Tue, 14 Jul 98 21:03:32 EDT Received: by elmer.ct.picker.com (SMI-8.6/SMI-SVR4) id VAA04138; Tue, 14 Jul 1998 21:02:59 -0400 Message-Id: <19980714210258.A4085@ct.picker.com> Date: Tue, 14 Jul 1998 21:02:58 -0400 From: Randall Hopper To: Jakob Alvermark , multimedia@FreeBSD.ORG Subject: Re: Cool apps? Mail-Followup-To: Jakob Alvermark , multimedia@FreeBSD.ORG References: Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii X-Mailer: Mutt 0.91.1i In-Reply-To: ; from Jakob Alvermark on Tue, Jul 14, 1998 at 05:24:08PM +0200 Sender: owner-freebsd-multimedia@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Jakob Alvermark: |Now I've got my new machine. It's a PII-400, 128 Mb RAM (100Mhz), Sound |Blaster 16, Matrox Mystique, and Voodoo 2 card. (CD-ROM player and |recorder also included) | |What cool multimedia apps is out there for FreeBSD? | |I have this cool machine, and I don't know what to do with it.. | |Any suggestions, pointer welcome. Nice system! What kind of cool apps do you like? I see you have a Voodoo. If games, with Linux emu & glide, you can do Quake, Quake II, Descent, Doom, etc. I think only Quake* needs the glide/voodoo but not sure. Do you have a TV card? If so, maybe one of the TV drivers and apps would be up your alley. MBone? (audio/video conferencing?) X10? Wireless? Audio tools? CD burning? FAX? MPEGs? Webcam? Voicemail? Scanning? Just need to define "cool" a little more :-) Here are a few links to get you started: http://www.freebsd.org/~faulkner/multimedia/mm.html http://www.iet.unipi.it/~luigi/FreeBSD.html http://www.freebsd.org/~ahasty/Bt848.html http://www.freebsd.org/support.html#development and a good one for searching for info on FreeBSD multimedia topics: http://www.freebsd.org/search.html Randall To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-multimedia" in the body of the message From owner-freebsd-multimedia Tue Jul 14 18:10:09 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id SAA18527 for freebsd-multimedia-outgoing; Tue, 14 Jul 1998 18:10:09 -0700 (PDT) (envelope-from owner-freebsd-multimedia@FreeBSD.ORG) Received: from cain.gsoft.com.au (genesi.lnk.telstra.net [139.130.136.161]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id SAA18431 for ; Tue, 14 Jul 1998 18:10:04 -0700 (PDT) (envelope-from doconnor@cain.gsoft.com.au) Received: from cain (localhost [127.0.0.1]) by cain.gsoft.com.au (8.8.8/8.6.9) with ESMTP id KAA16855; Wed, 15 Jul 1998 10:39:48 +0930 (CST) Message-Id: <199807150109.KAA16855@cain.gsoft.com.au> X-Mailer: exmh version 2.0.2 2/24/98 To: Jakob Alvermark cc: multimedia@FreeBSD.ORG Subject: Re: Cool apps? In-reply-to: Your message of "Tue, 14 Jul 1998 17:24:08 +0200." Mime-Version: 1.0 Content-Type: text/plain; charset=iso-8859-1 Date: Wed, 15 Jul 1998 10:39:48 +0930 From: "Daniel O'Connor" Content-Transfer-Encoding: 8bit X-MIME-Autoconverted: from quoted-printable to 8bit by hub.freebsd.org id SAA18509 Sender: owner-freebsd-multimedia@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org > What cool multimedia apps is out there for FreeBSD? > I have this cool machine, and I don't know what to do with it.. Quake 1 & 2.. Run xlockmore and use the OpenGL screen savers. Get Blender and do some rendering.. --------------------------------------------------------------------- |Daniel O'Connor software and network engineer for Genesis Software | |http://www.gsoft.com.au | |The nice thing about standards is that there are so many of them to| |choose from. -- Andrew Tanenbaum | --------------------------------------------------------------------- To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-multimedia" in the body of the message From owner-freebsd-multimedia Tue Jul 14 23:29:04 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id XAA27877 for freebsd-multimedia-outgoing; Tue, 14 Jul 1998 23:29:04 -0700 (PDT) (envelope-from owner-freebsd-multimedia@FreeBSD.ORG) Received: from shell.zebra.net (shell.zebra.net [209.12.240.129]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id XAA27872 for ; Tue, 14 Jul 1998 23:29:02 -0700 (PDT) (envelope-from saten@shell.zebra.net) Received: from localhost (saten@localhost) by shell.zebra.net (8.8.8/8.8.8) with SMTP id BAA10461; Wed, 15 Jul 1998 01:26:00 -0500 (CDT) (envelope-from saten@shell.zebra.net) Date: Wed, 15 Jul 1998 01:26:00 -0500 (CDT) From: Phillip Salzman To: Jakob Alvermark cc: Subject: Re: Cool apps? In-Reply-To: Message-ID: MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII Sender: owner-freebsd-multimedia@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Ahhh, nice :) Check out Blender, http://www.neogeo.nl, its nice :) > > Now I've got my new machine. It's a PII-400, 128 Mb RAM (100Mhz), Sound > Blaster 16, Matrox Mystique, and Voodoo 2 card. (CD-ROM player and > recorder also included) > Phillip Salzman eclipse@gulf.net To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-multimedia" in the body of the message From owner-freebsd-multimedia Wed Jul 15 12:44:23 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id MAA08052 for freebsd-multimedia-outgoing; Wed, 15 Jul 1998 12:44:23 -0700 (PDT) (envelope-from owner-freebsd-multimedia@FreeBSD.ORG) Received: from miller.cs.uwm.edu (miller.cs.uwm.edu [129.89.139.22]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id MAA08047 for ; Wed, 15 Jul 1998 12:44:21 -0700 (PDT) (envelope-from james@miller.cs.uwm.edu) Received: (from james@localhost) by miller.cs.uwm.edu (8.8.5/8.8.5) id OAA16761; Wed, 15 Jul 1998 14:44:10 -0500 (CDT) Date: Wed, 15 Jul 1998 14:44:10 -0500 (CDT) From: Jim Lowe Message-Id: <199807151944.OAA16761@miller.cs.uwm.edu> To: jkh@time.cdrom.com Subject: Re: Spigot still supported? Cc: multimedia@FreeBSD.ORG Sender: owner-freebsd-multimedia@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org > Date: Tue, 14 Jul 1998 12:57:26 -0700 > From: "Jordan K. Hubbard" > > > No so good. I put a copy of the vic binary in > > ftp://ftp.cs.uwm.edu/outgoing/vic.gz for you? > > Let me know if this works or you still are having > > trouble. This is the binary I am current using with > > the spigot to broadcast the parking lot cam. > > Cool, but could you perhaps link it static? I'm using Tk 8.0/Tcl 8.0 > and your stuff is all linked with 4.1. :( > > Thanks! I relinked it with tk/tcl 8.0. and replaced ftp://ftp.cs.uwm.edu/outgoing/vic.gz with the new binary. In the process, I found a bug in vic/patches/patch-ab. You might even be able to get your vic to compile and run if you replace patch-ab with the attached patch. I am using the new binary to transmit the mbone parking lot w/ the spigot, but it has only been running for about 1/2 hour. Let me know if either or both of these solutions work for you. If the patch works for you, we should probably replace ports/vic/patches/patch-ab with this new version. Thanks, -Jim -------------------------------------------------------------------- *** grabber-spigot.cc.orig Sat Jan 13 15:35:28 1996 --- grabber-spigot.cc Wed Jul 15 14:15:26 1998 *************** *** 195,200 **** --- 195,201 ---- hskip_ = 0; break; case f_cif: + int voff, hoff; set_size_cif(w, h); /* XXX */ vstart_ = 0; *************** *** 202,210 **** hstart_ = 1; hstop_ = blkw_ - 1; ! int voff = (outh_ - inh_) / 2; hwrap_ = outw_ - inw_ ; ! int hoff = hwrap_ / 2; loff_ = outw_ * voff + hoff; coff_ = (outw_ >> 1) * (voff >> 1) + (hoff >> 1); hskip_ = 0; --- 203,211 ---- hstart_ = 1; hstop_ = blkw_ - 1; ! voff = (outh_ - inh_) / 2; hwrap_ = outw_ - inw_ ; ! hoff = hwrap_ / 2; loff_ = outw_ * voff + hoff; coff_ = (outw_ >> 1) * (voff >> 1) + (hoff >> 1); hskip_ = 0; *************** *** 349,357 **** int numc = ((basewidth_/decimate_) & ~0xf) >> 2; int numr = (baseheight_/decimate_) & ~0xf; int chm_wrap = hwrap_ >> 1; (void)spigot_start_xfer(1); ! for(int y=0; y < numr ; y++) { for(int x=0; x < numc; x++) { /* * We read these as unsigned shorts and set y data --- 350,359 ---- int numc = ((basewidth_/decimate_) & ~0xf) >> 2; int numr = (baseheight_/decimate_) & ~0xf; int chm_wrap = hwrap_ >> 1; + int y; (void)spigot_start_xfer(1); ! for(y=0; y < numr ; y++) { for(int x=0; x < numc; x++) { /* * We read these as unsigned shorts and set y data To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-multimedia" in the body of the message From owner-freebsd-multimedia Wed Jul 15 20:49:39 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id UAA06819 for freebsd-multimedia-outgoing; Wed, 15 Jul 1998 20:49:39 -0700 (PDT) (envelope-from owner-freebsd-multimedia@FreeBSD.ORG) Received: from chmls05.mediaone.net (ne.mediaone.net [24.128.1.70]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id UAA06806 for ; Wed, 15 Jul 1998 20:49:35 -0700 (PDT) (envelope-from glenn@mediaone.net) Received: from mediaone.net (glenn.ne.mediaone.net [24.128.10.213]) by chmls05.mediaone.net (8.8.7/8.8.7) with ESMTP id XAA01349 for ; Wed, 15 Jul 1998 23:49:08 -0400 (EDT) Message-ID: <35AD783B.BCA38F3@mediaone.net> Date: Wed, 15 Jul 1998 23:49:15 -0400 From: "Glenn J. Allin" X-Mailer: Mozilla 4.05 [en] (Win95; U) MIME-Version: 1.0 To: multimedia@FreeBSD.ORG Subject: no permission to access http://www.freebsd.org/~ahasty/files/bt848.tar.gz Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: 7bit Sender: owner-freebsd-multimedia@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Greetings. I am trying to download the bt848 driver from http://ww.freebsd.org/~ahasty/files/bt848.tar.gz, but I get the following reponse: Forbidden You don't have permission to access /~ahasty/files/bt848.tar.gz on this server. Am I doing something wrong, or is there an access control on the page which is too strict? Any help is much appreciated. Regards, Glenn Allin To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-multimedia" in the body of the message From owner-freebsd-multimedia Thu Jul 16 07:50:46 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id HAA20217 for freebsd-multimedia-outgoing; Thu, 16 Jul 1998 07:50:46 -0700 (PDT) (envelope-from owner-freebsd-multimedia@FreeBSD.ORG) Received: from gilberto.physik.RWTH-Aachen.DE (gilberto.physik.rwth-aachen.de [137.226.30.2]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id HAA20193 for ; Thu, 16 Jul 1998 07:50:38 -0700 (PDT) (envelope-from kuku@gilberto.physik.RWTH-Aachen.DE) Received: (from kuku@localhost) by gilberto.physik.RWTH-Aachen.DE (8.8.8/8.8.7) id QAA00815 for multimedia@freebsd.org; Thu, 16 Jul 1998 16:50:40 +0200 (MEST) (envelope-from kuku) Date: Thu, 16 Jul 1998 16:50:40 +0200 (MEST) From: Christoph Kukulies Message-Id: <199807161450.QAA00815@gilberto.physik.RWTH-Aachen.DE> To: multimedia@FreeBSD.ORG Subject: gus0, 2.2.6, isa_dmastart: drq 1 not acquired Sender: owner-freebsd-multimedia@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org I put the following into my kernel CONFIG: controller snd0 device gus0 at isa? port 0x220 irq 12 drq 1 flags 0x3 vector gusintr Now, when I do a simple test: cat laugh.au >/dev/audio I'm getting a bunch of kernel printf's on the screen: isa_dmastart: channel 1 not acquired isa_dmastart: channel 1 not acquired isa_dmastart: channel 1 not acquired isa_dmastart: channel 1 not acquired isa_dmastart: channel 1 not acquired Also I hear a click noise at the beginning of playing back an .au file. -- Chris Christoph P. U. Kukulies kuku@gil.physik.rwth-aachen.de To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-multimedia" in the body of the message From owner-freebsd-multimedia Thu Jul 16 10:19:46 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id KAA12442 for freebsd-multimedia-outgoing; Thu, 16 Jul 1998 10:19:46 -0700 (PDT) (envelope-from owner-freebsd-multimedia@FreeBSD.ORG) Received: from gilberto.physik.RWTH-Aachen.DE (gilberto.physik.rwth-aachen.de [137.226.30.2]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id KAA12220 for ; Thu, 16 Jul 1998 10:18:30 -0700 (PDT) (envelope-from kuku@gilberto.physik.RWTH-Aachen.DE) Received: (from kuku@localhost) by gilberto.physik.RWTH-Aachen.DE (8.8.8/8.8.7) id TAA01572 for multimedia@freebsd.org; Thu, 16 Jul 1998 19:18:12 +0200 (MEST) (envelope-from kuku) Date: Thu, 16 Jul 1998 19:18:12 +0200 (MEST) From: Christoph Kukulies Message-Id: <199807161718.TAA01572@gilberto.physik.RWTH-Aachen.DE> To: multimedia@FreeBSD.ORG Subject: sound/midi under 2.2.6 choppy with interruptions Sender: owner-freebsd-multimedia@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org I upgraded my 2.2.5 machine to 2.2.6 and found that sound has is dramatically degraded. Anyone knowing why that could have happened? Whenever playing a midi file I hear some milliseconds of pausing. I bought OSS/FreeBSD (20.00 $) to see if I can quick cure for the problem by using a different driver but it exposes the same problems. I'm using the GUS MAX and never had problems with earlier 2.2.x and sound. Now I'm clueless. -- Chris Christoph P. U. Kukulies kuku@gil.physik.rwth-aachen.de kernel config file included (note that the sound drivers are disabled for the OSS lkms to work). I'm using drq 3 and irq 12 for the GUS. Well, what;s also new is that I'm running isdn4bsd together with upgrading to 2.2.6. # # # For more information read the handbook part System Administration -> # Configuring the FreeBSD Kernel -> The Configuration File. # The handbook is available in /usr/share/doc/handbook or online as # latest version from the FreeBSD World Wide Web server # # # An exhaustive list of options and more detailed explanations of the # device lines is present in the ./LINT configuration file. If you are # in doubt as to the purpose or necessity of a line, check first in LINT. # # $Id: GENERIC,v 1.77.2.22 1998/03/24 01:20:14 jkh Exp $ machine "i386" cpu "I486_CPU" ident MONKAVMIFB maxusers 64 options MATH_EMULATE #Support for x87 emulation options INET #InterNETworking options FFS #Berkeley Fast Filesystem options NFS #Network Filesystem options MSDOSFS #MSDOS Filesystem options "CD9660" #ISO 9660 Filesystem options PROCFS #Process filesystem options "COMPAT_43" #Compatible with BSD 4.3 [KEEP THIS!] options SCSI_DELAY=15 #Be pessimistic about Joe SCSI device #options BOUNCE_BUFFERS #include support for DMA bounce buffers options UCONSOLE #Allow users to grab the console options FAILSAFE #Be conservative options USERCONFIG #boot -c editor options VISUAL_USERCONFIG #visual boot -c editor options SYSVSHM options SHMMAXPGS=4096 options "SHMMAX=(SHMMAXPGS*PAGE_SIZE+1)" options IPDIVERT options IPFIREWALL options IPFIREWALL_VERBOSE config kernel root on wd0 controller isa0 controller pci0 controller fdc0 at isa? port "IO_FD1" bio irq 6 drq 2 vector fdintr disk fd0 at fdc0 drive 0 controller wdc0 at isa? port "IO_WD1" bio irq 14 vector wdintr disk wd0 at wdc0 drive 0 options ATAPI #Enable ATAPI support for IDE bus options ATAPI_STATIC #Don't do it as an LKM device wcd0 #IDE CD-ROM # A single entry for any of these controllers (ncr, ahb, ahc, amd) is # sufficient for any number of installed devices. # # Note: The dpt driver is present in this release but was left disabled # due to its relatively late entry (it's almost certainly benign to enable # it but we didn't want to risk any chance of destabilizing 2.2.6). To # enable DPT support, uncomment the dpt0 controller entry and the two # options DPTOPT and DPT_MEASURE_PERFORMANCE entries below. controller ncr0 controller scbus0 device sd0 device od0 #See LINT for possible `od' options. device st0 device cd0 #Only need one of these, the code dynamically grows # syscons is the default console driver, resembling an SCO console device sc0 at isa? port "IO_KBD" tty irq 1 vector scintr # Enable this and PCVT_FREEBSD for pcvt vt220 compatible console driver #device vt0 at isa? port "IO_KBD" tty irq 1 vector pcrint #options XSERVER # support for X server #options FAT_CURSOR # start with block cursor # If you have a ThinkPAD, uncomment this along with the rest of the PCVT lines #options PCVT_SCANSET=2 # IBM keyboards are non-std # Mandatory, don't remove device npx0 at isa? port "IO_NPX" flags 0x1 irq 13 vector npxintr device sio0 at isa? port "IO_COM1" tty irq 4 vector siointr device sio1 at isa? port "IO_COM2" tty irq 3 vector siointr device lpt0 at isa? port? tty irq 7 vector lptintr ##controller snd0 ##device gus0 at isa? port 0x220 irq 12 drq 1 flags 0x3 vector gusintr # Order is important here due to intrusive probes, do *not* alphabetize # this list of network interfaces until the probes have been fixed. # Right now it appears that the ie0 must be probed before ep0. See # revision 1.20 of this file. device le0 at isa? port 0x200 net irq 10 iomem 0xd0000 vector le_intr # # Copyright (c) 1997, 1998 Hellmuth Michaelis. All rights reserved. # # Redistribution and use in source and binary forms, with or without # modification, are permitted provided that the following conditions # are met: # # 1. Redistributions of source code must retain the above copyright # notice, this list of conditions and the following disclaimer. # 2. Redistributions in binary form must reproduce the above copyright # notice, this list of conditions and the following disclaimer in the # documentation and/or other materials provided with the distribution. # 3. Neither the name of the author nor the names of any co-contributors # may be used to endorse or promote products derived from this software # without specific prior written permission. # 4. Altered versions must be plainly marked as such, and must not be # misrepresented as being the original software and/or documentation. # # THIS SOFTWARE IS PROVIDED BY THE AUTHOR AND CONTRIBUTORS ``AS IS'' AND # ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE # IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE # ARE DISCLAIMED. IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE LIABLE # FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL # DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS # OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) # HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT # LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY # OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF # SUCH DAMAGE. # #--------------------------------------------------------------------------- # # i4b FreeBSD kernel configuration # -------------------------------- # # last edit-date: [Fri Jun 19 10:44:03 1998] # # $Id: CONFIG,v 1.14 1998/06/19 09:26:07 hm Exp $ # # -hm cvs # -hm PPP # -hm hardware options patch from Gary # #--------------------------------------------------------------------------- # # i4b passive ISDN cards support (isic - I4b Siemens Isdn Chipset driver) # note that the ``options'' and ``device'' lines must BOTH be defined ! # Teles S0/8 or Niccy 1008 #options "TEL_S0_8" #device isic0 at isa? iomem 0xd0000 net irq 5 flags 0x01 vector isicintr # Teles S0/16 or Creatix ISDN-S0 or Niccy 1016 #options "TEL_S0_16" #device isic0 at isa? port 0xd80 iomem 0xd0000 net irq 5 flags 0x02 vector isicintr # Teles S0/16.3 #options "TEL_S0_16_3" #device isic0 at isa? port 0xd80 net irq 5 flags 0x04 vector isicintr # AVM A1 or AVM Fritz!Card options "AVM_A1" device isic0 at isa? port 0x340 net irq 5 flags 0x08 vector isicintr # Teles S0/16.3 PnP #options "TEL_S0_16_3_P" #device isic0 at isa? port 0x580 net irq 5 flags 0x10 vector isicintr # Creatix ISDN-S0 P&P #options "CRTX_S0_P" #device isic0 at isa? port 0x120 net irq 5 flags 0x11 vector isicintr # USRobotics Sportster ISDN TA intern #options "USR_STI" #device isic0 at isa? port 0x268 net irq 5 flags 0x12 vector isicintr # Dr. Neuhaus Niccy Go@ #options "DRN_NGO" #device isic0 at isa? port 0x200 net irq 5 flags 0x14 vector isicintr # Sedlbauer Win Speed #options "SEDLBAUER" #device isic0 at isa? port 0x100 net irq 11 flags 0x18 vector isicintr # Dynalink IS64PH #options "DYNALINK" #device isic0 at isa? port 0x100 net irq 5 flags 0x15 vector isicintr # needed for ISDN PnP cards #options "I4B_PNP" # AVM PCMCIA Fritz!Card #options "AVM_A1_PCMCIA" # i4b active ISDN cards support # Stollmann Tina-dd control device #device tina0 at isa? port 0x260 net irq 10 vector tinaintr # i4b passive cards D channel handling # Q.921 pseudo-device "i4bq921" # Q.931 pseudo-device "i4bq931" # common passive and active layer 4 # layer 4 pseudo-device "i4b" # userland driver to do ISDN tracing (for passive cards oly) pseudo-device "i4btrc" 4 # userland driver to control the whole thing pseudo-device "i4bctl" # userland driver for access to raw B channel pseudo-device "i4brbch" 4 # userland driver for telephony pseudo-device "i4btel" 2 # network driver for IP over raw HDLC ISDN pseudo-device "i4bipr" 4 # enable VJ header compression detection for ipr i/f options IPR_VJ # network driver for sync PPP over ISDN pseudo-device "i4bisppp" 4 pseudo-device sppp 4 pseudo-device loop pseudo-device ether pseudo-device log pseudo-device bpfilter 4 pseudo-device sl 1 pseudo-device ppp 1 pseudo-device vn 1 pseudo-device tun 1 pseudo-device pty 16 pseudo-device gzip # Exec gzipped a.out's pseudo-device speaker pseudo-device pca # KTRACE enables the system-call tracing facility ktrace(2). # This adds 4 KB bloat to your kernel, and slightly increases # the costs of each syscall. options KTRACE #kernel tracing # This provides support for System V shared memory. # options SYSVSHM To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-multimedia" in the body of the message From owner-freebsd-multimedia Thu Jul 16 13:05:10 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id NAA05836 for freebsd-multimedia-outgoing; Thu, 16 Jul 1998 13:05:10 -0700 (PDT) (envelope-from owner-freebsd-multimedia@FreeBSD.ORG) Received: from resnet.uoregon.edu (resnet.uoregon.edu [128.223.144.32]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id NAA05825 for ; Thu, 16 Jul 1998 13:05:07 -0700 (PDT) (envelope-from dwhite@resnet.uoregon.edu) Received: from localhost (dwhite@localhost) by resnet.uoregon.edu (8.8.5/8.8.8) with SMTP id NAA22294; Thu, 16 Jul 1998 13:04:46 -0700 (PDT) (envelope-from dwhite@resnet.uoregon.edu) Date: Thu, 16 Jul 1998 13:04:45 -0700 (PDT) From: Doug White To: Christoph Kukulies cc: multimedia@FreeBSD.ORG Subject: Re: gus0, 2.2.6, isa_dmastart: drq 1 not acquired In-Reply-To: <199807161450.QAA00815@gilberto.physik.RWTH-Aachen.DE> Message-ID: MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII Sender: owner-freebsd-multimedia@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org On Thu, 16 Jul 1998, Christoph Kukulies wrote: > I put the following into my kernel CONFIG: > > controller snd0 > > device gus0 at isa? port 0x220 irq 12 drq 1 flags 0x3 vector gusintr > > Now, when I do a simple test: > > cat laugh.au >/dev/audio > > I'm getting a bunch of kernel printf's on the screen: > > > isa_dmastart: channel 1 not acquired > isa_dmastart: channel 1 not acquired > isa_dmastart: channel 1 not acquired > isa_dmastart: channel 1 not acquired > isa_dmastart: channel 1 not acquired > > Also I hear a click noise at the beginning of playing back > an .au file. Something using DRQ 1, perhaps? Or IRQ 12? Doug White | University of Oregon Internet: dwhite@resnet.uoregon.edu | Residence Networking Assistant http://gladstone.uoregon.edu/~dwhite | Computer Science Major To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-multimedia" in the body of the message From owner-freebsd-multimedia Thu Jul 16 20:01:19 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id UAA09939 for freebsd-multimedia-outgoing; Thu, 16 Jul 1998 20:01:19 -0700 (PDT) (envelope-from owner-freebsd-multimedia@FreeBSD.ORG) Received: from rah.star-gate.com (rah.star-gate.com [209.133.7.234]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id UAA09932 for ; Thu, 16 Jul 1998 20:01:15 -0700 (PDT) (envelope-from hasty@rah.star-gate.com) Received: from rah.star-gate.com (localhost.star-gate.com [127.0.0.1]) by rah.star-gate.com (8.8.8/8.8.8) with ESMTP id UAA07979; Thu, 16 Jul 1998 20:00:57 -0700 (PDT) (envelope-from hasty@rah.star-gate.com) Message-Id: <199807170300.UAA07979@rah.star-gate.com> X-Mailer: exmh version 2.0.2 2/24/98 To: "Glenn J. Allin" cc: multimedia@FreeBSD.ORG Subject: Re: no permission to access http://www.freebsd.org/~ahasty/files/bt848.tar.gz In-reply-to: Your message of "Wed, 15 Jul 1998 23:49:15 EDT." <35AD783B.BCA38F3@mediaone.net> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Date: Thu, 16 Jul 1998 20:00:57 -0700 From: Amancio Hasty Sender: owner-freebsd-multimedia@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Hi, I took the web page down as well as my ftp site. Currently, I am having a little argument with PHK and Soren over Soren's patch to the Bt848 driver. I was told by PHK that I can't back out Soren's patch if I found out unacceptable . What this means is that I can't manage or protect the driver in the FreeBSD tree so my recourse at this time is to cease working on multimedia work for FreeBSD . Cheers, Amancio To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-multimedia" in the body of the message