From owner-freebsd-multimedia Sun May 10 00:51:51 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id AAA28651 for freebsd-multimedia-outgoing; Sun, 10 May 1998 00:51: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 AAA28644 for ; Sun, 10 May 1998 00:51:48 -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 AAA00899 for ; Sun, 10 May 1998 00:51:49 -0700 (PDT) (envelope-from hasty@rah.star-gate.com) Message-Id: <199805100751.AAA00899@rah.star-gate.com> X-Mailer: exmh version 2.0.2 2/24/98 To: multimedia@FreeBSD.ORG Subject: new bt848 driver Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Date: Sun, 10 May 1998 00:51:49 -0700 From: Amancio Hasty Sender: owner-freebsd-multimedia@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Hi ftp://rah.star-gate.com/pub/bt848.tar.gz With this release there is a better recognition mechanism for cards. A new struct is introduced: struct bt848_card_sig { int card; int tuner; u_char signature[Bt848_MAX_SIGN]; }; struct bt848_card_sig bt848_card_signature[1]= { /* IMS TURBO TV : card 5 */ { 5,9, {00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 02, 00, 00, 00}} }; bt848_card_sig.card holds a card number bt848_card_sig.tuner holds a tuner number bt848_card.signature holds the first 16 bytes of the signature probe test. The program sign.c available from http://www.freebsd.org.~ahasty/Bt848.html can be used to print the signature of your card or boot verbose. If the recognition algorithm fails , you can still program the driver: sysctl -w hw.bt848_card= sysctl -w hw.bt848_tuner= sysctl -w hw.bt848_reverse_mute=<0|1> 1 reverses the function of the tuner mute I intent to check in the driver in about a week from now. 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 Sun May 10 06:45:04 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id GAA24213 for freebsd-multimedia-outgoing; Sun, 10 May 1998 06:45:04 -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 GAA24208 for ; Sun, 10 May 1998 06:45:01 -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 OAA16408; Sun, 10 May 1998 14:12:30 +0200 From: Luigi Rizzo Message-Id: <199805101212.OAA16408@labinfo.iet.unipi.it> Subject: Re: new bt848 driver To: hasty@rah.star-gate.com (Amancio Hasty) Date: Sun, 10 May 1998 14:12:29 +0200 (MET DST) Cc: multimedia@FreeBSD.ORG In-Reply-To: <199805100751.AAA00899@rah.star-gate.com> from "Amancio Hasty" at May 10, 98 00:51:30 am X-Mailer: ELM [version 2.4 PL23] Content-Type: text Sender: owner-freebsd-multimedia@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org > If the recognition algorithm fails , you can still program the driver: > sysctl -w hw.bt848_card= > sysctl -w hw.bt848_tuner= > sysctl -w hw.bt848_reverse_mute=<0|1> 1 reverses the function of the tuner mute somebody suggested to create a "bt848" node in the sysctl tree so that you would have variables namde hw.bt848.card hw.bt848.tuner etc. . This probably gives you some advantage when you want to list only a subset of sysctl variables. 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 May 10 11:21:34 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id LAA18031 for freebsd-multimedia-outgoing; Sun, 10 May 1998 11:21: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 LAA18026 for ; Sun, 10 May 1998 11:21: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 LAA02776; Sun, 10 May 1998 11:21:25 -0700 (PDT) (envelope-from hasty@rah.star-gate.com) Message-Id: <199805101821.LAA02776@rah.star-gate.com> X-Mailer: exmh version 2.0.2 2/24/98 To: Luigi Rizzo cc: multimedia@FreeBSD.ORG Subject: Re: new bt848 driver In-reply-to: Your message of "Sun, 10 May 1998 14:12:29 +0200." <199805101212.OAA16408@labinfo.iet.unipi.it> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Date: Sun, 10 May 1998 11:21:25 -0700 From: Amancio Hasty Sender: owner-freebsd-multimedia@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Yes, I did received the note . Can someone show me how to do it? Tnks, Amancio > > If the recognition algorithm fails , you can still program the driver: > > sysctl -w hw.bt848_card= > > sysctl -w hw.bt848_tuner= > > sysctl -w hw.bt848_reverse_mute=<0|1> 1 reverses the function of the tuner mute > > somebody suggested to create a "bt848" node in the sysctl tree so that > you would have variables namde > > hw.bt848.card > hw.bt848.tuner > > etc. . This probably gives you some advantage when you want to list > only a subset of sysctl variables. > > 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 May 10 11:42:36 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id LAA20518 for freebsd-multimedia-outgoing; Sun, 10 May 1998 11:42:36 -0700 (PDT) (envelope-from owner-freebsd-multimedia@FreeBSD.ORG) Received: from uhf.wireless.net (uhf.wireless.net [209.189.23.54]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id LAA20497 for ; Sun, 10 May 1998 11:42:30 -0700 (PDT) (envelope-from bad@shf.wireless.net) Received: from shf.wireless.net (shf [209.189.23.56]) by uhf.wireless.net (8.8.8/8.8.7) with ESMTP id LAA19016; Sun, 10 May 1998 11:41:10 -0700 (PDT) Received: from localhost (bad@localhost) by shf.wireless.net (8.8.8/8.8.8) with SMTP id LAA00361; Sun, 10 May 1998 11:42:45 -0700 (PDT) (envelope-from bad@shf.wireless.net) Date: Sun, 10 May 1998 11:42:45 -0700 (PDT) From: Bernie Doehner To: Amancio Hasty cc: Luigi Rizzo , multimedia@FreeBSD.ORG Subject: Re: new bt848 driver In-Reply-To: <199805101821.LAA02776@rah.star-gate.com> 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 > Yes, I did received the note . Can someone show me how to do it? static int bt848_card=1; SYSCTL_INT(_hw,OID_AUTO,bt848_card,CTLFLAG_RW,&bt848_card,0,""); Cheers, Bernie > > Tnks, > Amancio > > > If the recognition algorithm fails , you can still program the driver: > > > sysctl -w hw.bt848_card= > > > sysctl -w hw.bt848_tuner= > > > sysctl -w hw.bt848_reverse_mute=<0|1> 1 reverses the function of the tuner mute > > > > somebody suggested to create a "bt848" node in the sysctl tree so that > > you would have variables namde > > > > hw.bt848.card > > hw.bt848.tuner > > > > etc. . This probably gives you some advantage when you want to list > > only a subset of sysctl variables. > > > > cheers > > luigi > > > > To Unsubscribe: send mail to majordomo@FreeBSD.org > with "unsubscribe freebsd-multimedia" in the body of the message > To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-multimedia" in the body of the message From owner-freebsd-multimedia Sun May 10 12:51:00 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id MAA02130 for freebsd-multimedia-outgoing; Sun, 10 May 1998 12:51:00 -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 MAA02115 for ; Sun, 10 May 1998 12:50: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 MAA06675; Sun, 10 May 1998 12:50:31 -0700 (PDT) (envelope-from hasty@rah.star-gate.com) Message-Id: <199805101950.MAA06675@rah.star-gate.com> X-Mailer: exmh version 2.0.2 2/24/98 To: Bernie Doehner cc: Luigi Rizzo , multimedia@FreeBSD.ORG Subject: Re: new bt848 driver In-reply-to: Your message of "Sun, 10 May 1998 11:42:45 PDT." Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Date: Sun, 10 May 1998 12:50:31 -0700 From: Amancio Hasty Sender: owner-freebsd-multimedia@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Hi Bernie, This is what is in the driver: static int bt848_card = -1; SYSCTL_INT(_hw, OID_AUTO, bt848_card, CTLFLAG_RW, &bt848_card, -1, ""); What Luigi and friends want is : A root node for the bt848. hw.bt848 Then , hw.bt848.card hw.bt848.tuner hw.bt848.reverse_mute Because they don't want to do something like: sysctl -a | grep bt848 to identify all the bt848 variables they rather do something like: sysctl hw.bt848 Also the hw.bt848 root node avoids name space pollution and further categorizes the sysctl tree. >From browsing at the kernel , I think we want something similar to: vfs_aio.c:SYSCTL_NODE(_vfs, OID_AUTO, aio, CTLFLAG_RW, 0, "AIO mgmt"); And, I just talk myself into doing it 8) Cheers, Amancio > > Yes, I did received the note . Can someone show me how to do it? > > static int bt848_card=1; > SYSCTL_INT(_hw,OID_AUTO,bt848_card,CTLFLAG_RW,&bt848_card,0,""); > > Cheers, > > Bernie > > > > > Tnks, > > Amancio > > > > If the recognition algorithm fails , you can still program the driver: > > > > sysctl -w hw.bt848_card= > > > > sysctl -w hw.bt848_tuner= > > > > sysctl -w hw.bt848_reverse_mute=<0|1> 1 reverses the function of the tuner mute > > > > > > somebody suggested to create a "bt848" node in the sysctl tree so that > > > you would have variables namde > > > > > > hw.bt848.card > > > hw.bt848.tuner > > > > > > etc. . This probably gives you some advantage when you want to list > > > only a subset of sysctl variables. > > > > > > cheers > > > luigi > > > > > > > > To Unsubscribe: send mail to majordomo@FreeBSD.org > > with "unsubscribe freebsd-multimedia" in the body of the message > > > To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-multimedia" in the body of the message From owner-freebsd-multimedia Sun May 10 13:34:09 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id NAA08018 for freebsd-multimedia-outgoing; Sun, 10 May 1998 13:34:09 -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 NAA08011 for ; Sun, 10 May 1998 13:34:07 -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 NAA00573; Sun, 10 May 1998 13:33:55 -0700 (PDT) (envelope-from hasty@rah.star-gate.com) Message-Id: <199805102033.NAA00573@rah.star-gate.com> X-Mailer: exmh version 2.0.2 2/24/98 To: Bernie Doehner cc: Luigi Rizzo , multimedia@FreeBSD.ORG Subject: Re: new bt848 driver In-reply-to: Your message of "Sun, 10 May 1998 11:42:45 PDT." Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Date: Sun, 10 May 1998 13:33:55 -0700 From: Amancio Hasty Sender: owner-freebsd-multimedia@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Hi Guys, I just modified the driver to reflect the new desired sysctl structure: {hasty} sysctl hw.bt848 hw.bt848.card: 5 hw.bt848.tuner: 9 hw.bt848.reverse_mute: -1 The new driver is at: ftp://rah.star-gate.com/pub/bt848.tar.gz After a week of testing and review my intention is to check in the driver by this Friday. Cheers, Amancio To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-multimedia" in the body of the message From owner-freebsd-multimedia Sun May 10 23:05:53 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id XAA17250 for freebsd-multimedia-outgoing; Sun, 10 May 1998 23:05:53 -0700 (PDT) (envelope-from owner-freebsd-multimedia@FreeBSD.ORG) Received: from gdi.uoregon.edu (gdi.uoregon.edu [128.223.170.30]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id XAA17242 for ; Sun, 10 May 1998 23:05:46 -0700 (PDT) (envelope-from dwhite@gdi.uoregon.edu) Received: from localhost (dwhite@localhost) by gdi.uoregon.edu (8.8.8/8.8.8) with SMTP id XAA00355 for ; Sun, 10 May 1998 23:05:45 -0700 (PDT) (envelope-from dwhite@gdi.uoregon.edu) Date: Sun, 10 May 1998 23:05:44 -0700 (PDT) From: Doug White Reply-To: Doug White To: multimedia@FreeBSD.ORG Subject: GusPNP + 2.2.6 = static 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 Hello .. tsia. Upgraded to 2.2.6 today, built a new kernel with pcm0 and controller pnp0, finds GUS PnP okay, but cat somefile.au > /dev/audio1 gives static. Is there something I missed? (that pcm0 -> pcm1? log message is going to get annoying fast, I can tell.) dmesg output: Probing for PnP devices: CSN 1 Vendor ID: GRV0001 [0x0100561e] Serial 0xffffffff mss_attach 1 at 0x328 irq 11 dma 7:5 flags 0x15 pcm1 (GusPnP sn 0xffffffff) at 0x328 irq 11 drq 7 flags 0x15 id 13 /dev/sndstat output: FreeBSD Audio Driver (980215) May 10 1998 22:38:59 Installed devices: pcm1: at 0x328 irq 11 dma 7:5 Sigh .. I know I didn't want to this upgrade for precisely this reason :( Time to pull out guspnp11 ... 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 Mon May 11 01:03:35 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id BAA00514 for freebsd-multimedia-outgoing; Mon, 11 May 1998 01:03:35 -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 BAA00432 for ; Mon, 11 May 1998 01:02:17 -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 IAA17323; Mon, 11 May 1998 08:28:47 +0200 From: Luigi Rizzo Message-Id: <199805110628.IAA17323@labinfo.iet.unipi.it> Subject: Re: GusPNP + 2.2.6 = static To: dwhite@resnet.uoregon.edu Date: Mon, 11 May 1998 08:28:47 +0200 (MET DST) Cc: multimedia@FreeBSD.ORG In-Reply-To: from "Doug White" at May 10, 98 11:05:25 pm X-Mailer: ELM [version 2.4 PL23] Content-Type: text Sender: owner-freebsd-multimedia@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org > Hello .. tsia. Upgraded to 2.2.6 today, built a new kernel with pcm0 and > controller pnp0, finds GUS PnP okay, but cat somefile.au > /dev/audio1 > gives static. Is there something I missed? The way i configure the CODEC on the GUS (mode 1) seems to generate incorrect behaviour with mu-law. I cannot tell if it is a bug in the codec (it emulates a CS423x, and the latter work fine with my configuration) or my fault -- in mode 3, i have reports that mu-law works fine. I thought I fixed the problem by setting the card in 8-but unsigned and doing the conversion in software -- not a real fix since you have only 8-bit dynamic range instead of 13, but better than nothing... I will check and fix it in the next days. The OPTI931 has a similar problem (sort of, since there it only appears in full duplex operation -- probably the ulaw<->linear section is shared between the capture and playback section). If you want to try it, look at what is done in ad1848.c -- mss_format(): probably the line if (d->bd_id == MD_OPTI931) { should be changed to if (d->bd_id == MD_OPTI931 || d->bd_id == MD_GUSPNP) { and that should suffice. cheers luigi To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-multimedia" in the body of the message From owner-freebsd-multimedia Mon May 11 02:36:02 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id CAA12016 for freebsd-multimedia-outgoing; Mon, 11 May 1998 02:36:02 -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 CAA11968 for ; Mon, 11 May 1998 02:35:52 -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 LAA00707 for multimedia@freebsd.org; Mon, 11 May 1998 11:41:47 +0200 (MEST) (envelope-from kuku) Date: Mon, 11 May 1998 11:41:47 +0200 (MEST) From: Christoph Kukulies Message-Id: <199805110941.LAA00707@gilberto.physik.RWTH-Aachen.DE> To: multimedia@FreeBSD.ORG Subject: editing AVI files Sender: owner-freebsd-multimedia@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Does anyone know of a tools that allows for editing .AVI files? Such as deleting copying/pasting single frames? -- 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 Mon May 11 11:14:33 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id LAA22572 for freebsd-multimedia-outgoing; Mon, 11 May 1998 11:14:33 -0700 (PDT) (envelope-from owner-freebsd-multimedia@FreeBSD.ORG) Received: from gdi.uoregon.edu (gdi.uoregon.edu [128.223.170.30]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id LAA22567 for ; Mon, 11 May 1998 11:14:32 -0700 (PDT) (envelope-from dwhite@gdi.uoregon.edu) Received: from localhost (dwhite@localhost) by gdi.uoregon.edu (8.8.8/8.8.8) with SMTP id LAA01193; Mon, 11 May 1998 11:14:26 -0700 (PDT) (envelope-from dwhite@gdi.uoregon.edu) Date: Mon, 11 May 1998 11:14:26 -0700 (PDT) From: Doug White Reply-To: Doug White To: Luigi Rizzo cc: multimedia@FreeBSD.ORG Subject: Re: GusPNP + 2.2.6 = static In-Reply-To: <199805110628.IAA17323@labinfo.iet.unipi.it> 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 Mon, 11 May 1998, Luigi Rizzo wrote: > If you want to try it, look at what is done in ad1848.c -- mss_format(): > probably the line > > if (d->bd_id == MD_OPTI931) { > > should be changed to > > if (d->bd_id == MD_OPTI931 || d->bd_id == MD_GUSPNP) { > > and that should suffice. Okay, I'll take a look at that. Thanks! 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 Mon May 11 14:33:08 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id OAA24930 for freebsd-multimedia-outgoing; Mon, 11 May 1998 14:33:08 -0700 (PDT) (envelope-from owner-freebsd-multimedia@FreeBSD.ORG) Received: from deka.eltex.spb.ru ([195.19.195.93]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id OAA24912 for ; Mon, 11 May 1998 14:33:00 -0700 (PDT) (envelope-from root@eltex.spb.ru) Received: from localhost (root@localhost) by deka.eltex.spb.ru (8.8.8/8.8.8) with SMTP id AAA03967 for ; Tue, 12 May 1998 00:15:57 GMT (envelope-from root@eltex.spb.ru) Date: Tue, 12 May 1998 00:15:56 +0000 (GMT) From: deka To: multimedia@FreeBSD.ORG Subject: Yamaha OPL3 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 Gentlemen, Does anybody tries to work with Yamaha OPL3 clone boards such as Yamaha-719, Yamaha-718 etc. in native mode? I mean than not FM yet, but PCM also. Yamaha-719 clones are very popular in Russia due to low cost, but no one of my friends has no experience with this cards uder FreeBSD. --- Antuan Avdioukhine deka@eltex.spb.ru --- To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-multimedia" in the body of the message From owner-freebsd-multimedia Mon May 11 16:27:02 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id QAA17016 for freebsd-multimedia-outgoing; Mon, 11 May 1998 16:27:02 -0700 (PDT) (envelope-from owner-freebsd-multimedia@FreeBSD.ORG) Received: from mail.atipa.com (altrox.atipa.com [208.128.22.34]) by hub.freebsd.org (8.8.8/8.8.8) with SMTP id QAA17003 for ; Mon, 11 May 1998 16:26:54 -0700 (PDT) (envelope-from freebsd@atipa.com) Received: (qmail 15459 invoked by uid 1017); 11 May 1998 22:24:13 -0000 Date: Mon, 11 May 1998 16:24:13 -0600 (MDT) From: Atipa To: deka cc: multimedia@FreeBSD.ORG Subject: Re: Yamaha OPL3 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 Works w/ pcm driver here. Kevin On Tue, 12 May 1998, deka wrote: > Gentlemen, > Does anybody tries to work with Yamaha OPL3 clone boards such as > Yamaha-719, Yamaha-718 etc. in native mode? I mean than not FM yet, but > PCM also. Yamaha-719 clones are very popular in Russia due to low cost, > but no one of my friends has no experience with this cards uder FreeBSD. > > > --- > Antuan Avdioukhine > deka@eltex.spb.ru > --- > > > To Unsubscribe: send mail to majordomo@FreeBSD.org > with "unsubscribe freebsd-multimedia" in the body of the message > To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-multimedia" in the body of the message From owner-freebsd-multimedia Mon May 11 19:59:25 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id TAA15794 for freebsd-multimedia-outgoing; Mon, 11 May 1998 19:59:25 -0700 (PDT) (envelope-from owner-freebsd-multimedia@FreeBSD.ORG) Received: from ds9.users.dreamhaven.org (qmailr@dt092n29.san.rr.com [204.210.48.41]) by hub.freebsd.org (8.8.8/8.8.8) with SMTP id TAA15789 for ; Mon, 11 May 1998 19:59:23 -0700 (PDT) (envelope-from data@dreamhaven.org) Received: (qmail 4791 invoked by uid 1010); 12 May 1998 02:59:25 -0000 Date: Mon, 11 May 1998 19:59:25 -0700 (PDT) From: Bryce Newall X-Sender: data@ds9.users.dreamhaven.org To: multimedia@FreeBSD.ORG Subject: SoundBlaster 16 question (fwd) 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 Greetings, At the risk of duplicating myself, I'm going to forward a message I sent out to this list a few days ago. Somehow, I didn't properly subscribe myself, and I never saw any responses, save 1 private one. When I subscribed to the multimedia list again, Majordomo didn't tell me I was already subscribed, so... *shrug*. Anyway, following is the original message I sent out. I will follow it up with a reply to a reply I received, after this one... ---------- Forwarded message ---------- Date: Thu, 7 May 1998 18:50:32 -0700 (PDT) From: Bryce Newall To: FreeBSD Questions List Subject: SoundBlaster 16 question Greetings! I recently got around to adding support to my kernel for my SoundBlaster 16 card. This is one of the older cards, non-PnP, everything jumper-set. It's set on IRQ 10, DMA1, 16-bit DMA 3, address 220h... everything is the default except for the IRQ (the default is 7). The kernel recognizes it on bootup: sb0 at 0x220 irq 10 drq 1 on isa sb0: sbxvi0 at 0x0 drq 5 on isa sbxvi0: sbmidi0 at 0x330 on isa opl0 at 0x388 on isa opl0: I also used the MAKEDEV script to create a devide node snd0, which in turn created /dev/audio0 (and /dev/audio as a symlink to audio0). The problem is that whenever I try to use the sound device, it tells me it's busy. Doesn't matter whether I'm a normal user, or root... the same thing happens: [2]root@ds9:/root # cat ~data/kh_theme.wav > /dev/audio /dev/audio: Device busy. Nothing is using the device; I even tried a full shut down and reboot, just to make sure. I checked around the handbook and FAQ, but couldn't find anything to help me out. Anyone have any ideas as to what might be wrong, or if I missed something, and how I can correct it? Thanks in advance! ********************************************************************** * Bryce Newall * Email: data@dreamhaven.org * * WWW: http://home.dreamhaven.org/~data * * "Stop smirking, Number 1." -- J.L. Picard * * "I'm a doctor, not a doorstop!" -- EMH Program, ST:FC * ********************************************************************** To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-multimedia" in the body of the message From owner-freebsd-multimedia Mon May 11 20:00:13 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id UAA15939 for freebsd-multimedia-outgoing; Mon, 11 May 1998 20:00:13 -0700 (PDT) (envelope-from owner-freebsd-multimedia@FreeBSD.ORG) Received: from ds9.users.dreamhaven.org (qmailr@dt092n29.san.rr.com [204.210.48.41]) by hub.freebsd.org (8.8.8/8.8.8) with SMTP id UAA15926 for ; Mon, 11 May 1998 20:00:08 -0700 (PDT) (envelope-from data@dreamhaven.org) Received: (qmail 4812 invoked by uid 1010); 12 May 1998 03:00:11 -0000 Date: Mon, 11 May 1998 20:00:11 -0700 (PDT) From: Bryce Newall X-Sender: data@ds9.users.dreamhaven.org To: multimedia@FreeBSD.ORG Subject: Re: SoundBlaster 16 question (fwd) 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 Here's my reply to a reply from someone else on the list. I hope someone can help me out! :) ---------- Forwarded message ---------- Date: Fri, 8 May 1998 15:20:01 -0700 (PDT) From: Bryce Newall To: multimedia@freebsd.org Subject: Re: SoundBlaster 16 question On Fri, 8 May 1998, Doug White wrote: > Relaying to -multimedia. Ahh, thanks... didn't know that list existed. :) > Do `cat /dev/sndstat' and post the output. [25]data@ds9:/home/data % cat /dev/sndstat VoxWare Sound Driver:3.0-beta-950506 (Sun Feb 5 14:38:12 EST 1995 freebsd-hacker s@freefall.cdrom.com) Config options: ffffffff Installed drivers: Type 1: OPL-2/OPL-3 FM Type 2: SoundBlaster Type 6: SoundBlaster16 Type 7: SB16 MIDI Card config: SoundBlaster at 0x220 irq 10 drq 1 SoundBlaster16 at 0x0 irq 65535 drq 5 SB16 MIDI at 0x330 irq 65535 drq 4294967295 OPL-2/OPL-3 FM at 0x388 irq 65535 drq 4294967295 Audio devices: 0: SoundBlaster 16 4.5 Synth devices: 0: Yamaha OPL-3 Midi devices: 0: SoundBlaster 16 Midi Timers: 0: System Timer Mixers: 0: SoundBlaster > You shouldn't have to symlink audio to audio0, makedev should DTRT. DTRT? I'm not familiar with that acronym... however, the audio0 symlink *was* made automatically; I didn't have to do it myself. ********************************************************************** * Bryce Newall * Email: data@dreamhaven.org * * WWW: http://home.dreamhaven.org/~data * * "Stop smirking, Number 1." -- J.L. Picard * * "I'm a doctor, not a doorstop!" -- EMH Program, ST:FC * ********************************************************************** To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-multimedia" in the body of the message From owner-freebsd-multimedia Mon May 11 22:11:36 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id WAA04111 for freebsd-multimedia-outgoing; Mon, 11 May 1998 22:11:36 -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 WAA04099 for ; Mon, 11 May 1998 22:11:33 -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 FAA18846; Tue, 12 May 1998 05:39:30 +0200 From: Luigi Rizzo Message-Id: <199805120339.FAA18846@labinfo.iet.unipi.it> Subject: Re: Yamaha OPL3 To: root@eltex.spb.ru (deka) Date: Tue, 12 May 1998 05:39:29 +0200 (MET DST) Cc: multimedia@FreeBSD.ORG In-Reply-To: from "deka" at May 12, 98 00:15:37 am X-Mailer: ELM [version 2.4 PL23] Content-Type: text Sender: owner-freebsd-multimedia@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org > Gentlemen, > Does anybody tries to work with Yamaha OPL3 clone boards such as > Yamaha-719, Yamaha-718 etc. in native mode? I mean than not FM yet, but > PCM also. Yamaha-719 clones are very popular in Russia due to low cost, > but no one of my friends has no experience with this cards uder FreeBSD. all the above cards are supported (the audio i/o, not the synth device) by the "pcm" driver (stock in 2.2.6 and above, or available from my web page http://www.iet.unipi.it/~luigi/FreeBSD.html for 2.2.1 and above cheers luigi > > --- > Antuan Avdioukhine > deka@eltex.spb.ru > --- > > > To Unsubscribe: send mail to majordomo@FreeBSD.org > with "unsubscribe freebsd-multimedia" in the body of the message > To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-multimedia" in the body of the message From owner-freebsd-multimedia Tue May 12 11:35:09 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id LAA27720 for freebsd-multimedia-outgoing; Tue, 12 May 1998 11:35:09 -0700 (PDT) (envelope-from owner-freebsd-multimedia@FreeBSD.ORG) Received: from gdi.uoregon.edu (gdi.uoregon.edu [128.223.170.30]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id LAA27680 for ; Tue, 12 May 1998 11:34:57 -0700 (PDT) (envelope-from dwhite@gdi.uoregon.edu) Received: from localhost (dwhite@localhost) by gdi.uoregon.edu (8.8.8/8.8.8) with SMTP id LAA03278; Tue, 12 May 1998 11:34:56 -0700 (PDT) (envelope-from dwhite@gdi.uoregon.edu) Date: Tue, 12 May 1998 11:34:56 -0700 (PDT) From: Doug White Reply-To: Doug White To: Bryce Newall cc: multimedia@FreeBSD.ORG Subject: Re: SoundBlaster 16 question (fwd) 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 On Mon, 11 May 1998, Bryce Newall wrote: > On Fri, 8 May 1998, Doug White wrote: I'll pick up where I left off :) > Card config: > SoundBlaster at 0x220 irq 10 drq 1 > SoundBlaster16 at 0x0 irq 65535 drq 5 > SB16 MIDI at 0x330 irq 65535 drq 4294967295 > OPL-2/OPL-3 FM at 0x388 irq 65535 drq 4294967295 Looks good there. What are the permissions on audio0? On my system it's 666 (but that's evil). 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 Tue May 12 13:16:17 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id NAA16185 for freebsd-multimedia-outgoing; Tue, 12 May 1998 13:16:17 -0700 (PDT) (envelope-from owner-freebsd-multimedia@FreeBSD.ORG) Received: from ds9.users.dreamhaven.org (qmailr@dt092n29.san.rr.com [204.210.48.41]) by hub.freebsd.org (8.8.8/8.8.8) with SMTP id NAA16169 for ; Tue, 12 May 1998 13:16:12 -0700 (PDT) (envelope-from data@dreamhaven.org) Received: (qmail 10313 invoked by uid 1010); 12 May 1998 20:16:04 -0000 Date: Tue, 12 May 1998 13:16:04 -0700 (PDT) From: Bryce Newall X-Sender: data@ds9.users.dreamhaven.org To: multimedia@FreeBSD.ORG Subject: Re: SoundBlaster 16 question (fwd) 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 On Tue, 12 May 1998, Doug White wrote: > What are the permissions on audio0? On my system it's 666 (but that's > evil). Here's mine: [64]data@ds9:/home/data % ls /dev/audio0 crw-rw-rw- 1 root wheel 30, 4 May 5 16:50 /dev/audio0 It seems to be world writable... at least it's not giving me a "permission denied" error. ********************************************************************** * Bryce Newall * Email: data@dreamhaven.org * * WWW: http://home.dreamhaven.org/~data * * "Stop smirking, Number 1." -- J.L. Picard * * "I'm a doctor, not a doorstop!" -- EMH Program, ST:FC * ********************************************************************** To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-multimedia" in the body of the message From owner-freebsd-multimedia Tue May 12 22:37:48 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id WAA15134 for freebsd-multimedia-outgoing; Tue, 12 May 1998 22:37:48 -0700 (PDT) (envelope-from owner-freebsd-multimedia@FreeBSD.ORG) Received: from whistle.com (s205m131.whistle.com [207.76.205.131]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id WAA15127 for ; Tue, 12 May 1998 22:37:45 -0700 (PDT) (envelope-from archie@whistle.com) Received: (from smap@localhost) by whistle.com (8.7.5/8.6.12) id WAA13557 for ; Tue, 12 May 1998 22:37:17 -0700 (PDT) Received: from bubba.whistle.com(207.76.205.7) by whistle.com via smap (V1.3) id sma013553; Tue May 12 22:36:59 1998 Received: (from archie@localhost) by bubba.whistle.com (8.8.7/8.6.12) id WAA04505 for freebsd-multimedia@freebsd.org; Tue, 12 May 1998 22:36:59 -0700 (PDT) From: Archie Cobbs Message-Id: <199805130536.WAA04505@bubba.whistle.com> Subject: realaudio player To: freebsd-multimedia@FreeBSD.ORG Date: Tue, 12 May 1998 22:36:59 -0700 (PDT) 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 I'm sure this is an old question with a quick answer, but.. How do you get the realaudio player (supposedly compiled for FreeBSD) to work? I always get an error saying "error 50" and "you need to upgrade to a higher version".. but the only higher version available costs money .. :-) Some info... $ cat /dev/sndstat FreeBSD Audio Driver (980215) Mar 25 1998 20:08:36 Installed devices: pcm1: at 0x220 irq 5 dma 5:1 sequencer1: at 0x388 (not functional) $ raplayer -v RealAudio Player, Version 3.0 (FreeBSD 2.2.6-BETA i386) (c) 1995, 1996 Progressive Networks Inc. All Rights Reserved Thanks, -Archie ___________________________________________________________________________ Archie Cobbs * Whistle Communications, Inc. * http://www.whistle.com To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-multimedia" in the body of the message From owner-freebsd-multimedia Wed May 13 01:28:56 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id BAA10824 for freebsd-multimedia-outgoing; Wed, 13 May 1998 01:28:56 -0700 (PDT) (envelope-from owner-freebsd-multimedia@FreeBSD.ORG) Received: from couatl.uchicago.edu (couatl.uchicago.edu [128.135.21.64]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id BAA10816 for ; Wed, 13 May 1998 01:28:54 -0700 (PDT) (envelope-from sfarrell@couatl.uchicago.edu) Received: (from sfarrell@localhost) by couatl.uchicago.edu (8.8.8/8.8.8) id DAA09883; Wed, 13 May 1998 03:28:53 -0500 (CDT) (envelope-from sfarrell) To: Archie Cobbs Cc: freebsd-multimedia@FreeBSD.ORG Subject: Re: realaudio player References: <199805130536.WAA04505@bubba.whistle.com> From: sfarrell+lists@farrell.org Mime-Version: 1.0 (generated by tm-edit 7.108) Content-Type: text/plain; charset=US-ASCII Date: 13 May 1998 03:28:53 -0500 In-Reply-To: Archie Cobbs's message of "Tue, 12 May 1998 22:36:59 -0700 (PDT)" Message-ID: <87ogx2bmm2.fsf@couatl.uchicago.edu> Lines: 17 X-Mailer: Gnus v5.6.9/XEmacs 20.4 - "Emerald" Sender: owner-freebsd-multimedia@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Archie Cobbs writes: > I'm sure this is an old question with a quick answer, but.. > > How do you get the realaudio player (supposedly compiled for FreeBSD) > to work? I always get an error saying "error 50" and "you need to > upgrade to a higher version".. but the only higher version available > costs money .. :-) I use rvplayer 5.0 for linux under emulation. Works great. Free. Make sure to install the libs (e.g., /usr/local/lib/rvplayer) and have a script set the LD_LIBRARY_PATH on startup so it can find the codecs. -- Steve Farrell To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-multimedia" in the body of the message From owner-freebsd-multimedia Wed May 13 06:08:09 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id GAA24595 for freebsd-multimedia-outgoing; Wed, 13 May 1998 06:08:09 -0700 (PDT) (envelope-from owner-freebsd-multimedia@FreeBSD.ORG) Received: from ns1.yes.no (ns1.yes.no [195.119.24.10]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id GAA24586 for ; Wed, 13 May 1998 06:08:04 -0700 (PDT) (envelope-from eivind@bitbox.follo.net) Received: from bitbox.follo.net (bitbox.follo.net [194.198.43.36]) by ns1.yes.no (8.8.7/8.8.7) with ESMTP id NAA26392 for ; Wed, 13 May 1998 13:08:05 GMT Received: (from eivind@localhost) by bitbox.follo.net (8.8.8/8.8.6) id PAA09246; Wed, 13 May 1998 15:08:05 +0200 (MET DST) Message-ID: <19980513150804.23726@follo.net> Date: Wed, 13 May 1998 15:08:04 +0200 From: Eivind Eklund To: multimedia@FreeBSD.ORG Subject: [tg@FreeBSD.ORG: cvs commit: src/sys/i386/i386 trap.c src/sys/i386/ibcs2 ibcs2_sysvec.c src/sys/i386/linux linux_sysvec.c src/sys/kern imgact_elf.c init_sysvec.c src/sys/sys sysent.h] Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii X-Mailer: Mutt 0.89.1i Sender: owner-freebsd-multimedia@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Would somebody please test x11amp (under Linux emulation) or whatever it was that people were having sigbus (signal 10) problems with? This fix all programs SIGBUSing under Linux emulation I knew about. (Which make Allegro Common Lisp work under FreeBSD - yipee!) ----- Forwarded message from Thomas Gellekum ----- From: Thomas Gellekum Date: Wed, 13 May 1998 00:04:55 -0700 (PDT) Message-Id: <199805130704.AAA01113@freefall.freebsd.org> To: cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG, cvs-sys@FreeBSD.ORG Subject: cvs commit: src/sys/i386/i386 trap.c src/sys/i386/ibcs2 ibcs2_sysvec.c src/sys/i386/linux linux_sysvec.c src/sys/kern imgact_elf.c init_sysvec.c src/sys/sys sysent.h tg 1998/05/13 00:04:54 PDT Modified files: (Branch: RELENG_2_2) sys/i386/i386 trap.c sys/i386/ibcs2 ibcs2_sysvec.c sys/i386/linux linux_sysvec.c sys/kern imgact_elf.c init_sysvec.c sys/sys sysent.h Log: MFC: Translate some traps to SIGSEGV instead of SIGBUS when running under Linux emulation. Revision Changes Path 1.83.2.8 +5 -1 src/sys/i386/i386/trap.c 1.4.2.1 +2 -1 src/sys/i386/ibcs2/ibcs2_sysvec.c 1.9.2.1 +23 -1 src/sys/i386/linux/linux_sysvec.c 1.12.2.2 +2 -1 src/sys/kern/imgact_elf.c 1.2.2.1 +2 -1 src/sys/kern/init_sysvec.c 1.11.2.1 +3 -1 src/sys/sys/sysent.h ----- End forwarded message ----- To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-multimedia" in the body of the message From owner-freebsd-multimedia Wed May 13 14:15:03 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id OAA17902 for freebsd-multimedia-outgoing; Wed, 13 May 1998 14:15:03 -0700 (PDT) (envelope-from owner-freebsd-multimedia@FreeBSD.ORG) Received: from alpo.whistle.com (alpo.whistle.com [207.76.204.38]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id OAA17892 for ; Wed, 13 May 1998 14:15:01 -0700 (PDT) (envelope-from ambrisko@whistle.com) Received: (from daemon@localhost) by alpo.whistle.com (8.8.5/8.8.5) id OAA03853; Wed, 13 May 1998 14:12:54 -0700 (PDT) Received: from crab.whistle.com(207.76.205.112), claiming to be "whistle.com" via SMTP by alpo.whistle.com, id smtpd003849; Wed May 13 21:12:46 1998 Received: (from ambrisko@localhost) by whistle.com (8.8.8/8.8.7) id OAA29365; Wed, 13 May 1998 14:08:47 -0700 (PDT) (envelope-from ambrisko) From: Doug Ambrisko Message-Id: <199805132108.OAA29365@whistle.com> Subject: Re: realaudio player In-Reply-To: <199805130536.WAA04505@bubba.whistle.com> from Archie Cobbs at "May 12, 98 10:36:59 pm" To: archie@whistle.com (Archie Cobbs) Date: Wed, 13 May 1998 14:08:46 -0700 (PDT) Cc: freebsd-multimedia@FreeBSD.ORG X-Mailer: ELM [version 2.4ME+ PL29 (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 Archie Cobbs writes: | I'm sure this is an old question with a quick answer, but.. | | How do you get the realaudio player (supposedly compiled for FreeBSD) | to work? I always get an error saying "error 50" and "you need to | upgrade to a higher version".. but the only higher version available | costs money .. :-) Use the Linux version 5.0 player and enjoy video as well. [if you strol by I can show you ...] Doug A. To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-multimedia" in the body of the message From owner-freebsd-multimedia Wed May 13 14:27:31 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id OAA20170 for freebsd-multimedia-outgoing; Wed, 13 May 1998 14:27:31 -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 OAA20165; Wed, 13 May 1998 14:27:30 -0700 (PDT) (envelope-from toasty@home.dragondata.com) Received: (from toasty@localhost) by home.dragondata.com (8.8.8/8.8.5) id QAA05861; Wed, 13 May 1998 16:27:31 -0500 (CDT) From: Kevin Day Message-Id: <199805132127.QAA05861@home.dragondata.com> Subject: ANNOUNCE: 3Dfx Glide port beta test To: freebsd-hardware@FreeBSD.ORG, freebsd-multimedia@FreeBSD.ORG Date: Wed, 13 May 1998 16:27:31 -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 I've just signed a license to distribute a FreeBSD native port of Glide(3DFx's library for their Voodoo cards). A port of the 3Dfx glide library will be available within 2-3 weeks for beta testing. If there is anyone interested in beta testing this (preferably any 3dfx developers who already have have a development kit), or anyone with a voodoo or voodoo2 card who can just run a quick test, please e-mail me. Include your e-mail, what kind of card(s) you have, and what kind of help you can provide. :) A binary only port of the library will be available within 1-2 weeks after beta testing is complete. Thanks, Kevin Day DragonData To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-multimedia" in the body of the message From owner-freebsd-multimedia Wed May 13 15:00:56 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id PAA26542 for freebsd-multimedia-outgoing; Wed, 13 May 1998 15:00:56 -0700 (PDT) (envelope-from owner-freebsd-multimedia@FreeBSD.ORG) Received: from mole.slip.net (mole.slip.net [207.171.193.16]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id PAA26531 for ; Wed, 13 May 1998 15:00:47 -0700 (PDT) (envelope-from dnelson@slip.net) Received: from slip-3.slip.net ([207.171.193.17] helo=slip-3) by mole.slip.net with smtp (Exim 1.90 #1) for multimedia@freebsd.org id 0yZjZv-0001vp-00; Wed, 13 May 1998 15:00:47 -0700 Date: Wed, 13 May 1998 15:00:46 -0700 (PDT) From: Dru Nelson X-Sender: dnelson@slip-3 To: multimedia@FreeBSD.ORG Subject: BT848 and VBI data 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 Hi, Amancio mentioned that some people on this list have already hacked the driver for freebsd to get VBI data. I am _not_ on the list, so please reply CC: to me directly. If I don't hear anything, I'll probably be creating a hacked up brooktree or meteor driver so I can ioctl and get just vbi. I've looked at what the linux bttv driver can do and it is neat, but it would require a lot of work to get to that state (one driver for video, tuner, and vbi data). Thanks for your time, Dru Nelson Redwood City, California To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-multimedia" in the body of the message From owner-freebsd-multimedia Wed May 13 15:22:05 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id PAA01111 for freebsd-multimedia-outgoing; Wed, 13 May 1998 15:22:05 -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 PAA01021; Wed, 13 May 1998 15:21:58 -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 PAA17597; Wed, 13 May 1998 15:21:42 -0700 (PDT) (envelope-from hasty@rah.star-gate.com) Message-Id: <199805132221.PAA17597@rah.star-gate.com> To: Kevin Day cc: freebsd-hardware@FreeBSD.ORG, freebsd-multimedia@FreeBSD.ORG, hasty@rah.star-gate.com Subject: Re: ANNOUNCE: 3Dfx Glide port beta test In-reply-to: Your message of "Wed, 13 May 1998 16:27:31 CDT." <199805132127.QAA05861@home.dragondata.com> MIME-Version: 1.0 Content-Type: text/plain; charset="us-ascii" Content-ID: <17594.895098101.1@rah.star-gate.com> Date: Wed, 13 May 1998 15:21:42 -0700 From: Amancio Hasty Sender: owner-freebsd-multimedia@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Kevin you are our hero!! I am more than happy to check out your library . I will give me an excuse to not yank the card out for it is the only card on my system without native FreeBSD support. Cheers, Amancio To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-multimedia" in the body of the message From owner-freebsd-multimedia Wed May 13 15:38:54 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id PAA04790 for freebsd-multimedia-outgoing; Wed, 13 May 1998 15:38:54 -0700 (PDT) (envelope-from owner-freebsd-multimedia@FreeBSD.ORG) Received: (from msh@localhost) by hub.freebsd.org (8.8.8/8.8.8) id PAA04779 for freebsd-multimedia@freebsd.org; Wed, 13 May 1998 15:38:50 -0700 (PDT) (envelope-from msh) From: Mark Hittinger Message-Id: <199805132238.PAA04779@hub.freebsd.org> Subject: re: BT848 and VBI data To: freebsd-multimedia@FreeBSD.ORG Date: Wed, 13 May 1998 15:38:50 -0700 (PDT) X-Mailer: ELM [version 2.4ME+ PL32 (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 I am also very interested in an ability to pull raw vbi data out of a video feed (say cspan) and pass the raw data to a user level program for decoding and/or processing :-) Has anyone addressed that capability yet? How much CPU power does it appear to take if you have ? :-) Later Mark Hittinger msh@freebsd.org bugs@freebsd.netcom.com To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-multimedia" in the body of the message From owner-freebsd-multimedia Wed May 13 19:14:06 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id TAA11367 for freebsd-multimedia-outgoing; Wed, 13 May 1998 19:14:06 -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 TAA11230; Wed, 13 May 1998 19:13:59 -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 CAA22433; Thu, 14 May 1998 02:42:42 +0200 From: Luigi Rizzo Message-Id: <199805140042.CAA22433@labinfo.iet.unipi.it> Subject: Re: BT848 and VBI data To: msh@FreeBSD.ORG (Mark Hittinger) Date: Thu, 14 May 1998 02:42:42 +0200 (MET DST) Cc: freebsd-multimedia@FreeBSD.ORG In-Reply-To: <199805132238.PAA04779@hub.freebsd.org> from "Mark Hittinger" at May 13, 98 03:38:31 pm X-Mailer: ELM [version 2.4 PL23] Content-Type: text Sender: owner-freebsd-multimedia@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org > I am also very interested in an ability to pull raw vbi data out of a video > feed (say cspan) and pass the raw data to a user level program for decoding > and/or processing :-) > > Has anyone addressed that capability yet? How much CPU power does it > appear to take if you have ? :-) i did that, and depending on how you do it it takes a lot of CPU to do the resampling of video data. See the old stuff at http://www.iet.unipi.it/~luigi/FreeBSD.html -- references to teletext luigi -----------------------------+-------------------------------------- Luigi Rizzo | Dip. di Ingegneria dell'Informazione email: luigi@iet.unipi.it | Universita' di Pisa tel: +39-50-568533 | via Diotisalvi 2, 56126 PISA (Italy) fax: +39-50-568522 | http://www.iet.unipi.it/~luigi/ _____________________________|______________________________________ To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-multimedia" in the body of the message From owner-freebsd-multimedia Wed May 13 23:54:57 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id XAA21126 for freebsd-multimedia-outgoing; Wed, 13 May 1998 23:54:57 -0700 (PDT) (envelope-from owner-freebsd-multimedia@FreeBSD.ORG) Received: from top.worldcontrol.com (surf52.cruzers.com [205.215.232.52]) by hub.freebsd.org (8.8.8/8.8.8) with SMTP id XAA21117 for ; Wed, 13 May 1998 23:54:54 -0700 (PDT) (envelope-from brian@worldcontrol.com) From: brian@worldcontrol.com Received: (qmail 3568 invoked by uid 100); 14 May 1998 06:55:55 -0000 Message-ID: <19980513235552.A3554@top.worldcontrol.com> Date: Wed, 13 May 1998 23:55:52 -0700 To: freebsd-multimedia@FreeBSD.ORG Subject: fxtv 0.46 capturing or displaying fields reversed Mail-Followup-To: freebsd-multimedia@freebsd.org Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii X-Mailer: Mutt 0.91i Sender: owner-freebsd-multimedia@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org fxtv 0.46 using the bktr driver from -current is capturing the images with the even and odd fields reversed. Or perhaps it is simply displaying and storing them reversed. I can fix this myself pretty easily. However, I presume there is some right way. -- Brian Litzinger To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-multimedia" in the body of the message From owner-freebsd-multimedia Thu May 14 00:04:38 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id AAA22638 for freebsd-multimedia-outgoing; Thu, 14 May 1998 00:04:38 -0700 (PDT) (envelope-from owner-freebsd-multimedia@FreeBSD.ORG) Received: from sos.freebsd.dk ([212.242.40.180]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id AAA22632 for ; Thu, 14 May 1998 00:04:33 -0700 (PDT) (envelope-from sos@sos.freebsd.dk) Received: (from sos@localhost) by sos.freebsd.dk (8.8.8/8.8.8) id JAA04234; Thu, 14 May 1998 09:04:16 +0200 (CEST) (envelope-from sos) Message-Id: <199805140704.JAA04234@sos.freebsd.dk> Subject: Re: fxtv 0.46 capturing or displaying fields reversed In-Reply-To: <19980513235552.A3554@top.worldcontrol.com> from "brian@worldcontrol.com" at "May 13, 98 11:55:52 pm" To: brian@worldcontrol.com Date: Thu, 14 May 1998 09:04:16 +0200 (CEST) Cc: freebsd-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 brian@worldcontrol.com who wrote: > fxtv 0.46 using the bktr driver from -current is capturing the images > with the even and odd fields reversed. > > Or perhaps it is simply displaying and storing them reversed. > > I can fix this myself pretty easily. However, I presume there > is some right way. Ahh, so I'm not the only one seeing this :) I reported this some weeks back, but nobody seemed to be seeing besides me.... Do you have a patch allready ?? -=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=- 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 Thu May 14 01:39:29 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id BAA09337 for freebsd-multimedia-outgoing; Thu, 14 May 1998 01:39:29 -0700 (PDT) (envelope-from owner-freebsd-multimedia@FreeBSD.ORG) Received: from terra.stack.nl (terra.stack.nl [131.155.140.128]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id BAA09329 for ; Thu, 14 May 1998 01:39:26 -0700 (PDT) (envelope-from erikb@stack.nl) Received: from h (annex1s21.urc.tue.nl [131.155.12.31]) by terra.stack.nl (8.8.7) with SMTP id KAA07792 for ; Thu, 14 May 1998 10:39:25 +0200 (MET DST) Message-Id: X-Sender: erikb@131.155.140.135 X-Mailer: QUALCOMM Windows Eudora Pro Version 4.0 Date: Thu, 14 May 1998 02:28:20 +0200 To: multimedia@FreeBSD.ORG From: E Subject: MBONE Mime-Version: 1.0 Content-Type: text/plain; charset="us-ascii" Sender: owner-freebsd-multimedia@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org If you guys are really interested in the latest news on FreeBSD with Mbone tools just mail to multimedia@freeBSD.org. Best Regards, Amancio To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-multimedia" in the body of the message From owner-freebsd-multimedia Thu May 14 09:36:53 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id JAA01834 for freebsd-multimedia-outgoing; Thu, 14 May 1998 09:36:53 -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 JAA01825 for ; Thu, 14 May 1998 09:36:48 -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 JAA02674; Thu, 14 May 1998 09:36:44 -0700 (PDT) (envelope-from hasty@rah.star-gate.com) Message-Id: <199805141636.JAA02674@rah.star-gate.com> X-Mailer: exmh version 2.0.2 2/24/98 To: E cc: multimedia@FreeBSD.ORG Subject: Re: MBONE In-reply-to: Your message of "Thu, 14 May 1998 02:28:20 +0200." Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Date: Thu, 14 May 1998 09:36:44 -0700 From: Amancio Hasty Sender: owner-freebsd-multimedia@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org I am sorry it appears that your e-mail is incomplete for it almost implies that you have a question. Amancio > > If you guys are really interested in the latest news on > FreeBSD with Mbone tools just mail to multimedia@freeBSD.org. > > > Best Regards, > Amancio > > > > To Unsubscribe: send mail to majordomo@FreeBSD.org > with "unsubscribe freebsd-multimedia" in the body of the message To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-multimedia" in the body of the message From owner-freebsd-multimedia Thu May 14 09:37:43 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id JAA01967 for freebsd-multimedia-outgoing; Thu, 14 May 1998 09:37: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 JAA01960 for ; Thu, 14 May 1998 09:37:40 -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 JAA02700; Thu, 14 May 1998 09:37:36 -0700 (PDT) (envelope-from hasty@rah.star-gate.com) Message-Id: <199805141637.JAA02700@rah.star-gate.com> X-Mailer: exmh version 2.0.2 2/24/98 To: brian@worldcontrol.com cc: freebsd-multimedia@FreeBSD.ORG Subject: Re: fxtv 0.46 capturing or displaying fields reversed In-reply-to: Your message of "Wed, 13 May 1998 23:55:52 PDT." <19980513235552.A3554@top.worldcontrol.com> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Date: Thu, 14 May 1998 09:37:36 -0700 From: Amancio Hasty Sender: owner-freebsd-multimedia@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Hi Brian, What do you think the fix should be? Tnks, Amancio To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-multimedia" in the body of the message From owner-freebsd-multimedia Thu May 14 14:01:42 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id OAA11047 for freebsd-multimedia-outgoing; Thu, 14 May 1998 14:01:42 -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 OAA10932; Thu, 14 May 1998 14:01:24 -0700 (PDT) (envelope-from rhh@ct.picker.com) Received: from ct.picker.com by whqvax.picker.com with SMTP; Thu, 14 May 1998 17:00:53 -0400 (EDT) Received: from elmer.ct.picker.com by ct.picker.com (4.1/SMI-4.1) id AA24242; Thu, 14 May 98 17:00:54 EDT Received: by elmer.ct.picker.com (SMI-8.6/SMI-SVR4) id RAA18571; Thu, 14 May 1998 17:00:38 -0400 Message-Id: <19980514170037.A18554@ct.picker.com> Date: Thu, 14 May 1998 17:00:37 -0400 From: Randall Hopper To: Kevin Day , freebsd-hardware@FreeBSD.ORG, freebsd-multimedia@FreeBSD.ORG Subject: Re: ANNOUNCE: 3Dfx Glide port beta test Mail-Followup-To: Kevin Day , freebsd-hardware@FreeBSD.ORG, freebsd-multimedia@FreeBSD.ORG References: <199805132127.QAA05861@home.dragondata.com> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii X-Mailer: Mutt 0.91.1i In-Reply-To: <199805132127.QAA05861@home.dragondata.com>; from Kevin Day on Wed, May 13, 1998 at 04:27:31PM -0500 Sender: owner-freebsd-multimedia@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Kevin Day: |I've just signed a license to distribute a FreeBSD native port of |Glide(3DFx's library for their Voodoo cards). Hey, Cool! Thanks! |A port of the 3Dfx glide library will be available within 2-3 weeks for beta |testing. If there is anyone interested in beta testing this (preferably any |3dfx developers who already have have a development kit), or anyone with a |voodoo or voodoo2 card who can just run a quick test, please e-mail me. |Include your e-mail, what kind of card(s) you have, and what kind of help |you can provide. :) Have Canopus Pure 3D (4Meg, Voodoo Graphics) here to test on. Happy to run any tests you need. Haven't signed any 3dfx NDAs, so I could help only with binary dists, and any source/exec that'll build/link to your libglide.so. (Was going to just reply personally, but I figured we need to tack a few articles on this thread to increase the likelyhood of 3dfx-equipped FreeBSD folks seeing it in their mail folders. I almost missed it myself :-) Randall To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-multimedia" in the body of the message From owner-freebsd-multimedia Thu May 14 14:17:01 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id OAA13820 for freebsd-multimedia-outgoing; Thu, 14 May 1998 14:17:01 -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 OAA13813; Thu, 14 May 1998 14:16:57 -0700 (PDT) (envelope-from rhh@ct.picker.com) Received: from ct.picker.com by whqvax.picker.com with SMTP; Thu, 14 May 1998 17:15:48 -0400 (EDT) Received: from elmer.ct.picker.com by ct.picker.com (4.1/SMI-4.1) id AA24682; Thu, 14 May 98 17:15:49 EDT Received: by elmer.ct.picker.com (SMI-8.6/SMI-SVR4) id RAA18601; Thu, 14 May 1998 17:15:31 -0400 Message-Id: <19980514171530.B18554@ct.picker.com> Date: Thu, 14 May 1998 17:15:30 -0400 From: Randall Hopper To: Dru Nelson , multimedia@FreeBSD.ORG, Mark Hittinger , freebsd-multimedia@FreeBSD.ORG, Luigi Rizzo Subject: Re: BT848 and VBI data Mail-Followup-To: Dru Nelson , multimedia@FreeBSD.ORG, Mark Hittinger , freebsd-multimedia@FreeBSD.ORG, Luigi Rizzo References: Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii X-Mailer: Mutt 0.91.1i In-Reply-To: ; from Dru Nelson on Wed, May 13, 1998 at 03:00:46PM -0700 Sender: owner-freebsd-multimedia@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Dru Nelson: | If I don't hear anything, I'll probably be creating a hacked | up brooktree or meteor driver so I can ioctl and get just vbi. Mark Hittinger: |I am also very interested in an ability to pull raw vbi data out of a video |feed (say cspan) and pass the raw data to a user level program for decoding |and/or processing :-) Luigi Rizzo: |i did that, and depending on how you do it it takes a lot of CPU to do |the resampling of video data. See the old stuff at |http://www.iet.unipi.it/~luigi/FreeBSD.html -- references to teletext I'd also be interested in this if it can be implemented generically. That is, so the data stream (Intercast, Teletext, etc.) can be attributed so apps can pick out the pieces (chunks) they understand and want, and can easily skip over and toss the rest. Something like a simple RIFF stream. Probably want a circular buffer for this, which the client can poll at its leasure. Need some file desc event to signal when the head has overwritten the tail so the client knows when to reset its reading state. I don't know anything about either the Intercast of Teletext streams, and what about those streams is public or proprietary, so I can't really comment more than that. Randall To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-multimedia" in the body of the message From owner-freebsd-multimedia Thu May 14 14:59:31 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id OAA23070 for freebsd-multimedia-outgoing; Thu, 14 May 1998 14:59:31 -0700 (PDT) (envelope-from owner-freebsd-multimedia@FreeBSD.ORG) Received: from gatekeeper.itribe.net (gatekeeper.itribe.net [209.49.144.254]) by hub.freebsd.org (8.8.8/8.8.8) with SMTP id OAA23065; Thu, 14 May 1998 14:59:29 -0700 (PDT) (envelope-from jamie@itribe.net) Message-Id: <199805142156.RAA24992@gatekeeper.itribe.net> Received: forwarded by SMTP 1.5.2. Date: Thu, 14 May 1998 17:56:14 -0400 (EDT) From: Jamie Bowden To: Randall Hopper cc: Kevin Day , freebsd-hardware@FreeBSD.ORG, freebsd-multimedia@FreeBSD.ORG Subject: Re: ANNOUNCE: 3Dfx Glide port beta test In-Reply-To: <19980514170037.A18554@ct.picker.com> 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, 14 May 1998, Randall Hopper wrote: > Kevin Day: > |I've just signed a license to distribute a FreeBSD native port of > |Glide(3DFx's library for their Voodoo cards). > > Hey, Cool! Thanks! > > |A port of the 3Dfx glide library will be available within 2-3 weeks for beta > |testing. If there is anyone interested in beta testing this (preferably any > |3dfx developers who already have have a development kit), or anyone with a > |voodoo or voodoo2 card who can just run a quick test, please e-mail me. > |Include your e-mail, what kind of card(s) you have, and what kind of help > |you can provide. :) > > Have Canopus Pure 3D (4Meg, Voodoo Graphics) here to test on. Happy to run > any tests you need. Haven't signed any 3dfx NDAs, so I could help only > with binary dists, and any source/exec that'll build/link to your > libglide.so. > > (Was going to just reply personally, but I figured we need to tack a few > articles on this thread to increase the likelyhood of 3dfx-equipped FreeBSD > folks seeing it in their mail folders. I almost missed it myself :-) I am planning on ordering the canopus voodoo2 based card next week, and will be happy to run some tests once I have it. I am running 2.2.5, so I may not qualify. Jamie Bowden Systems Administrator, iTRiBE.net To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-multimedia" in the body of the message From owner-freebsd-multimedia Thu May 14 15:56:15 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id PAA01758 for freebsd-multimedia-outgoing; Thu, 14 May 1998 15:56:15 -0700 (PDT) (envelope-from owner-freebsd-multimedia@FreeBSD.ORG) Received: from morden.dyn.ml.org (dynip248.efn.org [204.214.97.248]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id PAA01697; Thu, 14 May 1998 15:56:06 -0700 (PDT) (envelope-from cjb@morden.dyn.ml.org) Received: (from cjb@localhost) by morden.dyn.ml.org (8.8.8/8.8.7) id PAA14967; Thu, 14 May 1998 15:59:25 -0700 (PDT) (envelope-from cjb) Message-ID: <19980514155924.33896@efn.org> Date: Thu, 14 May 1998 15:59:24 -0700 From: Chris Brunner To: freebsd-multimedia@FreeBSD.ORG, freebsd-hardware@FreeBSD.ORG Subject: Re: ANNOUNCE: 3Dfx Glide port beta test Reply-To: Chris Brunner References: <199805132127.QAA05861@home.dragondata.com> <19980514170037.A18554@ct.picker.com> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii X-Mailer: Mutt 0.89i In-Reply-To: <19980514170037.A18554@ct.picker.com> Sender: owner-freebsd-multimedia@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Yeah, I've got a Diamond Monster 3D (Voodoo 1) and I'd love to help try out some programs for it, since I've been looking forward to native FreeBSD support for this thing since I got it. In message <19980514170037.A18554@ct.picker.com>, Randall Hopper writes: > Date: Thu, 14 May 1998 17:00:37 -0400 > From: Randall Hopper > To: Kevin Day , freebsd-hardware@FreeBSD.ORG, > freebsd-multimedia@FreeBSD.ORG > Subject: Re: ANNOUNCE: 3Dfx Glide port beta test > > Kevin Day: > |I've just signed a license to distribute a FreeBSD native port of > |Glide(3DFx's library for their Voodoo cards). > > Hey, Cool! Thanks! > > |A port of the 3Dfx glide library will be available within 2-3 weeks for beta > |testing. If there is anyone interested in beta testing this (preferably any > |3dfx developers who already have have a development kit), or anyone with a > |voodoo or voodoo2 card who can just run a quick test, please e-mail me. > |Include your e-mail, what kind of card(s) you have, and what kind of help > |you can provide. :) > > Have Canopus Pure 3D (4Meg, Voodoo Graphics) here to test on. Happy to run > any tests you need. Haven't signed any 3dfx NDAs, so I could help only > with binary dists, and any source/exec that'll build/link to your > libglide.so. > > (Was going to just reply personally, but I figured we need to tack a few > articles on this thread to increase the likelyhood of 3dfx-equipped FreeBSD > folks seeing it in their mail folders. I almost missed it myself :-) -- -= Chris Brunner -= cjb@efn.org ********** FORTUNE ********* Penguin Trivia #46: Animals who are not penguins can only wish they were. -- Chicago Reader 10/15/82 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-multimedia" in the body of the message From owner-freebsd-multimedia Thu May 14 17:43:49 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id RAA22152 for freebsd-multimedia-outgoing; Thu, 14 May 1998 17:43:49 -0700 (PDT) (envelope-from owner-freebsd-multimedia@FreeBSD.ORG) Received: from top.worldcontrol.com (mg131-197.ricochet.net [204.179.131.197]) by hub.freebsd.org (8.8.8/8.8.8) with SMTP id RAA22139 for ; Thu, 14 May 1998 17:43:43 -0700 (PDT) (envelope-from brian@worldcontrol.com) From: brian@worldcontrol.com Received: (qmail 4787 invoked by uid 100); 15 May 1998 00:44:27 -0000 Message-ID: <19980514174424.A4739@top.worldcontrol.com> Date: Thu, 14 May 1998 17:44:24 -0700 To: freebsd-multimedia@FreeBSD.ORG Subject: Re: fxtv 0.46 capturing or displaying fields reversed Mail-Followup-To: freebsd-multimedia@freebsd.org References: <19980513235552.A3554@top.worldcontrol.com> <199805141637.JAA02700@rah.star-gate.com> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii X-Mailer: Mutt 0.91i In-Reply-To: <199805141637.JAA02700@rah.star-gate.com>; from Amancio Hasty on Thu, May 14, 1998 at 09:37:36AM -0700 Sender: owner-freebsd-multimedia@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org [regarding fxtv capturing or display fields reversed] On %M 0, Amancio Hasty wrote: > What do you think the fix should be? It depends on what the problem is. The first step will be to determine where the error is. Is it captured incorrectly? Or is it being displayed/stored incorrectly? I'm running without Shared Memory and without DirectV. Presumably if the chipset is simply capturing them reversed, when we should be able to adjust a register someplace to fix it. I never saw this behavior until I started using fxtv. Previously I had been using my own command line utility that I adapted from a Meteor/OMT P1S version I had written. I'll poke about and see if I can find anything obvious. While I am pretty familiar with Phillips capture chips, I am not familiar at all with the BT 848. Is there an online datasheet for it someplace? -- Brian Litzinger To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-multimedia" in the body of the message From owner-freebsd-multimedia Thu May 14 20:33:57 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id UAA24199 for freebsd-multimedia-outgoing; Thu, 14 May 1998 20:33:57 -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 UAA24182 for ; Thu, 14 May 1998 20:33:52 -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 UAA04703; Thu, 14 May 1998 20:33:51 -0700 (PDT) (envelope-from hasty@rah.star-gate.com) Message-Id: <199805150333.UAA04703@rah.star-gate.com> X-Mailer: exmh version 2.0.2 2/24/98 To: brian@worldcontrol.com cc: freebsd-multimedia@FreeBSD.ORG Subject: Re: fxtv 0.46 capturing or displaying fields reversed In-reply-to: Your message of "Thu, 14 May 1998 17:44:24 PDT." <19980514174424.A4739@top.worldcontrol.com> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Date: Thu, 14 May 1998 20:33:51 -0700 From: Amancio Hasty Sender: owner-freebsd-multimedia@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Just check out : http://www.freebsd.org/~ahasty/Bt848.html I don't think that fxtv is displaying the information incorrectly for it deals in terms of frames or display region on the card (Bt848 blasts the video stream directly to the VGA'S Video Frame Buffer). 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 Thu May 14 22:43:17 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id WAA14502 for freebsd-multimedia-outgoing; Thu, 14 May 1998 22:43:17 -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 WAA14473; Thu, 14 May 1998 22:43:13 -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 FAA01857; Fri, 15 May 1998 05:58:27 +0200 From: Luigi Rizzo Message-Id: <199805150358.FAA01857@labinfo.iet.unipi.it> Subject: Re: BT848 and VBI data To: rhh@ct.picker.com (Randall Hopper) Date: Fri, 15 May 1998 05:58:26 +0200 (MET DST) Cc: dnelson@slip.net, multimedia@FreeBSD.ORG, msh@FreeBSD.ORG, freebsd-multimedia@FreeBSD.ORG In-Reply-To: <19980514171530.B18554@ct.picker.com> from "Randall Hopper" at May 14, 98 05:15:11 pm X-Mailer: ELM [version 2.4 PL23] Content-Type: text Sender: owner-freebsd-multimedia@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org > I'd also be interested in this if it can be implemented generically. That > is, so the data stream (Intercast, Teletext, etc.) can be attributed so > apps can pick out the pieces (chunks) they understand and want, and can > easily skip over and toss the rest. Something like a simple RIFF stream. the frame grabber has no clue on what is inthe VBI lines, so it is the app that must do everything (it makes no sense to put decoding procedures into the kernel). > Probably want a circular buffer for this, which the client can poll at its > leasure. Need some file desc event to signal when the head has overwritten > the tail so the client knows when to reset its reading state. the meteor device driver does this very well. although, if you have a reasonably fast machine, and because VBI info is in a small portion of each field, you can do a data transfer as soon as you get the 'field complete' interrupt and you have about 12-15ms to fetch the data. What i did long ago was to define a new video format (both in the meteor and the bt848 drivers if i remember well) where i got raw samples of the Y component of the video, from each *field*, not interleaved, and from the very first lines (say 2..32) of each field. You have to disable the chroma filters because data carry high-frequency components. Then i just used the read() interface (i had to implement it on the bt848, but now it is probably there) to collect a number of blocks of data (like say 5-10sec.), and then did the decoding in software (losing data in the meantime, but who cares given the nature of the application...) The processing involved sample-rate conversion, a FIR filter to sync with the start of the stream, and then packing bits together and doing high-level decoding. > I don't know anything about either the Intercast of Teletext streams, and > what about those streams is public or proprietary, so I can't really > comment more than that. teletext is an ITU/CCITT standard but it is also documented in a variety of publicly available documents, even online. Intercast format appears to be proprietary. At www.intercast.com they advertise a hardware developer's kit, but price is unknown and the phone number is (503) 274-7240 -- if someone there wants to call and find out how much they ask for this, it would be interesting to know. BTW from the list showing what is in the documentation, there is no reference to the data format. They do have a "VBI decoder" which i suspect is a binary/library only, and is the same thing you get for free with your hauppauge card . The fact that they claim a Pentium-90 is a minimum requirement, and a Pentium2 is recommended, makes me think that the decoding is done in software without any hardware support. A bad thing, considering that had they embedded intercast data in the teletext format (which might well be what they do, and what others also do routinely since the 80's here in Europe) they'd have a nice, low speed stream of bytes from the teletext decoder (a $5 chip) that even a lowly 486 would be able to decode with minimal CPU usage. cheers luigi -----------------------------+-------------------------------------- Luigi Rizzo | Dip. di Ingegneria dell'Informazione email: luigi@iet.unipi.it | Universita' di Pisa tel: +39-50-568533 | via Diotisalvi 2, 56126 PISA (Italy) fax: +39-50-568522 | http://www.iet.unipi.it/~luigi/ _____________________________|______________________________________ To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-multimedia" in the body of the message From owner-freebsd-multimedia Thu May 14 22:47:19 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id WAA14981 for freebsd-multimedia-outgoing; Thu, 14 May 1998 22:47:19 -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 WAA14975 for ; Thu, 14 May 1998 22:47:17 -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 GAA01875; Fri, 15 May 1998 06:01:34 +0200 From: Luigi Rizzo Message-Id: <199805150401.GAA01875@labinfo.iet.unipi.it> Subject: Re: fxtv 0.46 capturing or displaying fields reversed To: hasty@rah.star-gate.com (Amancio Hasty) Date: Fri, 15 May 1998 06:01:33 +0200 (MET DST) Cc: brian@worldcontrol.com, freebsd-multimedia@FreeBSD.ORG In-Reply-To: <199805150333.UAA04703@rah.star-gate.com> from "Amancio Hasty" at May 14, 98 08:33:32 pm X-Mailer: ELM [version 2.4 PL23] Content-Type: text Sender: owner-freebsd-multimedia@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org > Just check out : > > http://www.freebsd.org/~ahasty/Bt848.html > > > I don't think that fxtv is displaying the information incorrectly for it > deals in terms of frames or display region on the card (Bt848 blasts > the video stream directly to the VGA'S Video Frame Buffer). maybe it is related to the particular video card which uses some strange arrangement of the video memory ? In this case switching from direct PCI transfer to xlib-based transfers (suffices to partially obscure the fxtv window, as randall told me) the thing should disappear (and we'd know what to fix). cheers luigi -----------------------------+-------------------------------------- Luigi Rizzo | Dip. di Ingegneria dell'Informazione email: luigi@iet.unipi.it | Universita' di Pisa tel: +39-50-568533 | via Diotisalvi 2, 56126 PISA (Italy) fax: +39-50-568522 | http://www.iet.unipi.it/~luigi/ _____________________________|______________________________________ To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-multimedia" in the body of the message From owner-freebsd-multimedia Thu May 14 22:57:01 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id WAA16060 for freebsd-multimedia-outgoing; Thu, 14 May 1998 22:57:01 -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 WAA16054; Thu, 14 May 1998 22:56:57 -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 GAA01895; Fri, 15 May 1998 06:12:12 +0200 From: Luigi Rizzo Message-Id: <199805150412.GAA01895@labinfo.iet.unipi.it> Subject: Re: BT848 and VBI data To: rhh@ct.picker.com (Randall Hopper) Date: Fri, 15 May 1998 06:12:12 +0200 (MET DST) Cc: dnelson@slip.net, multimedia@FreeBSD.ORG, msh@FreeBSD.ORG, freebsd-multimedia@FreeBSD.ORG In-Reply-To: <19980514171530.B18554@ct.picker.com> from "Randall Hopper" at May 14, 98 05:15:11 pm X-Mailer: ELM [version 2.4 PL23] Content-Type: text Sender: owner-freebsd-multimedia@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Since i just looked at it... www.norpak.ca has more info on the topic of VBI and intercast, and reading their pages makes me believe that intercast info might be embedded in the standard teletext format, so that decoding can be at least partially supported by the hardware. A description of the FEC algorithms used is not available from the norpak pages, but it might be the same one documented in some internet draft discussing the transmission of IP-over-VBI which should be available at www.ietf.org I'd be glad to do some experiments on this but i don't think i am reached by any intercast signal at the moment... cheers luigi -----------------------------+-------------------------------------- Luigi Rizzo | Dip. di Ingegneria dell'Informazione email: luigi@iet.unipi.it | Universita' di Pisa tel: +39-50-568533 | via Diotisalvi 2, 56126 PISA (Italy) fax: +39-50-568522 | http://www.iet.unipi.it/~luigi/ _____________________________|______________________________________ To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-multimedia" in the body of the message From owner-freebsd-multimedia Fri May 15 00:03:42 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id AAA24482 for freebsd-multimedia-outgoing; Fri, 15 May 1998 00:03:42 -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 AAA24477 for ; Fri, 15 May 1998 00:03:39 -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 AAA05494; Fri, 15 May 1998 00:03:17 -0700 (PDT) (envelope-from hasty@rah.star-gate.com) Message-Id: <199805150703.AAA05494@rah.star-gate.com> X-Mailer: exmh version 2.0.2 2/24/98 To: Luigi Rizzo cc: brian@worldcontrol.com, freebsd-multimedia@FreeBSD.ORG Subject: Re: fxtv 0.46 capturing or displaying fields reversed In-reply-to: Your message of "Fri, 15 May 1998 06:01:33 +0200." <199805150401.GAA01875@labinfo.iet.unipi.it> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Date: Fri, 15 May 1998 00:03:17 -0700 From: Amancio Hasty Sender: owner-freebsd-multimedia@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Hmm... Good point. Brian whats your vga and what is your resolution / color depth? Cheers, Amancio > > Just check out : > > > > http://www.freebsd.org/~ahasty/Bt848.html > > > > > > I don't think that fxtv is displaying the information incorrectly for it > > deals in terms of frames or display region on the card (Bt848 blasts > > the video stream directly to the VGA'S Video Frame Buffer). > > maybe it is related to the particular video card which uses some > strange arrangement of the video memory ? In this case switching from > direct PCI transfer to xlib-based transfers (suffices to partially > obscure the fxtv window, as randall told me) the thing should disappear > (and we'd know what to fix). > > cheers > luigi > -----------------------------+-------------------------------------- > Luigi Rizzo | Dip. di Ingegneria dell'Informazione > email: luigi@iet.unipi.it | Universita' di Pisa > tel: +39-50-568533 | via Diotisalvi 2, 56126 PISA (Italy) > fax: +39-50-568522 | http://www.iet.unipi.it/~luigi/ > _____________________________|______________________________________ To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-multimedia" in the body of the message From owner-freebsd-multimedia Fri May 15 00:11:13 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id AAA25695 for freebsd-multimedia-outgoing; Fri, 15 May 1998 00:11:13 -0700 (PDT) (envelope-from owner-freebsd-multimedia@FreeBSD.ORG) Received: from sos.freebsd.dk ([212.242.40.180]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id AAA25668 for ; Fri, 15 May 1998 00:11:09 -0700 (PDT) (envelope-from sos@sos.freebsd.dk) Received: (from sos@localhost) by sos.freebsd.dk (8.8.8/8.8.8) id JAA01129; Fri, 15 May 1998 09:10:40 +0200 (CEST) (envelope-from sos) Message-Id: <199805150710.JAA01129@sos.freebsd.dk> Subject: Re: fxtv 0.46 capturing or displaying fields reversed In-Reply-To: <199805150401.GAA01875@labinfo.iet.unipi.it> from Luigi Rizzo at "May 15, 98 06:01:33 am" To: luigi@labinfo.iet.unipi.it (Luigi Rizzo) Date: Fri, 15 May 1998 09:10:39 +0200 (CEST) Cc: hasty@rah.star-gate.com, brian@worldcontrol.com, freebsd-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 Luigi Rizzo who wrote: > > Just check out : > > > > http://www.freebsd.org/~ahasty/Bt848.html > > > > > > I don't think that fxtv is displaying the information incorrectly for it > > deals in terms of frames or display region on the card (Bt848 blasts > > the video stream directly to the VGA'S Video Frame Buffer). > > maybe it is related to the particular video card which uses some > strange arrangement of the video memory ? In this case switching from > direct PCI transfer to xlib-based transfers (suffices to partially > obscure the fxtv window, as randall told me) the thing should disappear > (and we'd know what to fix). Hmm, you can only see the problem in fullsize mode, in xlib-based mode there is not enough lines to show the problem... -=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=- 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 Fri May 15 01:40:30 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id BAA08605 for freebsd-multimedia-outgoing; Fri, 15 May 1998 01:40:30 -0700 (PDT) (envelope-from owner-freebsd-multimedia@FreeBSD.ORG) Received: from top.worldcontrol.com (surf52.cruzers.com [205.215.232.52]) by hub.freebsd.org (8.8.8/8.8.8) with SMTP id BAA08511 for ; Fri, 15 May 1998 01:40:05 -0700 (PDT) (envelope-from brian@worldcontrol.com) From: brian@worldcontrol.com Received: (qmail 5409 invoked by uid 100); 15 May 1998 08:40:15 -0000 Message-ID: <19980515014012.A5367@top.worldcontrol.com> Date: Fri, 15 May 1998 01:40:12 -0700 To: freebsd-multimedia@FreeBSD.ORG Subject: Re: fxtv 0.46 capturing or displaying fields reversed Mail-Followup-To: freebsd-multimedia@freebsd.org References: <199805150401.GAA01875@labinfo.iet.unipi.it> <199805150703.AAA05494@rah.star-gate.com> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii X-Mailer: Mutt 0.91i In-Reply-To: <199805150703.AAA05494@rah.star-gate.com>; from Amancio Hasty on Fri, May 15, 1998 at 12:03:17AM -0700 Sender: owner-freebsd-multimedia@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org On %M 0, Amancio Hasty wrote: > Hmm... Good point. > > Brian whats your vga and what is your resolution / color depth? I'm running on my laptop. 16 bit color depth, 1024 x 768, XFree86 3.3.2, C&T 65550 chipset. However, my laptop does not have the BT848 based capture card plugged into it. That is plugged into one of my development systems (a 2xPP150). I was running fxtv on the development system and watching the video on my laptop. I presume that would be invoking "x-lib" mode of operation. -- Brian Litzinger To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-multimedia" in the body of the message From owner-freebsd-multimedia Fri May 15 02:12:56 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id CAA13591 for freebsd-multimedia-outgoing; Fri, 15 May 1998 02:12:56 -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 CAA13319; Fri, 15 May 1998 02:11:34 -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 JAA02189; Fri, 15 May 1998 09:26:29 +0200 From: Luigi Rizzo Message-Id: <199805150726.JAA02189@labinfo.iet.unipi.it> Subject: Re: fxtv 0.46 capturing or displaying fields reversed To: sos@FreeBSD.ORG Date: Fri, 15 May 1998 09:26:29 +0200 (MET DST) Cc: hasty@rah.star-gate.com, brian@worldcontrol.com, freebsd-multimedia@FreeBSD.ORG In-Reply-To: <199805150710.JAA01129@sos.freebsd.dk> from "Søren Schmidt" at May 15, 98 09:10:20 am X-Mailer: ELM [version 2.4 PL23] Content-Type: text Sender: owner-freebsd-multimedia@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org > > maybe it is related to the particular video card which uses some > > strange arrangement of the video memory ? In this case switching from > > direct PCI transfer to xlib-based transfers (suffices to partially ... > Hmm, you can only see the problem in fullsize mode, in xlib-based > mode there is not enough lines to show the problem... this is new to me... i can fire fxtv, bring it to full size, and then partially obscure the window, and it works... unless you are having the missing interrupt problems that i was having as well... (in my case, in full screen, i only got one field, the other one remained black, and this was easy to spot because channel numbers were not deleted from the missing lines...) luigi To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-multimedia" in the body of the message From owner-freebsd-multimedia Fri May 15 02:59:56 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id CAA20519 for freebsd-multimedia-outgoing; Fri, 15 May 1998 02:59:56 -0700 (PDT) (envelope-from owner-freebsd-multimedia@FreeBSD.ORG) Received: from sos.freebsd.dk ([212.242.40.180]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id CAA20510; Fri, 15 May 1998 02:59:53 -0700 (PDT) (envelope-from sos@sos.freebsd.dk) Received: (from sos@localhost) by sos.freebsd.dk (8.8.8/8.8.8) id LAA01398; Fri, 15 May 1998 11:59:31 +0200 (CEST) (envelope-from sos) Message-Id: <199805150959.LAA01398@sos.freebsd.dk> Subject: Re: fxtv 0.46 capturing or displaying fields reversed In-Reply-To: <199805150726.JAA02189@labinfo.iet.unipi.it> from Luigi Rizzo at "May 15, 98 09:26:29 am" To: luigi@labinfo.iet.unipi.it (Luigi Rizzo) Date: Fri, 15 May 1998 11:59:31 +0200 (CEST) Cc: sos@FreeBSD.ORG, hasty@rah.star-gate.com, brian@worldcontrol.com, freebsd-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 Luigi Rizzo who wrote: > > > maybe it is related to the particular video card which uses some > > > strange arrangement of the video memory ? In this case switching from > > > direct PCI transfer to xlib-based transfers (suffices to partially > ... > > Hmm, you can only see the problem in fullsize mode, in xlib-based > > mode there is not enough lines to show the problem... > > this is new to me... i can fire fxtv, bring it to full size, and then > partially obscure the window, and it works... If I obscure the fullsize window fxtv core dumps immediately and has always done so, I havn't had time to investigate why yet. -=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=- 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 Fri May 15 03:54:12 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id DAA27928 for freebsd-multimedia-outgoing; Fri, 15 May 1998 03:54:12 -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 DAA27916; Fri, 15 May 1998 03:54:10 -0700 (PDT) (envelope-from rhh@ct.picker.com) Received: from ct.picker.com by whqvax.picker.com with SMTP; Fri, 15 May 1998 6:52:51 -0400 (EDT) Received: from elmer.ct.picker.com by ct.picker.com (4.1/SMI-4.1) id AA09521; Fri, 15 May 98 06:52:52 EDT Received: by elmer.ct.picker.com (SMI-8.6/SMI-SVR4) id GAA25128; Fri, 15 May 1998 06:52:31 -0400 Message-Id: <19980515065224.A23116@ct.picker.com> Date: Fri, 15 May 1998 06:52:24 -0400 From: Randall Hopper To: Luigi Rizzo Cc: dnelson@slip.net, multimedia@FreeBSD.ORG, msh@FreeBSD.ORG, freebsd-multimedia@FreeBSD.ORG Subject: Re: BT848 and VBI data Mail-Followup-To: Luigi Rizzo , dnelson@slip.net, multimedia@FreeBSD.ORG, msh@FreeBSD.ORG, freebsd-multimedia@FreeBSD.ORG References: <19980514171530.B18554@ct.picker.com> <199805150358.FAA01857@labinfo.iet.unipi.it> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii X-Mailer: Mutt 0.91.1i In-Reply-To: <199805150358.FAA01857@labinfo.iet.unipi.it>; from Luigi Rizzo on Fri, May 15, 1998 at 05:58:26AM +0200 Sender: owner-freebsd-multimedia@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Luigi Rizzo: |> I'd also be interested in this if it can be implemented generically. That |> is, so the data stream (Intercast, Teletext, etc.) can be attributed so |> apps can pick out the pieces (chunks) they understand and want, and can |> easily skip over and toss the rest. Something like a simple RIFF stream. | |the frame grabber has no clue on what is inthe VBI lines, so it is the |app that must do everything (it makes no sense to put decoding |procedures into the kernel). "Decoding" is not what I said. Attributing is what I had in mind. I certainly agree we don't want the kernel doing CPU intensive jobs like resampling images. However, if it's not inherent in the structure of Teletext/Intercast datastream, it would be helpful if the kernel could, as its grabbing data: AAAAAAAAAAAAAAAAABBBBBBBBBBBBBBBBBBCCCCCCCCCCCCCCCCCC attribute the chunks so apps can skip what they don't understand: AAAAAAAAAAAAAAAAABBBB BBBBBBBBBBBBBB CCCCCCCCCCCCCCC At the very least, apps need to know when there is a break in the stream so they can resynchronize. This could happen, for example, because the driver was acquiring VBI data faster than the app was reading, and the driver had to overwrite the head in the ring buffer past where the app was reading. |teletext is an ITU/CCITT standard but it is also documented in a variety |of publicly available documents, even online. | |Intercast format appears to be proprietary. At www.intercast.com they Interesting. |The fact that they claim a Pentium-90 is a minimum requirement, and a |Pentium2 is recommended, makes me think that the decoding is done |in software without any hardware support. A bad thing, considering |that had they embedded intercast data in the teletext format (which |might well be what they do, and what others also do routinely since the |80's here in Europe) they'd have a nice, low speed stream of bytes |from the teletext decoder (a $5 chip) that even a lowly 486 would |be able to decode with minimal CPU usage. Yeah, that would be nice. The top level stream encoding scheme should all be a public standard at least, in a perfect world. Randall To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-multimedia" in the body of the message From owner-freebsd-multimedia Fri May 15 04:03:36 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id EAA29290 for freebsd-multimedia-outgoing; Fri, 15 May 1998 04:03:36 -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 EAA28479 for ; Fri, 15 May 1998 04:00:07 -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 LAA02406; Fri, 15 May 1998 11:13:52 +0200 From: Luigi Rizzo Message-Id: <199805150913.LAA02406@labinfo.iet.unipi.it> Subject: Re: fxtv 0.46 capturing or displaying fields reversed To: brian@worldcontrol.com Date: Fri, 15 May 1998 11:13:52 +0200 (MET DST) Cc: freebsd-multimedia@FreeBSD.ORG In-Reply-To: <19980515014012.A5367@top.worldcontrol.com> from "brian@worldcontrol.com" at May 15, 98 01:39:53 am X-Mailer: ELM [version 2.4 PL23] Content-Type: text Sender: owner-freebsd-multimedia@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org > I'm running on my laptop. 16 bit color depth, 1024 x 768, XFree86 3.3.2, > C&T 65550 chipset. > > However, my laptop does not have the BT848 based capture card plugged > into it. That is plugged into one of my development systems > (a 2xPP150). I was running fxtv on the development system and > watching the video on my laptop. I presume that would be invoking > "x-lib" mode of operation. right... still this is a data point -- the problem so seems related to the capture, not diplay. luigi To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-multimedia" in the body of the message From owner-freebsd-multimedia Fri May 15 07:53:42 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id HAA06991 for freebsd-multimedia-outgoing; Fri, 15 May 1998 07:53:42 -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 HAA06924; Fri, 15 May 1998 07:52:55 -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 PAA18890 Fri, 15 May 1998 15:52:27 +0100 (BST) Message-ID: <355C56A9.6A2B5CE0@cs.strath.ac.uk> Date: Fri, 15 May 1998 15:52:25 +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: ahasty@FreeBSD.ORG, freebsd-multimedia@FreeBSD.ORG, conrads@neosoft.com, freebsd-questions@FreeBSD.ORG, l.rizzo@iet.unipi.it Subject: AWE64 - awe0 not detected, but sbmidi0 and snd0 are detected 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 have a a PnP AWE 64 Value (the 512k version without the SPDIF port). The AWE driver is not detecting the card. However the wave and midi devices are detected and playing wave files works fine. My dmesg (pruned) has the following Probing for PnP devices: CSN 1 Vendor ID: CTL00e4 [0xe4008c0e] Serial 0x1b05c6ac sb0 at 0x220 irq 5 drq 1 on isa snd0: sbxvi0 at ? drq 5 on isa snd0: sbmidi0 at 0x330 on isa snd0: awe0 at 0x620 on isa AWE32: not detected opl0 at 0x388 on isa snd0: Few things.... pnpinfo says the WaveTable is on 0x620. I noticed the Win95 driver uses 620 a20 and e20 and there was something in the linux FAQ about ensuring the PnP had picked up on a20 and e20. Should there be a /dev/awe0? I'm running FreeBSD 3.0-980311-SNAP in SMP mode. I have no other ISA devices. The rest are PCI cards. Kernel config (pruned) is controller pnp0 # add PnP controller snd0 device sb0 at isa? port 0x220 irq 5 conflicts drq 1 vector sbintr device sbxvi0 at isa? drq 5 device sbmidi0 at isa? port 0x330 device awe0 at isa? port 0x620 device opl0 at isa? port 0x388 pnpinfo (pruned) is Card assigned CSN #1 Vendor ID CTL00e4 (0xe4008c0e), Serial Number 0x1b05c6ac PnP Version 1.0, Vendor Version 16 Device Description: Creative SB AWE64 PnP Successfully got 69 resources, 3 logical fdevs -- card select # 0x0001 CSN CTL00e4 (0xe4008c0e), Serial Number 0x1b05c6ac Logical device #0 IO: 0x0220 0x0330 0x0388 0x0000 0x0000 0x0000 0x0000 0x0000 IRQ 5 0 DMA 1 5 IO range check 0x00 activate 0x01 Logical device #1 IO: 0x0200 0x0000 0x0000 0x0000 0x0000 0x0000 0x0000 0x0000 IRQ 0 0 DMA 4 4 IO range check 0x00 activate 0x01 Logical device #2 IO: 0x0620 0x0000 0x0000 0x0000 0x0000 0x0000 0x0000 0x0000 IRQ 0 0 DMA 4 4 IO range check 0x00 activate 0x01 Any ideas why the AWE device is not being detected. Help... Roger Hardiman University of Strathclyde Telepresence Group roger@cs.strath.ac.uk To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-multimedia" in the body of the message From owner-freebsd-multimedia Fri May 15 08:57:49 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id IAA15610 for freebsd-multimedia-outgoing; Fri, 15 May 1998 08:57:49 -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 IAA15587; Fri, 15 May 1998 08:57:35 -0700 (PDT) (envelope-from rhh@ct.picker.com) Received: from ct.picker.com by whqvax.picker.com with SMTP; Fri, 15 May 1998 11:57:07 -0400 (EDT) Received: from elmer.ct.picker.com by ct.picker.com (4.1/SMI-4.1) id AA18949; Fri, 15 May 98 11:57:08 EDT Received: by elmer.ct.picker.com (SMI-8.6/SMI-SVR4) id LAA04824; Fri, 15 May 1998 11:56:50 -0400 Message-Id: <19980515115649.A4808@ct.picker.com> Date: Fri, 15 May 1998 11:56:49 -0400 From: Randall Hopper To: Tim Bosse - Tech Support , freebsd-hardware@FreeBSD.ORG Cc: multimedia@FreeBSD.ORG Subject: Re: SoundBlaster AWE32 Mail-Followup-To: Tim Bosse - Tech Support , freebsd-hardware@FreeBSD.ORG, multimedia@freebsd.org References: <001f01bd7d0e$7a8fcae0$3de2bec6@taim.nauticom.net> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii X-Mailer: Mutt 0.91.1i In-Reply-To: <001f01bd7d0e$7a8fcae0$3de2bec6@taim.nauticom.net>; from Tim Bosse - Tech Support on Mon, May 11, 1998 at 02:56:11PM -0400 Sender: owner-freebsd-multimedia@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org I'm going to bet this in PnP. See the PnP tips at http://multiverse.com/~rhh/~awedrv. Randall Tim Bosse - Tech Support: |I am having a problem getting sb0. Here is what I get from dmesg, and |/dev/sndstat | |dmesg: |sb0 not found at 0x220 |opl0 at 0x388 on isa |opl0: | |/dev/sndstat: |VoxWare Sound Driver:3.0-beta-950506 (Sun Feb 5 14:38:12 EST 1995 |freebsd-hackers@freefall.cdrom.com) |Config options: ffffffff |Installed drivers: |Type 1: OPL-2/OPL-3 FM |Type 2: SoundBlaster |Card config: |(SoundBlaster at 0x220 irq 5 drq 1) |OPL-2/OPL-3 FM at 0x388 irq 65535 drq 4294967295 |Synth devices: |0: Yamaha OPL-3 | |I did a /dev/MAKEDEV snd0 again and tried switching the I/O address for sb0. |Nothing seems to help...any ideas? | |Tim Bosse |tfb@nauticom.net | | | |To Unsubscribe: send mail to majordomo@FreeBSD.org |with "unsubscribe freebsd-hardware" in the body of the message Randall To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-multimedia" in the body of the message From owner-freebsd-multimedia Fri May 15 09:00:16 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id JAA16171 for freebsd-multimedia-outgoing; Fri, 15 May 1998 09:00:16 -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 IAA15973; Fri, 15 May 1998 08:59:56 -0700 (PDT) (envelope-from rhh@ct.picker.com) Received: from ct.picker.com by whqvax.picker.com with SMTP; Fri, 15 May 1998 11:59:29 -0400 (EDT) Received: from elmer.ct.picker.com by ct.picker.com (4.1/SMI-4.1) id AA19006; Fri, 15 May 98 11:59:30 EDT Received: by elmer.ct.picker.com (SMI-8.6/SMI-SVR4) id LAA04833; Fri, 15 May 1998 11:59:08 -0400 Message-Id: <19980515115908.B4808@ct.picker.com> Date: Fri, 15 May 1998 11:59:08 -0400 From: Randall Hopper To: The Classiest Man Alive , freebsd-hardware@FreeBSD.ORG Cc: multimedia@FreeBSD.ORG Subject: Re: ANNOUNCE: 3Dfx Glide port beta test Mail-Followup-To: The Classiest Man Alive , freebsd-hardware@FreeBSD.ORG, multimedia@freebsd.org References: <199805132127.QAA05861@home.dragondata.com> <199805132127.QAA05861@home.dragondata.com> <19980514170037.A18554@ct.picker.com> <199805150242.WAA15339@zephyr.cybercom.net> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii X-Mailer: Mutt 0.91.1i In-Reply-To: <199805150242.WAA15339@zephyr.cybercom.net>; from The Classiest Man Alive on Thu, May 14, 1998 at 09:39:15PM -0400 Sender: owner-freebsd-multimedia@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org The Classiest Man Alive: |Randall Hopper: |>Have Canopus Pure 3D (4Meg, Voodoo Graphics) here to test on.... | |I thought the Canopus cards had 6 MB of RAM. :-/ Yep. 2Meg frame buffer. 4Meg texture. Though when I've seen folks talk about 3D boards, they usually just quote the texture. Randall To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-multimedia" in the body of the message From owner-freebsd-multimedia Fri May 15 09:23:35 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id JAA20621 for freebsd-multimedia-outgoing; Fri, 15 May 1998 09:23:35 -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 JAA20613; Fri, 15 May 1998 09:23:33 -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 JAA07699; Fri, 15 May 1998 09:23:28 -0700 (PDT) (envelope-from hasty@rah.star-gate.com) Message-Id: <199805151623.JAA07699@rah.star-gate.com> X-Mailer: exmh version 2.0.2 2/24/98 To: sos@FreeBSD.ORG cc: luigi@labinfo.iet.unipi.it (Luigi Rizzo), brian@worldcontrol.com, freebsd-multimedia@FreeBSD.ORG Subject: Re: fxtv 0.46 capturing or displaying fields reversed In-reply-to: Your message of "Fri, 15 May 1998 11:59:31 +0200." <199805150959.LAA01398@sos.freebsd.dk> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Date: Fri, 15 May 1998 09:23:28 -0700 From: Amancio Hasty Sender: owner-freebsd-multimedia@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org And you did apply the patch that Randall posted? Tnks, Amancio To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-multimedia" in the body of the message From owner-freebsd-multimedia Fri May 15 09:53:52 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id JAA27170 for freebsd-multimedia-outgoing; Fri, 15 May 1998 09:53:52 -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 JAA27147 for ; Fri, 15 May 1998 09:53:39 -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 JAA07812; Fri, 15 May 1998 09:53:36 -0700 (PDT) (envelope-from hasty@rah.star-gate.com) Message-Id: <199805151653.JAA07812@rah.star-gate.com> X-Mailer: exmh version 2.0.2 2/24/98 To: brian@worldcontrol.com cc: freebsd-multimedia@FreeBSD.ORG Subject: Re: fxtv 0.46 capturing or displaying fields reversed In-reply-to: Your message of "Fri, 15 May 1998 01:40:12 PDT." <19980515014012.A5367@top.worldcontrol.com> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Date: Fri, 15 May 1998 09:53:36 -0700 From: Amancio Hasty Sender: owner-freebsd-multimedia@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Hi Brian, We have a debugging printf in the bt848 driver. /* printf( " STATUS %x %x %x \n", dstatus, bktr_status, bt848->risc_count ); */ /* if risc was disabled re-start process again */ if ( !(bktr_status & BT848_INT_RISC_EN) || If you like you can enable it to determine what is the behavior of the chipset that combine with the bt848 databook will allow you to troubleshoot the problem. Cheers, Amancio To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-multimedia" in the body of the message From owner-freebsd-multimedia Fri May 15 10:03:30 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id KAA29661 for freebsd-multimedia-outgoing; Fri, 15 May 1998 10:03:30 -0700 (PDT) (envelope-from owner-freebsd-multimedia@FreeBSD.ORG) Received: from sos.freebsd.dk ([212.242.40.180]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id KAA29632; Fri, 15 May 1998 10:03:24 -0700 (PDT) (envelope-from sos@sos.freebsd.dk) Received: (from sos@localhost) by sos.freebsd.dk (8.8.8/8.8.8) id TAA18823; Fri, 15 May 1998 19:02:57 +0200 (CEST) (envelope-from sos) Message-Id: <199805151702.TAA18823@sos.freebsd.dk> Subject: Re: fxtv 0.46 capturing or displaying fields reversed In-Reply-To: <199805151623.JAA07699@rah.star-gate.com> from Amancio Hasty at "May 15, 98 09:23:28 am" To: hasty@rah.star-gate.com (Amancio Hasty) Date: Fri, 15 May 1998 19:02:57 +0200 (CEST) Cc: sos@FreeBSD.ORG, luigi@labinfo.iet.unipi.it, brian@worldcontrol.com, freebsd-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: > And you did apply the patch that Randall posted? Which patch is that ?? -=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=- 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 Fri May 15 10:07:53 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id KAA00788 for freebsd-multimedia-outgoing; Fri, 15 May 1998 10:07:53 -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 KAA00775; Fri, 15 May 1998 10:07: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 KAA07967; Fri, 15 May 1998 10:07:47 -0700 (PDT) (envelope-from hasty@rah.star-gate.com) Message-Id: <199805151707.KAA07967@rah.star-gate.com> X-Mailer: exmh version 2.0.2 2/24/98 To: sos@FreeBSD.ORG cc: luigi@labinfo.iet.unipi.it, brian@worldcontrol.com, freebsd-multimedia@FreeBSD.ORG, Randall Hopper Subject: Re: fxtv 0.46 capturing or displaying fields reversed In-reply-to: Your message of "Fri, 15 May 1998 19:02:57 +0200." <199805151702.TAA18823@sos.freebsd.dk> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Date: Fri, 15 May 1998 10:07:47 -0700 From: Amancio Hasty Sender: owner-freebsd-multimedia@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Just do a search on your mail box /folder , I have to run if you can't find it easily just e-mail me back and will try to get it for you. To Randall, When you get a chance can you generate a new tar ball with your patch? Tnks! Amancio To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-multimedia" in the body of the message From owner-freebsd-multimedia Fri May 15 10:21:52 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id KAA02609 for freebsd-multimedia-outgoing; Fri, 15 May 1998 10:21:52 -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 KAA02600; Fri, 15 May 1998 10:21:45 -0700 (PDT) (envelope-from rhh@ct.picker.com) Received: from ct.picker.com by whqvax.picker.com with SMTP; Fri, 15 May 1998 13:20:41 -0400 (EDT) Received: from elmer.ct.picker.com by ct.picker.com (4.1/SMI-4.1) id AA21716; Fri, 15 May 98 13:20:42 EDT Received: by elmer.ct.picker.com (SMI-8.6/SMI-SVR4) id NAA06709; Fri, 15 May 1998 13:20:23 -0400 Message-Id: <19980515132023.A6661@ct.picker.com> Date: Fri, 15 May 1998 13:20:23 -0400 From: Randall Hopper To: sos@FreeBSD.ORG, Amancio Hasty Cc: freebsd-multimedia@FreeBSD.ORG Subject: Re: fxtv 0.46 capturing or displaying fields reversed Mail-Followup-To: sos@FreeBSD.ORG, Amancio Hasty , freebsd-multimedia@freebsd.org References: <199805150726.JAA02189@labinfo.iet.unipi.it> <199805150959.LAA01398@sos.freebsd.dk> Mime-Version: 1.0 Content-Type: multipart/mixed; boundary=fdj2RfSjLxBAspz7 X-Mailer: Mutt 0.91.1i In-Reply-To: <199805150959.LAA01398@sos.freebsd.dk>; from Sren Schmidt on Fri, May 15, 1998 at 11:59:31AM +0200 Sender: owner-freebsd-multimedia@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org --fdj2RfSjLxBAspz7 Content-Type: text/plain; charset=us-ascii Sren Schmidt: |If I obscure the fullsize window fxtv core dumps immediately and |has always done so, I havn't had time to investigate why yet. Amancio Hasty: |Just do a search on your mail box /folder , I have to run if you can't |find it easily just e-mail me back and will try to get it for you. | |When you get a chance can you generate a new tar ball with your patch? Try this. May not fix your problem but it is "a" problem at least. Tomi (Vainio) and I are still trying to get to the bottom of his XImages bug. Some odd circumstance results in the stack getting trashed when while processing a new frame (but only when the window is near max size and of course only in XImages mode). If someone else that's seeing this wants to help, please try this (my last set of things to try for Tomi). First, uncomment the debug FLAGS in the Makefile and build a debug version of Fxtv 0.46: Recent msg to Tomi: |You know, I didn't take that "??" in the stack seriously enough. This |should say "... in TVSCREENNewFrameHdlr", not "0x6d000 in ??". I suspect |that somehow the stack is getting stomped in this function. | |Off-the-bat, I don't see where it'd be happening. | |If you're a developer, could you add a "signal(SIGUSR1, SIG_IGN);" to the |top of TVSCREENNewFrameHdlr(), recompile, set a breakpoint in tvscreen.c |right after the signal() call and run like this: | | tick:~/src/fxtv/work/fxtv-0.46(129)% gdb ./fxtv | (gdb) break tvscreen.c:### | (gdb) run -synchronous -disableDirectV -geometry 768x576 | |when the breakpoint triggers, alternate these commands until that ?? appears: | | (gdb) where | (gdb) step | |Alternatively, if there's sometime when I could log onto your workstation |over the weekend and that's ok with you, I could do this same thing |myself. Would allow me to print things out and sanity check program state |while I'm at it. Again, if somebody that's seeing this has time to let me on their box sometime this weekend, I can look into it myself. Randall --fdj2RfSjLxBAspz7 Content-Type: text/plain; charset=us-ascii Content-Disposition: attachment; filename="fxtv-0.46-stdximgFIX.patch" --- ORIG/Makefile Wed Nov 5 01:14:25 1997 +++ Makefile Wed May 6 20:36:19 1998 @@ -7,10 +7,10 @@ override CF_VERS = -DVERS_STR=\"0.46\" override INC = -I$(X11BASE)/include -I/usr/local/include override LD_INC = -L$(X11BASE)/lib -L/usr/local/lib -override CFLAGS = -O2 -m486 $(INC) $(CF_VERS) -#override CFLAGS = -g $(INC) $(CF_VERS) -override LDFLAGS = $(LD_INC) -#override LDFLAGS = -g $(LD_INC) +#override CFLAGS = -O2 -m486 $(INC) $(CF_VERS) +override CFLAGS = -g $(INC) $(CF_VERS) +#override LDFLAGS = $(LD_INC) +override LDFLAGS = -g $(LD_INC) override LIBS = -ltiff -lXaw3d -lXmu -lXt -lXpm -lXxf86dga \ -lXxf86vm -lSM -lICE -lXext -lX11 @@ -30,7 +30,7 @@ $(EXEC) : $(CSRCOBJ) $(CC) $(LDFLAGS) -o $@ $^ $(LIBS) - strip $(EXEC) +# strip $(EXEC) tv.o : tv.c app_rsrc.h --- ORIG/tvscreen.c Wed Nov 5 01:01:57 1997 +++ tvscreen.c Wed May 6 20:34:22 1998 @@ -2366,20 +2366,15 @@ image->is_shm = True; } else if ( c->xfer_mode == TV_TRANSFER_STD_IMAGE ) { - /* FIXME: Handle 3Bpp 24bpp */ - int bpp_adj = (v->depth+7)/8*8; - - if ( bpp_adj == 24 ) - bpp_adj = 32; - image->ximg = XCreateImage( TVDISPLAY, v->visual, v->depth, ZPixmap, 0, NULL, g->w, g->h, - bpp_adj, 0 ); + BitmapPad(TVDISPLAY), 0 ); if ( image->ximg == NULL ) { fprintf( stderr, "XCreateImage() failed\n" ); exit(1); } - image->ximg->data = malloc( g->w * g->h * (bpp_adj / 8) ); + image->ximg->data = malloc( image->ximg->bytes_per_line * + image->ximg->height ); if ( image->ximg->data == NULL ) TVUTILOutOfMemory(); image->is_shm = False; --fdj2RfSjLxBAspz7-- To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-multimedia" in the body of the message From owner-freebsd-multimedia Fri May 15 13:16:06 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id NAA26617 for freebsd-multimedia-outgoing; Fri, 15 May 1998 13:16:06 -0700 (PDT) (envelope-from owner-freebsd-multimedia@FreeBSD.ORG) Received: from as5200-port-254.no.neosoft.com (as5200-port-254.no.neosoft.com [206.27.167.254]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id NAA26488; Fri, 15 May 1998 13:16:01 -0700 (PDT) (envelope-from conrads@as5200-port-254.no.neosoft.com) Received: (from conrads@localhost) by as5200-port-254.no.neosoft.com (8.8.8/8.8.7) id PAA06734; Fri, 15 May 1998 15:16:15 -0500 (CDT) (envelope-from conrads) Message-ID: X-Mailer: XFMail 1.3 [p0] on FreeBSD X-Priority: 3 (Normal) Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: 8bit MIME-Version: 1.0 In-Reply-To: <355C56A9.6A2B5CE0@cs.strath.ac.uk> Date: Fri, 15 May 1998 15:16:14 -0500 (CDT) Reply-To: conrads@neosoft.com Organization: NeoSoft, Inc. From: Conrad Sabatier To: Roger Hardiman Subject: RE: AWE64 - awe0 not detected, but sbmidi0 and snd0 are detected Cc: l.rizzo@iet.unipi.it, freebsd-questions@FreeBSD.ORG, freebsd-multimedia@FreeBSD.ORG, ahasty@FreeBSD.ORG Sender: owner-freebsd-multimedia@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org On 15-May-98 Roger Hardiman wrote: > Hi, > I have a a PnP AWE 64 Value (the 512k version without the SPDIF port). > > The AWE driver is not detecting the card. However the wave and midi > devices are detected and playing wave files works fine. > > My dmesg (pruned) has the following > Probing for PnP devices: > CSN 1 Vendor ID: CTL00e4 [0xe4008c0e] Serial 0x1b05c6ac > sb0 at 0x220 irq 5 drq 1 on isa > snd0: > sbxvi0 at ? drq 5 on isa > snd0: > sbmidi0 at 0x330 on isa > snd0: > awe0 at 0x620 on isa > AWE32: not detected > opl0 at 0x388 on isa > snd0: > > Few things.... > pnpinfo says the WaveTable is on 0x620. I noticed the > Win95 driver uses 620 a20 and e20 and there was something in the > linux FAQ about ensuring the PnP had picked up on a20 and e20. That's right, you have to be sure to enable all three of the AWE ports in your PnP (boot) config. pnp 1 2 os enable port0 0x620 port1 0xa20 port2 0xe20 as well as, of course, the "main" device: pnp 1 0 os enable irq0 5 drq0 1 drq1 5 port0 0x220 port1 0x330 port2 0x388 > Should there be a /dev/awe0? No. > Kernel config (pruned) is > controller pnp0 # add PnP > controller snd0 > device sb0 at isa? port 0x220 irq 5 conflicts drq 1 vector sbintr > device sbxvi0 at isa? drq 5 > device sbmidi0 at isa? port 0x330 > device awe0 at isa? port 0x620 > device opl0 at isa? port 0x388 This is all as it should be. Reboot with the -c switch and configure your PnP. That should do it. -- Conrad Sabatier http://www.neosoft.com/~conrads/ And the Deep Thought of the Day is: I think that I shall never see A billboard lovely as a tree. Perhaps, unless the billboards fall I'll never see a tree at all. -- Ogden Nash To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-multimedia" in the body of the message From owner-freebsd-multimedia Fri May 15 19:41:15 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id TAA20189 for freebsd-multimedia-outgoing; Fri, 15 May 1998 19:41:15 -0700 (PDT) (envelope-from owner-freebsd-multimedia@FreeBSD.ORG) Received: from tor-dev1.nbc.netcom.ca (tor-dev1.nbc.netcom.ca [207.181.89.12]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id TAA20183 for ; Fri, 15 May 1998 19:41:13 -0700 (PDT) (envelope-from taob@tor-dev1.nbc.netcom.ca) Received: (from taob@localhost) by tor-dev1.nbc.netcom.ca (8.8.8/8.8.5) id WAA07565; Fri, 15 May 1998 22:41:03 -0400 (EDT) Date: Fri, 15 May 1998 22:41:02 -0400 (EDT) From: Brian Tao X-Sender: taob@tor-dev1.nbc.netcom.ca To: Kevin Day cc: freebsd-multimedia@FreeBSD.ORG Subject: Re: ANNOUNCE: 3Dfx Glide port beta test In-Reply-To: <199805132127.QAA05861@home.dragondata.com> 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 Wed, 13 May 1998, Kevin Day wrote: > > A port of the 3Dfx glide library will be available within 2-3 weeks > for beta testing. If there is anyone interested in beta testing this > (preferably any 3dfx developers who already have have a development > kit), or anyone with a voodoo or voodoo2 card who can just run a > quick test, please e-mail me. Include your e-mail, what kind of > card(s) you have, and what kind of help you can provide. :) Sign me up. I've got a Canopus Pure3D in a PII/233 at work. I'm forwarding this announcement to a co-worked with a Diamond Monster 3D II. Will this library be accessible via Mesa? -- Brian Tao (BT300, taob@risc.org) "Though this be madness, yet there is method in't" To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-multimedia" in the body of the message From owner-freebsd-multimedia Sat May 16 00:15:51 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id AAA11396 for freebsd-multimedia-outgoing; Sat, 16 May 1998 00:15: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 AAA11391 for ; Sat, 16 May 1998 00:15:50 -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 AAA11160 for ; Sat, 16 May 1998 00:15:43 -0700 (PDT) (envelope-from hasty@rah.star-gate.com) Message-Id: <199805160715.AAA11160@rah.star-gate.com> X-Mailer: exmh version 2.0.2 2/24/98 to: multimedia@FreeBSD.ORG Subject: Re: new bt848 driver In-reply-to: Your message of "Sun, 10 May 1998 00:51:49 PDT." <199805100751.AAA00899@rah.star-gate.com> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Date: Sat, 16 May 1998 00:15:42 -0700 From: Amancio Hasty Sender: owner-freebsd-multimedia@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org The driver has been committed and it is avalaible from: http://www.freebsd.org/~ahasty/Bt848.html ftp://rah.star-gate.com/pub/bt848.tar.gz and later on from -current. Have Fun, Amancio > > Hi > > ftp://rah.star-gate.com/pub/bt848.tar.gz > > With this release there is a better recognition mechanism for cards. > > A new struct is introduced: > struct bt848_card_sig { > int card; > int tuner; > u_char signature[Bt848_MAX_SIGN]; > }; > > struct bt848_card_sig bt848_card_signature[1]= { > /* IMS TURBO TV : card 5 */ > { 5,9, {00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 02, 00, 00, 00}} > > > }; > > bt848_card_sig.card holds a card number > bt848_card_sig.tuner holds a tuner number > bt848_card.signature holds the first 16 bytes of the signature probe test. > > The program sign.c available from http://www.freebsd.org.~ahasty/Bt848.html > can be used to print the signature of your card or boot verbose. > > If the recognition algorithm fails , you can still program the driver: > sysctl -w hw.bt848_card= > sysctl -w hw.bt848_tuner= > sysctl -w hw.bt848_reverse_mute=<0|1> 1 reverses the function of the tuner mute > > > I intent to check in the driver in about a week from now. > > > Have Fun, > Amancio > > > > > > > > > To Unsubscribe: send mail to majordomo@FreeBSD.org > with "unsubscribe freebsd-multimedia" in the body of the message To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-multimedia" in the body of the message From owner-freebsd-multimedia Sat May 16 00:48:00 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id AAA13231 for freebsd-multimedia-outgoing; Sat, 16 May 1998 00:48:00 -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 AAA13212 for ; Sat, 16 May 1998 00:47:59 -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 AAA11314 for ; Sat, 16 May 1998 00:47:56 -0700 (PDT) (envelope-from hasty@rah.star-gate.com) Message-Id: <199805160747.AAA11314@rah.star-gate.com> X-Mailer: exmh version 2.0.2 2/24/98 To: multimedia@FreeBSD.ORG Subject: new audio mpeg encoder Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Date: Sat, 16 May 1998 00:47:56 -0700 From: Amancio Hasty Sender: owner-freebsd-multimedia@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Hi, We've made a free MP3 encoder for FreeBSD (Linux, Solaris and Windows versions are also available). Go to: www.8hz.com/mp3 I hope y'all like it :) goran & alex (@8hz.com) To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-multimedia" in the body of the message From owner-freebsd-multimedia Sat May 16 04:39:57 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id EAA03051 for freebsd-multimedia-outgoing; Sat, 16 May 1998 04:39:57 -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 EAA03015; Sat, 16 May 1998 04:39:52 -0700 (PDT) (envelope-from roger@cs.strath.ac.uk) Received: from neipc-17.cs.strath.ac.uk (scary.dmem.strath.ac.uk [130.159.202.5]) by fleming.cs.strath.ac.uk (8.8.8/8.8.8) with SMTP id MAA02541 Sat, 16 May 1998 12:39:37 +0100 (BST) Message-ID: <355D7B2E.1EB6@cs.strath.ac.uk> Date: Sat, 16 May 1998 12:40:30 +0100 From: Roger Hardiman Organization: University of Strathclyde X-Mailer: Mozilla 3.01 (Win95; I) MIME-Version: 1.0 To: conrads@neosoft.com CC: freebsd-questions@FreeBSD.ORG, freebsd-multimedia@FreeBSD.ORG Subject: Re: AWE64 - awe0 not detected, but sbmidi0 and snd0 are detected References: Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: 7bit Sender: owner-freebsd-multimedia@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Thanks to Conrad and Mark, I have a working system. > > I have a a PnP AWE 64 Value (the 512k version without the SPDIF port). > > > > The AWE driver is not detecting the card. However the wave and midi > > devices are detected and playing wave files works fine. > > > > pnpinfo says the WaveTable is on 0x620. I noticed the > > Win95 driver uses 620 a20 and e20 and there was something in the > > linux FAQ about ensuring the PnP had picked up on a20 and e20. > > That's right, you have to be sure to enable all three of the AWE ports in > your PnP (boot) config. > > pnp 1 2 os enable port0 0x620 port1 0xa20 port2 0xe20 > >as well as, of course, the "main" device: > pnp 1 0 os enable irq0 5 drq0 1 drq1 5 port0 0x220 port1 0x330 port2 0x388 > I added USERCONFIG to my boot options, built a new kernel, booted with -c and entered pnp 1 2 os enable port0 0x620 port1 0xa20 port2 0xe20 and the AWE driver now detects the card. I did not need to add the second line for the "main" device as the PnP had picked them up. Thanks for getting my AWE64 working. Roger Hardiman, University of Strathclyde Telepresence Group roger@cs.strath.ac.uk To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-multimedia" in the body of the message From owner-freebsd-multimedia Sat May 16 09:44:18 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id JAA06919 for freebsd-multimedia-outgoing; Sat, 16 May 1998 09:44:18 -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 JAA06914 for ; Sat, 16 May 1998 09:44:16 -0700 (PDT) (envelope-from rhh@ct.picker.com) Received: from ct.picker.com by whqvax.picker.com with SMTP; Sat, 16 May 1998 12:43:48 -0400 (EDT) Received: from elmer.ct.picker.com by ct.picker.com (4.1/SMI-4.1) id AA15425; Sat, 16 May 98 12:43:49 EDT Received: by elmer.ct.picker.com (SMI-8.6/SMI-SVR4) id MAA11043; Sat, 16 May 1998 12:43:24 -0400 Message-Id: <19980516124324.A11036@ct.picker.com> Date: Sat, 16 May 1998 12:43:24 -0400 From: Randall Hopper To: Amancio Hasty , multimedia@FreeBSD.ORG Subject: Re: new bt848 driver Mail-Followup-To: Amancio Hasty , multimedia@FreeBSD.ORG References: <199805100751.AAA00899@rah.star-gate.com> <199805160715.AAA11160@rah.star-gate.com> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii X-Mailer: Mutt 0.91.1i In-Reply-To: <199805160715.AAA11160@rah.star-gate.com>; from Amancio Hasty on Sat, May 16, 1998 at 12:15:42AM -0700 Sender: owner-freebsd-multimedia@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Amancio Hasty: |The driver has been committed and it is avalaible from: |http://www.freebsd.org/~ahasty/Bt848.html | |ftp://rah.star-gate.com/pub/bt848.tar.gz This file on your site is only 45 bytes. (?) :-) Later, Randall To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-multimedia" in the body of the message From owner-freebsd-multimedia Sat May 16 09:59:03 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id JAA08295 for freebsd-multimedia-outgoing; Sat, 16 May 1998 09:59:03 -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 JAA08287 for ; Sat, 16 May 1998 09:59:01 -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 JAA16464; Sat, 16 May 1998 09:58:56 -0700 (PDT) (envelope-from hasty@rah.star-gate.com) Message-Id: <199805161658.JAA16464@rah.star-gate.com> X-Mailer: exmh version 2.0.2 2/24/98 To: Randall Hopper cc: multimedia@FreeBSD.ORG Subject: Re: new bt848 driver In-reply-to: Your message of "Sat, 16 May 1998 12:43:24 EDT." <19980516124324.A11036@ct.picker.com> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Date: Sat, 16 May 1998 09:58:56 -0700 From: Amancio Hasty Sender: owner-freebsd-multimedia@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Hi, I just replaced the driver on my ftp site: {hasty} ls -ald /var/ftp/pub/bt848.tar.gz -r--r--r-- 1 hasty rah 43158 May 16 09:52 /var/ftp/pub/bt848.tar.gz The correct driver was checked in and it is available from http://www.freebsd.org/~ahasty/Bt848.html Tnks, Amancio > Amancio Hasty: > |The driver has been committed and it is avalaible from: > |http://www.freebsd.org/~ahasty/Bt848.html > | > |ftp://rah.star-gate.com/pub/bt848.tar.gz > > This file on your site is only 45 bytes. (?) :-) > > Later, > > Randall To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-multimedia" in the body of the message From owner-freebsd-multimedia Sat May 16 10:21:47 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id KAA10261 for freebsd-multimedia-outgoing; Sat, 16 May 1998 10:21:47 -0700 (PDT) (envelope-from owner-freebsd-multimedia@FreeBSD.ORG) Received: from super-g.inch.com (super-g.com [207.240.140.161]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id KAA10256 for ; Sat, 16 May 1998 10:21:45 -0700 (PDT) (envelope-from spork@super-g.com) Received: from localhost (localhost [127.0.0.1]) by super-g.inch.com (8.8.8/8.8.5) with SMTP id NAA15474 for ; Sat, 16 May 1998 13:21:17 -0400 (EDT) Date: Sat, 16 May 1998 13:21:17 -0400 (EDT) From: spork X-Sender: spork@super-g.inch.com To: multimedia@FreeBSD.ORG Subject: sound card help 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 Hi, Maybe you folks can help... I just took a stab at sound using a SB compatible card. The sb device and OPL device are found, but not the sbxvi0 device. From what I can gather this means that I'm left with only 8 bit sound. Here's what I get on boot: sb0 at 0x220 irq 5 drq 1 on isa sb0: sbxvi0 not found opl0 at 0x388 on isa opl0: Now I see the only thing I can really select on the sbvxi0 device is the drq. I couldn't tell you what a drq is to save my life. IRQ, yep, base address, got it... I've tried a pretty full range to no avail. The sb0 device is at drq 1, and the floppy controller is at 2. As far as I can tell there's no way to set this on the card. Any ideas? The card came from a Packard Bell, and other than an amusing sticker that says "B GRADE", I don't have any info on the manufacturer. The chip that appears to do all the work is an Aztech 2316-S. Any ideas? Any other info that might be helpful? Might I have better luck with the pcm driver? I couldn't find any pcm vs. sb entries in the FAQ or handbook. Thanks, Charles Charles Sprickman spork@super-g.com ---- "I'm not a prophet or a stone-age man Just a mortal with potential of a superman I'm living on" -DB To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-multimedia" in the body of the message From owner-freebsd-multimedia Sat May 16 13:12:46 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id NAA29465 for freebsd-multimedia-outgoing; Sat, 16 May 1998 13:12:46 -0700 (PDT) (envelope-from owner-freebsd-multimedia@FreeBSD.ORG) Received: from grizzly.fas.com (chs0257.awod.com [208.140.97.17]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id NAA29451 for ; Sat, 16 May 1998 13:12:43 -0700 (PDT) (envelope-from stanb@awod.com) Message-Id: <199805162012.NAA29451@hub.freebsd.org> Received: by grizzly.fas.com ($Revision: 1.37.109.23 $/16.2) id AA118489563; Sat, 16 May 1998 16:12:43 -0400 Subject: Is 2.2-STABLE safe to use on a machine with Gus PnP? To: freebsd-multimedia@FreeBSD.ORG (Free BSD Multimedia List) Date: Sat, 16 May 1998 16:12:42 -0400 (EDT) From: "Stan Brown" X-Mailer: ELM [version 2.4 PL24] 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 I have a machine that has been working well of rquite some time now with a Gus PnP in it. I decided o bring it up to date, so I cvsuped the stable branche last night, and did a make world. This went well, then I decided to be consevative, and build a new kernel. Problem is the new kernel hangs duing boot. The old one will still boot. It's hanging about where I think it should be detecting the Gus PnP (right after sea). Do I still need special patches to STABLE for this card? If so where do I get them. Thanks. -- Stan Brown stanb@netcom.com 770-996-6955 Factory Automation Systems Atlanta Ga. -- Windows 98: n. 32-bit extensions and a graphical shell for a 16-bit patch to an 8-bit operating system originally coded for a 4-bit microprocessor, written by a 2-bit company that can't stand for 1 bit of competition. - (c) 1998 Stan Brown. Redistribution via the Microsoft Network is prohibited. To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-multimedia" in the body of the message From owner-freebsd-multimedia Sat May 16 14:38:31 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id OAA11705 for freebsd-multimedia-outgoing; Sat, 16 May 1998 14:38:31 -0700 (PDT) (envelope-from owner-freebsd-multimedia@FreeBSD.ORG) Received: from roma.coe.ufrj.br (jonny@roma.coe.ufrj.br [146.164.53.65]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id OAA11696 for ; Sat, 16 May 1998 14:38:28 -0700 (PDT) (envelope-from jonny@jonny.eng.br) Received: (from jonny@localhost) by roma.coe.ufrj.br (8.8.8/8.8.8) id SAA10444; Sat, 16 May 1998 18:38:19 -0300 (EST) (envelope-from jonny) From: Joao Carlos Mendes Luis Message-Id: <199805162138.SAA10444@roma.coe.ufrj.br> Subject: Re: Is 2.2-STABLE safe to use on a machine with Gus PnP? In-Reply-To: <199805162012.NAA29451@hub.freebsd.org> from Stan Brown at "May 16, 98 04:12:42 pm" To: stanb@awod.com (Stan Brown) Date: Sat, 16 May 1998 18:38:19 -0300 (EST) Cc: freebsd-multimedia@FreeBSD.ORG X-Mailer: ELM [version 2.4ME+ PL40 (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 #define quoting(Stan Brown) // I have a machine that has been working well of rquite some time now // with a Gus PnP in it. I decided o bring it up to date, so I cvsuped the // stable branche last night, and did a make world. This went well, then I // decided to be consevative, and build a new kernel. // // Problem is the new kernel hangs duing boot. The old one will still // boot. It's hanging about where I think it should be detecting the Gus // PnP (right after sea). Do I still need special patches to STABLE for // this card? Which driver are you using with your GUS PnP ? I've been using one with pcm driver in -stable for a long time now. Jonny -- Joao Carlos Mendes Luis M.Sc. Student jonny@jonny.eng.br Universidade Federal do Rio de Janeiro To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-multimedia" in the body of the message From owner-freebsd-multimedia Sat May 16 15:02:13 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id PAA15365 for freebsd-multimedia-outgoing; Sat, 16 May 1998 15:02:13 -0700 (PDT) (envelope-from owner-freebsd-multimedia@FreeBSD.ORG) Received: from roma.coe.ufrj.br (jonny@roma.coe.ufrj.br [146.164.53.65]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id PAA15360 for ; Sat, 16 May 1998 15:02:10 -0700 (PDT) (envelope-from jonny@jonny.eng.br) Received: (from jonny@localhost) by roma.coe.ufrj.br (8.8.8/8.8.8) id TAA10545; Sat, 16 May 1998 19:02:05 -0300 (EST) (envelope-from jonny) From: Joao Carlos Mendes Luis Message-Id: <199805162202.TAA10545@roma.coe.ufrj.br> Subject: Re: Is 2.2-STABLE safe to use on a machine with Gus PnP? In-Reply-To: <199805162154.SAA10484@roma.coe.ufrj.br> from Stan Brown at "May 16, 98 05:54:20 pm" To: stanb@awod.com (Stan Brown) Date: Sat, 16 May 1998 19:02:05 -0300 (EST) Cc: multimedia@FreeBSD.ORG X-Mailer: ELM [version 2.4ME+ PL40 (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 #define quoting(Stan Brown) // >Which driver are you using with your GUS PnP ? I've been using one // >with pcm driver in -stable for a long time now. // // I am using one called gus. Thisnk this is the problem? What do your // config lines for your GUS look like? That's the problem. This driver does not support the PnP version. Or at least it didn't, I don't know if Amancio has commited his last version of his drivers. Anyway, unless you need the midi/synth interface, it's much better to use the new Luigi's driver. Simply remove all drivers related to sound cards (including controller snd), and add the following: controller pnp0 device pcm0 at isa? port 0x220 tty irq 7 drq 1 flags 0x15 vector pcmintr Off course, the parameters above are for my machine, which has two sound cards. The gus will use the device pcm1, since it's a PnP device. In this sense, there's no importance in which values are above. Hope this helps, Jonny -- Joao Carlos Mendes Luis M.Sc. Student jonny@jonny.eng.br Universidade Federal do Rio de Janeiro To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-multimedia" in the body of the message From owner-freebsd-multimedia Sat May 16 16:18:14 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id QAA25091 for freebsd-multimedia-outgoing; Sat, 16 May 1998 16:18:14 -0700 (PDT) (envelope-from owner-freebsd-multimedia@FreeBSD.ORG) Received: from titus.stade.co.uk (root@stade.demon.co.uk [158.152.29.164]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id QAA25080 for ; Sat, 16 May 1998 16:18:10 -0700 (PDT) (envelope-from aw1@titus.stade.co.uk) Received: (from aw1@localhost) by titus.stade.co.uk (8.8.8/8.8.3) id NAA01773; Sat, 16 May 1998 13:48:43 +0100 (BST) Message-ID: <19980516134843.A916@stade.co.uk> Date: Sat, 16 May 1998 13:48:43 +0100 From: Adrian Wontroba To: multimedia@FreeBSD.ORG Subject: Re: new bt848 driver Reply-To: aw1@stade.co.uk Mail-Followup-To: multimedia@freebsd.org References: <199805100751.AAA00899@rah.star-gate.com> <199805160715.AAA11160@rah.star-gate.com> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii X-Mailer: Mutt 0.91.1i In-Reply-To: <199805160715.AAA11160@rah.star-gate.com>; from Amancio Hasty on Sat, May 16, 1998 at 12:15:42AM -0700 Organization: Stade Computers Ltd, UK X-Phone: +(44) 121 681 6677 Sender: owner-freebsd-multimedia@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org On Sat, May 16, 1998 at 12:15:42AM -0700, Amancio Hasty wrote: > The driver has been committed and it is avalaible from: > and later on from -current. Is it likely to work with -stable? If so, I'll have a try. -- 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 Sat May 16 18:32:42 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id SAA08936 for freebsd-multimedia-outgoing; Sat, 16 May 1998 18:32:42 -0700 (PDT) (envelope-from owner-freebsd-multimedia@FreeBSD.ORG) Received: from thelab.hub.org (tc-64.acadiau.ca [131.162.2.164]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id SAA08930 for ; Sat, 16 May 1998 18:32:39 -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 SAA00657; Sat, 16 May 1998 18:31:42 -0300 (ADT) X-Authentication-Warning: thelab.hub.org: scrappy owned process doing -bs Date: Sat, 16 May 1998 18:31:36 -0300 (ADT) From: The Hermit Hacker To: Amancio Hasty cc: multimedia@FreeBSD.ORG Subject: Re: new audio mpeg encoder In-Reply-To: <199805160747.AAA11314@rah.star-gate.com> 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 Sat, 16 May 1998, Amancio Hasty wrote: > Hi, > > We've made a free MP3 encoder for FreeBSD (Linux, Solaris and Windows > versions are also available). > > Go to: www.8hz.com/mp3 > > I hope y'all like it :) > > goran & alex (@8hz.com) And for today's stupid question...how to use? I used tosha to grab the track, which produces a wave file, no? But I get told: 8hz-mp3 1998 8Hz software http://www.8hz.com [ERROR] Input not a MS-RIFF file 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 Sat May 16 20:30:28 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id UAA23858 for freebsd-multimedia-outgoing; Sat, 16 May 1998 20:30:28 -0700 (PDT) (envelope-from owner-freebsd-multimedia@FreeBSD.ORG) Received: from parsons.rh.rit.edu (d117-h041.rh.rit.edu [129.21.117.169]) by hub.freebsd.org (8.8.8/8.8.8) with SMTP id UAA23845 for ; Sat, 16 May 1998 20:30:23 -0700 (PDT) (envelope-from mfisher@harborcom.net) Received: from mfisher by parsons.rh.rit.edu with smtp (Exim 1.82 #1) id 0yau9L-0001w2-00; Sat, 16 May 1998 23:30:11 -0400 Date: Sat, 16 May 1998 23:30:11 -0400 (EDT) From: Mike Fisher X-Sender: mfisher@d117-h041.rh.rit.edu To: The Hermit Hacker cc: multimedia@FreeBSD.ORG Subject: Re: new audio mpeg encoder 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 On Sat, 16 May 1998, The Hermit Hacker wrote: > And for today's stupid question...how to use? > > I used tosha to grab the track, which produces a wave file, no? But I get > told: No. >From the tosha(1) manpage: The output data is in linear PCM format, headerless (raw), 44.1 kHz, signed 16 bit stereo. If you need a different format, use sox(1) to convert it. -- Mike "I swear - by my life and by my love of it - that I will never live for the sake of another man, nor ask another man to live for mine." --Ayn Rand, _Atlas Shrugged_ To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-multimedia" in the body of the message From owner-freebsd-multimedia Sat May 16 21:04:47 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id VAA28065 for freebsd-multimedia-outgoing; Sat, 16 May 1998 21:04:47 -0700 (PDT) (envelope-from owner-freebsd-multimedia@FreeBSD.ORG) Received: from nexus.astro.psu.edu (nexus.astro.psu.edu [128.118.147.20]) by hub.freebsd.org (8.8.8/8.8.8) with SMTP id VAA28030 for ; Sat, 16 May 1998 21:04:40 -0700 (PDT) (envelope-from mph@astro.psu.edu) Received: from mstar.astro.psu.edu by nexus.astro.psu.edu (4.1/Nexus-1.3) id AA09722; Sun, 17 May 98 00:04:29 EDT Received: by mstar.astro.psu.edu (SMI-8.6/Client-1.3) id AAA23082; Sun, 17 May 1998 00:04:28 -0400 Message-Id: <19980517000427.A22989@mstar.astro.psu.edu> Date: Sun, 17 May 1998 00:04:27 -0400 From: Matthew Hunt To: freebsd-multimedia@FreeBSD.ORG Subject: [mph@FreeBSD.ORG: cvs commit: ports/audio/mpg123 Makefile] Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii X-Mailer: Mutt 0.91.1i Sender: owner-freebsd-multimedia@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org In an effort to reach more audio-competent folks... :-) ----- Forwarded message from Matthew Hunt ----- From: Matthew Hunt Date: Sat, 16 May 1998 20:53:53 -0700 (PDT) To: cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG, cvs-ports@FreeBSD.ORG Subject: cvs commit: ports/audio/mpg123 Makefile mph 1998/05/16 20:53:53 PDT Modified files: audio/mpg123 Makefile Log: Change MAINTAINER to ports@freebsd.org because (now former) maintainer uses OSS and is not in a position to ensure that newer versions build under the stock FreeBSD drivers in 2.2-STABLE. Anybody who wants this, please let us know! Getting 0.59o to build on a recent -STABLE would be a good litmus test. :-) PR: 6659 Submitted by: Carey Jones Revision Changes Path 1.5 +2 -2 ports/audio/mpg123/Makefile ----- End forwarded message ----- -- Matthew Hunt * Stay close to the Vorlon. http://mph124.rh.psu.edu/~mph/pgp.key for PGP public key 0x67203349. To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-multimedia" in the body of the message From owner-freebsd-multimedia Sat May 16 23:51:34 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id XAA12985 for freebsd-multimedia-outgoing; Sat, 16 May 1998 23:51:34 -0700 (PDT) (envelope-from owner-freebsd-multimedia@FreeBSD.ORG) Received: from xcf.berkeley.edu (scam.XCF.Berkeley.EDU [128.32.43.201]) by hub.freebsd.org (8.8.8/8.8.8) with SMTP id XAA12980 for ; Sat, 16 May 1998 23:51:31 -0700 (PDT) (envelope-from grady@scam.XCF.Berkeley.EDU) From: grady@scam.XCF.Berkeley.EDU Message-Id: <199805170651.XAA12980@hub.freebsd.org> Received: (qmail 14259 invoked from network); 17 May 1998 06:52:47 -0000 Received: from localhost.berkeley.edu (HELO scam.XCF.Berkeley.EDU) (127.0.0.1) by localhost.berkeley.edu with SMTP; 17 May 1998 06:52:47 -0000 To: The Hermit Hacker Cc: multimedia@FreeBSD.ORG Subject: Re: new audio mpeg encoder In-reply-to: Your message of Sat, 16 May 1998 23:30:11 -0400 (EDT) MIME-Version: 1.0 Content-Type: text/plain; charset="us-ascii" Content-ID: <14255.895387961.1@scam.XCF.Berkeley.EDU> Date: Sat, 16 May 1998 23:52:43 -0700 Sender: owner-freebsd-multimedia@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org > > I used tosha to grab the track, which produces a wave file, no? But I get > > told: > > No. > > >From the tosha(1) manpage: > The output data is in linear PCM format, headerless (raw), > 44.1 kHz, signed 16 bit stereo. If you need a different > format, use sox(1) to convert it. Specifically, you might want a script such as: #!/bin/csh tosha -t 1-100 foreach f (*.pcm) set g=$f:r set w=$g.wav set m=$g.mp3 echo Converting $f to $w sox -t raw -r 44100 -s -w -c 2 $f $w rm $f 8hz-mp3 $w $m rm $w end If you're low on disk space, you'll probably want to grab the tracks one at a time, instead of all at once. The changes are left as an exercise for the reader. Steven -- "_My_ side of the woods abounds in natural scenic splendor. _Your_ side wallows in decay and filth. My territory is infinitely superior to yours." To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-multimedia" in the body of the message