From owner-freebsd-multimedia Fri May 2 03:52:30 1997 Return-Path: Received: (from root@localhost) by hub.freebsd.org (8.8.5/8.8.5) id DAA24855 for multimedia-outgoing; Fri, 2 May 1997 03:52:30 -0700 (PDT) Received: from whqvax.picker.com (whqvax.picker.com [144.54.1.1]) by hub.freebsd.org (8.8.5/8.8.5) with SMTP id DAA24848 for ; Fri, 2 May 1997 03:52:27 -0700 (PDT) Received: from ct.picker.com by whqvax.picker.com with SMTP; Fri, 2 May 1997 6:51:19 -0400 (EDT) Received: from elmer.ct.picker.com ([144.54.57.34]) by ct.picker.com (4.1/SMI-4.1) id AA17290; Fri, 2 May 97 06:51:17 EDT Received: by elmer.ct.picker.com (SMI-8.6/SMI-SVR4) id GAA17627; Fri, 2 May 1997 06:50:48 -0400 Message-Id: <19970502065048.46306@ct.picker.com> Date: Fri, 2 May 1997 06:50:48 -0400 From: Randall Hopper To: Amancio Hasty Cc: multimedia@freebsd.org Subject: Re: Updated driver (bt848-970424) References: <19970501230932.46738@ct.picker.com> <199705020323.UAA00897@rah.star-gate.com> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii X-Mailer: Mutt 0.69 In-Reply-To: <199705020323.UAA00897@rah.star-gate.com>; from Amancio Hasty on Thu, May 01, 1997 at 08:23:18PM -0700 Sender: owner-multimedia@freebsd.org X-Loop: FreeBSD.org Precedence: bulk Amancio Hasty: |In summary, don't allow multiple clients to open the video device and |set the bktr compatibility flag on every open. Sounds good--not allowing multiple opens makes sense. With this restriction, I agree, reactivating compat mode in open() is a good idea. To fully-reset the driver to compatibility mode you probably want a few more lines: bktr->pixfmt_compat = TRUE; bktr->format = METEOR_GEO_RGB16; bktr->pixfmt = oformat_meteor_to_bt( bktr->format ); just so that the pixmap format is reset to a meteor-compatible format. Randall