From owner-freebsd-multimedia Sun Jan 21 19:10:27 2001 Delivered-To: freebsd-multimedia@freebsd.org Received: from magic.adaptec.com (magic.adaptec.com [208.236.45.80]) by hub.freebsd.org (Postfix) with ESMTP id 0D41637B401 for ; Sun, 21 Jan 2001 19:09:57 -0800 (PST) Received: from redfish.adaptec.com (redfish.adaptec.com [162.62.50.11]) by magic.adaptec.com (8.8.8+Sun/8.8.8) with ESMTP id TAA04724 for ; Sun, 21 Jan 2001 19:09:55 -0800 (PST) Received: from btc.btc.adaptec.com (btc.btc.adaptec.com [162.62.64.10]) by redfish.adaptec.com (8.8.8+Sun/8.8.8) with ESMTP id TAA02961 for ; Sun, 21 Jan 2001 19:03:16 -0800 (PST) Received: from btcexc01.btc.adaptec.com (btcexc01 [162.62.147.10]) by btc.btc.adaptec.com (8.8.8+Sun/8.8.8) with ESMTP id UAA04223 for ; Sun, 21 Jan 2001 20:09:52 -0700 (MST) Received: by btcexc01.btc.adaptec.com with Internet Mail Service (5.5.2650.21) id ; Sun, 21 Jan 2001 20:09:53 -0700 Message-ID: From: "Long, Scott" To: "'freebsd-multimedia@freebsd.org'" Subject: So ya want to play unlocked and unencryted pr0n DVDs... Date: Sun, 21 Jan 2001 20:08:50 -0700 MIME-Version: 1.0 X-Mailer: Internet Mail Service (5.5.2650.21) Content-Type: multipart/mixed; boundary="----_=_NextPart_000_01C08420.A4E19140" Sender: owner-freebsd-multimedia@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org This message is in MIME format. Since your mail reader does not understand this format, some or all of this message may not be legible. ------_=_NextPart_000_01C08420.A4E19140 Content-Type: text/plain Ok, here ya go. These patches to the xine's UDF reader have made it so that I can play DVDs without having to pass in a .vob file, i.e. read the TOC and play chapter-by-chapter. This by no means fixes all of the bugs in xine.... manually advancing the chapter while the movie is playing causes a crash that I haven't been able to track down, and some DVDs that I own just don't want to play at all. These patches do not touch the much rumored 'magical DVD decryption plugin' that may or may not actually exist, they merely provide fixes to the UDF reader. Have fun. Scott FreeBSD - The power to watch unencrypted pr0n ------_=_NextPart_000_01C08420.A4E19140 Content-Type: application/octet-stream; name="xine.diff" Content-Transfer-Encoding: quoted-printable Content-Disposition: attachment; filename="xine.diff" diff -c xine-0.3.5/input/dvd_udf.c xine-0.3.5.new/input/dvd_udf.c=0A= *** xine-0.3.5/input/dvd_udf.c Fri Jan 12 16:38:15 2001=0A= --- xine-0.3.5.new/input/dvd_udf.c Sun Jan 21 18:33:07 2001=0A= ***************=0A= *** 25,30 ****=0A= --- 25,31 ----=0A= =0A= =0A= #include =0A= + #include =0A= #include =0A= #include =0A= #include =0A= ***************=0A= *** 275,284 ****=0A= =0A= int UDFMapICB (int fd, struct AD ICB, uint8_t *FileType, struct AD = *File)=0A= {=0A= ! uint8_t LogBlock[DVD_VIDEO_LB_LEN];=0A= uint32_t lbnum;=0A= uint16_t TagID;=0A= =0A= lbnum=3Dpartition.Start+ICB.Location;=0A= =0A= do {=0A= --- 276,290 ----=0A= =0A= int UDFMapICB (int fd, struct AD ICB, uint8_t *FileType, struct AD = *File)=0A= {=0A= ! uint8_t *LogBlock;=0A= uint32_t lbnum;=0A= uint16_t TagID;=0A= =0A= + if ((LogBlock =3D (uint8_t*)malloc(DVD_VIDEO_LB_LEN)) =3D=3D NULL) = {=0A= + fprintf(stderr, "%s: malloc failed\n", __FUNCTION__);=0A= + return 0;=0A= + }=0A= + =0A= lbnum=3Dpartition.Start+ICB.Location;=0A= =0A= do {=0A= ***************=0A= *** 287,296 ****=0A= --- 293,304 ----=0A= =0A= if (TagID=3D=3D261) {=0A= UDFFileEntry(LogBlock,FileType,File);=0A= + free(LogBlock);=0A= return 1;=0A= };=0A= } while = ((lbnum<=3Dpartition.Start+ICB.Location+(ICB.Length-1)/DVD_VIDEO_LB_LEN)= && (TagID!=3D261));=0A= =0A= + free(LogBlock);=0A= return 0;=0A= }=0A= =0A= ***************=0A= *** 303,315 ****=0A= =0A= int UDFScanDir (int fd, struct AD Dir, char *FileName, struct AD = *FileICB)=0A= {=0A= ! uint8_t LogBlock[DVD_VIDEO_LB_LEN*30];=0A= uint32_t lbnum, lb_dir_end, offset;=0A= uint16_t TagID;=0A= uint8_t filechar;=0A= ! char filename[MAX_FILE_LEN];=0A= ! int p;=0A= =0A= =0A= /*=0A= * read complete directory=0A= --- 311,329 ----=0A= =0A= int UDFScanDir (int fd, struct AD Dir, char *FileName, struct AD = *FileICB)=0A= {=0A= ! uint8_t *LogBlock;=0A= uint32_t lbnum, lb_dir_end, offset;=0A= uint16_t TagID;=0A= uint8_t filechar;=0A= ! char *filename;=0A= ! int p, retval =3D 0;=0A= =0A= + LogBlock =3D (uint8_t*)malloc(DVD_VIDEO_LB_LEN * 30);=0A= + filename =3D (char*)malloc(MAX_FILE_LEN);=0A= + if ((LogBlock =3D=3D NULL) || (filename =3D=3D NULL)) {=0A= + fprintf(stderr, "%s: malloc failed\n", __FUNCTION__);=0A= + goto bail;=0A= + }=0A= =0A= /*=0A= * read complete directory=0A= ***************=0A= *** 335,347 ****=0A= =0A= if (TagID=3D=3D257) {=0A= p +=3D = UDFFileIdentifier(&LogBlock[p],&filechar,filename,FileICB);=0A= ! if (!strcasecmp (FileName,filename))=0A= ! return 1;=0A= } else=0A= p=3Doffset;=0A= }=0A= =0A= ! return 0;=0A= }=0A= =0A= =0A= --- 349,368 ----=0A= =0A= if (TagID=3D=3D257) {=0A= p +=3D = UDFFileIdentifier(&LogBlock[p],&filechar,filename,FileICB);=0A= ! if (!strcasecmp (FileName,filename)) {=0A= ! retval =3D 1;=0A= ! goto bail;=0A= ! }=0A= } else=0A= p=3Doffset;=0A= }=0A= =0A= ! retval =3D 0;=0A= ! =0A= ! bail:=0A= ! free(LogBlock);=0A= ! free(filename);=0A= ! return retval;=0A= }=0A= =0A= =0A= ***************=0A= *** 354,365 ****=0A= =0A= int UDFFindPartition (int fd, int partnum, struct Partition *part)=0A= {=0A= ! uint8_t LogBlock[DVD_VIDEO_LB_LEN],Anchor[DVD_VIDEO_LB_LEN];=0A= uint32_t lbnum,MVDS_location,MVDS_length;=0A= uint16_t TagID;=0A= uint32_t lastsector;=0A= ! int i,terminate,volvalid;=0A= =0A= =0A= /* find anchor */=0A= lastsector=3D0;=0A= --- 375,392 ----=0A= =0A= int UDFFindPartition (int fd, int partnum, struct Partition *part)=0A= {=0A= ! uint8_t *LogBlock,*Anchor;=0A= uint32_t lbnum,MVDS_location,MVDS_length;=0A= uint16_t TagID;=0A= uint32_t lastsector;=0A= ! int i,terminate,volvalid,retval =3D 0;=0A= =0A= + LogBlock =3D (uint8_t*)malloc(DVD_VIDEO_LB_LEN);=0A= + Anchor =3D (uint8_t*)malloc(DVD_VIDEO_LB_LEN);=0A= + if ((LogBlock =3D=3D NULL) || (Anchor =3D=3D NULL)) {=0A= + fprintf(stderr, "%s: malloc failed\n", __FUNCTION__);=0A= + goto bail;=0A= + }=0A= =0A= /* find anchor */=0A= lastsector=3D0;=0A= ***************=0A= *** 373,386 ****=0A= TagID=3D0;=0A= =0A= if (TagID!=3D2) { /* not an anchor? */=0A= ! if (terminate) return 0; /* final try failed */=0A= if (lastsector) { /* we already found the last sector */=0A= lbnum=3Dlastsector; /* try #3, alternative backup anchor */=0A= terminate=3D1; /* but thats just about enough, then! */=0A= } else {=0A= /* TODO: find last sector of the disc (this is optional) */=0A= if (lastsector) lbnum=3Dlastsector-256; /* try #2, backup anchor = */=0A= ! else return 0; /* unable to find last sector */=0A= }=0A= } else break; /* it is an anchor! continue... = */=0A= }=0A= --- 400,413 ----=0A= TagID=3D0;=0A= =0A= if (TagID!=3D2) { /* not an anchor? */=0A= ! if (terminate) goto bail; /* final try failed */=0A= if (lastsector) { /* we already found the last sector */=0A= lbnum=3Dlastsector; /* try #3, alternative backup anchor */=0A= terminate=3D1; /* but thats just about enough, then! */=0A= } else {=0A= /* TODO: find last sector of the disc (this is optional) */=0A= if (lastsector) lbnum=3Dlastsector-256; /* try #2, backup anchor = */=0A= ! else goto bail; /* unable to find last sector = */=0A= }=0A= } else break; /* it is an anchor! continue... = */=0A= }=0A= ***************=0A= *** 413,419 ****=0A= if ((!part->valid) || (!volvalid)) = UDFExtentAD(&Anchor[24],&MVDS_length,&MVDS_location); /* backup volume = descriptor */=0A= } while (i-- && ((!part->valid) || (!volvalid)));=0A= =0A= ! return (part->valid); /* we only care for the partition, not the = volume */=0A= }=0A= =0A= =0A= --- 440,451 ----=0A= if ((!part->valid) || (!volvalid)) = UDFExtentAD(&Anchor[24],&MVDS_length,&MVDS_location); /* backup volume = descriptor */=0A= } while (i-- && ((!part->valid) || (!volvalid)));=0A= =0A= ! retval =3D part->valid; /* we only care for the partition, not the = volume */=0A= ! =0A= ! bail:=0A= ! free(LogBlock);=0A= ! free(Anchor);=0A= ! return retval;=0A= }=0A= =0A= =0A= ***************=0A= *** 426,447 ****=0A= =0A= uint32_t UDFFindFile (int fd, char *filename, off_t *size)=0A= {=0A= ! uint8_t LogBlock[DVD_VIDEO_LB_LEN];=0A= uint8_t filetype;=0A= ! uint32_t lbnum;=0A= uint16_t TagID;=0A= struct AD RootICB,File,ICB;=0A= ! char tokenline[MAX_FILE_LEN] =3D "";=0A= char *token;=0A= off_t lb_number;=0A= - =0A= int Partition=3D0; /* this is the standard location for DVD Video = */=0A= =0A= ! strcat (tokenline,filename);=0A= =0A= /* Find partition */=0A= if (!UDFFindPartition(fd, Partition,&partition))=0A= ! return 0;=0A= =0A= /* Find root dir ICB */=0A= lbnum=3Dpartition.Start;=0A= --- 458,486 ----=0A= =0A= uint32_t UDFFindFile (int fd, char *filename, off_t *size)=0A= {=0A= ! uint8_t *LogBlock;=0A= uint8_t filetype;=0A= ! uint32_t lbnum, retval =3D 0;=0A= uint16_t TagID;=0A= struct AD RootICB,File,ICB;=0A= ! char *tokenline;=0A= char *token;=0A= off_t lb_number;=0A= int Partition=3D0; /* this is the standard location for DVD Video = */=0A= + =0A= + LogBlock =3D (uint8_t*)malloc(DVD_VIDEO_LB_LEN);=0A= + tokenline =3D (char*)malloc(MAX_FILE_LEN);=0A= + if ((LogBlock =3D=3D NULL) || (tokenline =3D=3D NULL)) {=0A= + fprintf(stderr, "%s: malloc failed\n", __FUNCTION__);=0A= + goto bail;=0A= + }=0A= + memset(tokenline, 0, MAX_FILE_LEN);=0A= =0A= ! strncat (tokenline,filename,MAX_FILE_LEN);=0A= =0A= /* Find partition */=0A= if (!UDFFindPartition(fd, Partition,&partition))=0A= ! goto bail;=0A= =0A= /* Find root dir ICB */=0A= lbnum=3Dpartition.Start;=0A= ***************=0A= *** 456,478 ****=0A= UDFAD(&LogBlock[400],&RootICB,UDFADlong);=0A= } while ((lbnum=3DnMaxFiles)=0A= ! return;=0A= =0A= }=0A= =0A= --- 634,644 ----=0A= if (strcmp (filename,"")) {=0A= =0A= dest =3D file_list[*nFiles];=0A= ! strncpy (dest,filename,256);=0A= (*nFiles)++;=0A= =0A= if ((*nFiles)>=3DnMaxFiles)=0A= ! goto bail;=0A= =0A= }=0A= =0A= ***************=0A= *** 600,604 ****=0A= --- 652,662 ----=0A= token=3Dntoken;=0A= ntoken=3Dstrtok(NULL,"/");=0A= }=0A= + =0A= + bail:=0A= + free(LogBlock);=0A= + free(tokenline);=0A= + free(filename);=0A= + return;=0A= }=0A= =0A= ------_=_NextPart_000_01C08420.A4E19140-- To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-multimedia" in the body of the message From owner-freebsd-multimedia Sun Jan 21 20:49:59 2001 Delivered-To: freebsd-multimedia@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 4909637B400 for ; Sun, 21 Jan 2001 20:49:30 -0800 (PST) Received: (from scottl@localhost) by freefall.freebsd.org (8.11.1/8.11.1) id f0M4nUh59958 for freebsd-multimedia@freebsd.org; Sun, 21 Jan 2001 20:49:30 -0800 (PST) (envelope-from scottl) Date: Sun, 21 Jan 2001 20:49:30 -0800 (PST) From: Message-Id: <200101220449.f0M4nUh59958@freefall.freebsd.org> To: freebsd-multimedia@freebsd.org Subject: Let's try this again Sender: owner-freebsd-multimedia@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Yeah, Outlook sucks, sorry about that. Here are the pr0n DVD enabling patches again. Scott diff -c xine-0.3.5/input/dvd_udf.c xine-0.3.5.new/input/dvd_udf.c *** xine-0.3.5/input/dvd_udf.c Fri Jan 12 16:38:15 2001 --- xine-0.3.5.new/input/dvd_udf.c Sun Jan 21 18:33:07 2001 *************** *** 25,30 **** --- 25,31 ---- #include + #include #include #include #include *************** *** 275,284 **** int UDFMapICB (int fd, struct AD ICB, uint8_t *FileType, struct AD *File) { ! uint8_t LogBlock[DVD_VIDEO_LB_LEN]; uint32_t lbnum; uint16_t TagID; lbnum=partition.Start+ICB.Location; do { --- 276,290 ---- int UDFMapICB (int fd, struct AD ICB, uint8_t *FileType, struct AD *File) { ! uint8_t *LogBlock; uint32_t lbnum; uint16_t TagID; + if ((LogBlock = (uint8_t*)malloc(DVD_VIDEO_LB_LEN)) == NULL) { + fprintf(stderr, "%s: malloc failed\n", __FUNCTION__); + return 0; + } + lbnum=partition.Start+ICB.Location; do { *************** *** 287,296 **** --- 293,304 ---- if (TagID==261) { UDFFileEntry(LogBlock,FileType,File); + free(LogBlock); return 1; }; } while ((lbnum<=partition.Start+ICB.Location+(ICB.Length-1)/DVD_VIDEO_LB_LEN) && (TagID!=261)); + free(LogBlock); return 0; } *************** *** 303,315 **** int UDFScanDir (int fd, struct AD Dir, char *FileName, struct AD *FileICB) { ! uint8_t LogBlock[DVD_VIDEO_LB_LEN*30]; uint32_t lbnum, lb_dir_end, offset; uint16_t TagID; uint8_t filechar; ! char filename[MAX_FILE_LEN]; ! int p; /* * read complete directory --- 311,329 ---- int UDFScanDir (int fd, struct AD Dir, char *FileName, struct AD *FileICB) { ! uint8_t *LogBlock; uint32_t lbnum, lb_dir_end, offset; uint16_t TagID; uint8_t filechar; ! char *filename; ! int p, retval = 0; + LogBlock = (uint8_t*)malloc(DVD_VIDEO_LB_LEN * 30); + filename = (char*)malloc(MAX_FILE_LEN); + if ((LogBlock == NULL) || (filename == NULL)) { + fprintf(stderr, "%s: malloc failed\n", __FUNCTION__); + goto bail; + } /* * read complete directory *************** *** 335,347 **** if (TagID==257) { p += UDFFileIdentifier(&LogBlock[p],&filechar,filename,FileICB); ! if (!strcasecmp (FileName,filename)) ! return 1; } else p=offset; } ! return 0; } --- 349,368 ---- if (TagID==257) { p += UDFFileIdentifier(&LogBlock[p],&filechar,filename,FileICB); ! if (!strcasecmp (FileName,filename)) { ! retval = 1; ! goto bail; ! } } else p=offset; } ! retval = 0; ! ! bail: ! free(LogBlock); ! free(filename); ! return retval; } *************** *** 354,365 **** int UDFFindPartition (int fd, int partnum, struct Partition *part) { ! uint8_t LogBlock[DVD_VIDEO_LB_LEN],Anchor[DVD_VIDEO_LB_LEN]; uint32_t lbnum,MVDS_location,MVDS_length; uint16_t TagID; uint32_t lastsector; ! int i,terminate,volvalid; /* find anchor */ lastsector=0; --- 375,392 ---- int UDFFindPartition (int fd, int partnum, struct Partition *part) { ! uint8_t *LogBlock,*Anchor; uint32_t lbnum,MVDS_location,MVDS_length; uint16_t TagID; uint32_t lastsector; ! int i,terminate,volvalid,retval = 0; + LogBlock = (uint8_t*)malloc(DVD_VIDEO_LB_LEN); + Anchor = (uint8_t*)malloc(DVD_VIDEO_LB_LEN); + if ((LogBlock == NULL) || (Anchor == NULL)) { + fprintf(stderr, "%s: malloc failed\n", __FUNCTION__); + goto bail; + } /* find anchor */ lastsector=0; *************** *** 373,386 **** TagID=0; if (TagID!=2) { /* not an anchor? */ ! if (terminate) return 0; /* final try failed */ if (lastsector) { /* we already found the last sector */ lbnum=lastsector; /* try #3, alternative backup anchor */ terminate=1; /* but thats just about enough, then! */ } else { /* TODO: find last sector of the disc (this is optional) */ if (lastsector) lbnum=lastsector-256; /* try #2, backup anchor */ ! else return 0; /* unable to find last sector */ } } else break; /* it is an anchor! continue... */ } --- 400,413 ---- TagID=0; if (TagID!=2) { /* not an anchor? */ ! if (terminate) goto bail; /* final try failed */ if (lastsector) { /* we already found the last sector */ lbnum=lastsector; /* try #3, alternative backup anchor */ terminate=1; /* but thats just about enough, then! */ } else { /* TODO: find last sector of the disc (this is optional) */ if (lastsector) lbnum=lastsector-256; /* try #2, backup anchor */ ! else goto bail; /* unable to find last sector */ } } else break; /* it is an anchor! continue... */ } *************** *** 413,419 **** if ((!part->valid) || (!volvalid)) UDFExtentAD(&Anchor[24],&MVDS_length,&MVDS_location); /* backup volume descriptor */ } while (i-- && ((!part->valid) || (!volvalid))); ! return (part->valid); /* we only care for the partition, not the volume */ } --- 440,451 ---- if ((!part->valid) || (!volvalid)) UDFExtentAD(&Anchor[24],&MVDS_length,&MVDS_location); /* backup volume descriptor */ } while (i-- && ((!part->valid) || (!volvalid))); ! retval = part->valid; /* we only care for the partition, not the volume */ ! ! bail: ! free(LogBlock); ! free(Anchor); ! return retval; } *************** *** 426,447 **** uint32_t UDFFindFile (int fd, char *filename, off_t *size) { ! uint8_t LogBlock[DVD_VIDEO_LB_LEN]; uint8_t filetype; ! uint32_t lbnum; uint16_t TagID; struct AD RootICB,File,ICB; ! char tokenline[MAX_FILE_LEN] = ""; char *token; off_t lb_number; - int Partition=0; /* this is the standard location for DVD Video */ ! strcat (tokenline,filename); /* Find partition */ if (!UDFFindPartition(fd, Partition,&partition)) ! return 0; /* Find root dir ICB */ lbnum=partition.Start; --- 458,486 ---- uint32_t UDFFindFile (int fd, char *filename, off_t *size) { ! uint8_t *LogBlock; uint8_t filetype; ! uint32_t lbnum, retval = 0; uint16_t TagID; struct AD RootICB,File,ICB; ! char *tokenline; char *token; off_t lb_number; int Partition=0; /* this is the standard location for DVD Video */ + + LogBlock = (uint8_t*)malloc(DVD_VIDEO_LB_LEN); + tokenline = (char*)malloc(MAX_FILE_LEN); + if ((LogBlock == NULL) || (tokenline == NULL)) { + fprintf(stderr, "%s: malloc failed\n", __FUNCTION__); + goto bail; + } + memset(tokenline, 0, MAX_FILE_LEN); ! strncat (tokenline,filename,MAX_FILE_LEN); /* Find partition */ if (!UDFFindPartition(fd, Partition,&partition)) ! goto bail; /* Find root dir ICB */ lbnum=partition.Start; *************** *** 456,478 **** UDFAD(&LogBlock[400],&RootICB,UDFADlong); } while ((lbnum=nMaxFiles) ! return; } --- 634,644 ---- if (strcmp (filename,"")) { dest = file_list[*nFiles]; ! strncpy (dest,filename,256); (*nFiles)++; if ((*nFiles)>=nMaxFiles) ! goto bail; } *************** *** 600,604 **** --- 652,662 ---- token=ntoken; ntoken=strtok(NULL,"/"); } + + bail: + free(LogBlock); + free(tokenline); + free(filename); + return; } To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-multimedia" in the body of the message From owner-freebsd-multimedia Sun Jan 21 22: 2:14 2001 Delivered-To: freebsd-multimedia@freebsd.org Received: from www.evil.2y.net (ip-216-23-53-20.adsl.one.net [216.23.53.20]) by hub.freebsd.org (Postfix) with ESMTP id 9211237B401 for ; Sun, 21 Jan 2001 22:01:56 -0800 (PST) Received: (from cokane@localhost) by www.evil.2y.net (8.11.1/8.11.1) id f0M6EWY05368; Mon, 22 Jan 2001 01:14:32 -0500 (EST) (envelope-from cokane) Date: Mon, 22 Jan 2001 01:14:32 -0500 From: Coleman Kane To: Stephen Hocking Cc: multimedia@freebsd.org, dri-devel@lists.sourceforge.net, devel@xfree86.org Subject: Re: Glide3 CVS now working on FreeBSD Message-ID: <20010122011432.B2151@cokane.yi.org> References: <200101210547.f0L5lBe00426@bloop.craftncomp.com> Mime-Version: 1.0 Content-Type: multipart/signed; micalg=pgp-md5; protocol="application/pgp-signature"; boundary="lEGEL1/lMxI0MVQ2" X-Mailer: Mutt 1.0.1i In-Reply-To: <200101210547.f0L5lBe00426@bloop.craftncomp.com>; from shocking@houston.rr.com on Sun, Jan 21, 2001 at 12:47:44AM -0500 X-Vim: vim:tw=70:ts=4:sw=4 Sender: owner-freebsd-multimedia@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org --lEGEL1/lMxI0MVQ2 Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: quoted-printable Hello, Steve. I'm the person who had been working on the /dev/3dfx device support for FreeBSD. I had planned on working on glide myself, but became r= ather busy on an internship at Texas Instruments. If you want an extra set of han= ds to help get this going, I'd be glad to work with you. Stephen Hocking had the audacity to say: >=20 > I've managed to compile up a version of the latest glide3 that gives me O= penGL=20 > acceleration on FreeBSD with a Voodoo3 under Xfree86-4.0.2 (although only= as a=20 > user - root fails to authenticate for some reason). I'll test it on a Voo= doo5=20 > once I get one. It was rather tedious work, (basically looking for every = ifdef=20 > involving linux and making the appropriate additions) and once I figure o= ut=20 > how to tweak autoconf/automake to use the appropriate files I'll post a b= unch=20 > of patches. >=20 > My next step is to start working on getting the latest DRI code to work u= nder=20 > FreeBSD. I've chosen the Voodoo stuff to do this because it has the simpl= est=20 > kernel drivers (unlike my old G400). I guess the DRI people can poke me a= s=20 > needed - I see a lot of work has gone on with the new Voodoo drivers plus= the=20 > Radeon. >=20 >=20 > Stephen > --=20 > The views expressed above are not those of PGS Tensor. >=20 > "We've heard that a million monkeys at a million keyboards could prod= uce > the Complete Works of Shakespeare; now, thanks to the Internet, we k= now > this is not true." Robert Wilensky, University of Califor= nia >=20 >=20 >=20 >=20 > To Unsubscribe: send mail to majordomo@FreeBSD.org > with "unsubscribe freebsd-multimedia" in the body of the message >=20 --lEGEL1/lMxI0MVQ2 Content-Type: application/pgp-signature -----BEGIN PGP SIGNATURE----- Version: GnuPG v1.0.4 (FreeBSD) Comment: For info see http://www.gnupg.org iD8DBQE6a8/IERViMObJ880RAasNAKDkAELzuajrRmLQsh5N8mRu7zH4pACfYws7 bIrhH7tf+V2j7QFouE0EGzg= =lZtN -----END PGP SIGNATURE----- --lEGEL1/lMxI0MVQ2-- To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-multimedia" in the body of the message From owner-freebsd-multimedia Mon Jan 22 6:26:30 2001 Delivered-To: freebsd-multimedia@freebsd.org Received: from smtpproxy1.mitre.org (mb-20-100.mitre.org [129.83.20.100]) by hub.freebsd.org (Postfix) with ESMTP id 6AECC37B402 for ; Mon, 22 Jan 2001 06:26:11 -0800 (PST) Received: from avsrv1.mitre.org (avsrv1.mitre.org [129.83.20.58]) by smtpproxy1.mitre.org (8.9.3/8.9.3) with ESMTP id JAA11707 for ; Mon, 22 Jan 2001 09:26:04 -0500 (EST) Received: from mailsrv2.mitre.org (mailsrv2.mitre.org [129.83.221.17]) by smtpsrv1.mitre.org (8.9.3/8.9.3) with ESMTP id JAA23507 for ; Mon, 22 Jan 2001 09:26:03 -0500 (EST) Received: from mitre.org ([128.29.145.140]) by mailsrv2.mitre.org (Netscape Messaging Server 4.15) with ESMTP id G7KIRF00.QJK; Mon, 22 Jan 2001 09:26:03 -0500 Message-ID: <3A6C4302.432CF0D7@mitre.org> Date: Mon, 22 Jan 2001 09:26:10 -0500 From: "Andresen,Jason R." X-Mailer: Mozilla 4.75 [en]C-20000818M (Win98; U) X-Accept-Language: en MIME-Version: 1.0 To: Nick Sayer Cc: freebsd-multimedia@FreeBSD.ORG Subject: Re: DVD playback References: <200101210556.f0L5u1F73910@medusa.kfu.com> Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: 7bit Sender: owner-freebsd-multimedia@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Nick Sayer wrote: > > I got xine running and have tested it out with a couple of unencrypted DVDs > (pr0n seems to be mostly unencrypted. Once again, adult entertainment leads > the traditional industry in understanding technology). It seems to work > pretty well modulo some bugs, although it takes most of an Athlon 600 > to do it, and I can't get it really to do anything except play the individual > vob files (dvd://vts_nn_m.vob). Playing with it over the weekend, I got the same results, unfortunatly only have a PII 400, so the playback was SLOWWW. All in all, I seemed to get approximatly 1/2 normal speed out of xine (which xine will do sometimes just for fun), and I couldn't figure out any way to turn on the subtitles. I think this is a feature of xine itself, as software windows players seem to work on machines as slow as a PII 300, and X doesn't appear to be taking a lot of CPU time. > It would be naughty to suggest that I have done anything more than this. > However, speaking in a purely hypothetical vane, I can suggest one thing > that would be something someone would have to overcome. > > Pioneer used to make a drive called a 303. They currently make a drive > that is model 305. The major difference between the two is that the 305 > has region locking in the drive itself. The 303 did not. The wrinkle is > that the 305 must be told at least once (and no more than 5 times) which > region to accept. If you never tell it, it will petulently refuse to play > any region locked media at all. If someone were to wish to be naughty, > one would have to plug their DVD drive into a Windows box and set the > region once before attempting to use DeCSS or other naughty software > to playback encrypted media. Of course, this would not be required on a > drive without region locking, but all drives now come with it, unfortunately. > > I have not read the DMCA. I hope it dies in the courts. Fair use would suggest > that it would be legal to set up a decrypting service for people's DVDs. > Mail in a region 2 DVD and $20 and get back your DVD and a copy of it as an > MPEG-4 CD-R. So long as the conversion house doesn't preserve a copy of > it, this would be as legal as PAL-to-NTSC conversion for personal use (which > I believe *is* legal, isn't it?). Well IANAL, but from what I've seen, the MPAA is actively trying to outlaw a lot of things most people consider "fair use" including making backup copies, taking a DVD player you own apart, or even playing movies from outside of your own country (this one really burns me up). Even more unfortunate, they seem to be succeeding. Dang now I'm off on a tangent, I'll stop now. -- _ _ _ ___ ____ ___ ______________________________________ / \/ \ | ||_ _|| _ \|___| | Jason Andresen -- jandrese@mitre.org / /\/\ \ | | | | | |/ /|_|_ | Views expressed may not reflect those /_/ \_\|_| |_| |_|\_\|___| | of the Mitre Corporation. To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-multimedia" in the body of the message From owner-freebsd-multimedia Mon Jan 22 9: 0:52 2001 Delivered-To: freebsd-multimedia@freebsd.org Received: from f1node03.rhrz.uni-bonn.de (node03.rhrz.uni-bonn.de [131.220.18.133]) by hub.freebsd.org (Postfix) with ESMTP id 2D07737B69D for ; Mon, 22 Jan 2001 09:00:35 -0800 (PST) Received: from moritz.alleswirdgelber (ascend-tk-p208.dialin.uni-bonn.de [131.220.244.208]) by f1node03.rhrz.uni-bonn.de (8.9.3/8.9.3) with ESMTP id SAA93438; Mon, 22 Jan 2001 18:00:29 +0100 Received: from localhost (uzs106@localhost [127.0.0.1]) by moritz.alleswirdgelber (8.9.3/8.9.3) with ESMTP id QAA00774; Mon, 22 Jan 2001 16:16:16 +0100 (CET) (envelope-from uzs106@ibm.rhrz.uni-bonn.de) Date: Mon, 22 Jan 2001 16:16:16 +0100 (CET) From: Heiko Recktenwald X-Sender: uzs106@moritz.alleswirdgelber To: Nick Sayer Cc: freebsd-multimedia@FreeBSD.ORG Subject: Re: DVD playback In-Reply-To: <200101210556.f0L5u1F73910@medusa.kfu.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 Hi, On Sat, 20 Jan 2001, Nick Sayer wrote: > I have not read the DMCA. I hope it dies in the courts. Fair use would suggest > that it would be legal to set up a decrypting service for people's DVDs. Well, this all is more like wind west than about fairness. We live in a global village that gets smaller every day and the Hollywood industry managed with the help of dont know to establish a region system, as they have it with cinema. In Monaco, Reading film (?), there are some pages about the history of Hollywood and courts. There were some antitrust cases in 1946. Precedences ? H. To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-multimedia" in the body of the message From owner-freebsd-multimedia Mon Jan 22 10:37:22 2001 Delivered-To: freebsd-multimedia@freebsd.org Received: from bundy.zhadum.de (pD9015A5E.dip.t-dialin.net [217.1.90.94]) by hub.freebsd.org (Postfix) with ESMTP id 905ED37B400 for ; Mon, 22 Jan 2001 10:37:00 -0800 (PST) Received: (from magick@localhost) by bundy.zhadum.de (8.11.2/8.11.0) id f0MIapI01373 for multimedia@FreeBSD.ORG; Mon, 22 Jan 2001 19:36:51 +0100 (CET) Date: Mon, 22 Jan 2001 19:36:51 +0100 From: Mario Kemper To: multimedia@FreeBSD.ORG Subject: NextView-Decoder for *BSD Message-ID: <20010122193651.A1221@bundy.zhadum.de> Mail-Followup-To: multimedia@FreeBSD.ORG Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline User-Agent: Mutt/1.2.5i Sender: owner-freebsd-multimedia@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Hi, 1.) What is NextView: NextView is an electronic programme guide that is transmitted together with Teletext. Currently nexTView EPG is transmitted by the following TV stations: in Germany and Austria: Pro7, 3Sat, RTL-II. in Switzerland: EuroNews, TSR1 and others. in France: Canal+, M6, TV5. If you reveive one of these programmes, you might be interested. On nxtvepg.tripod.com there's a decoder for Linux for which i did the NetBSD port. As FreeBSD and OpenBSD use the same bktr-driver (it's the FreeBSD driver anyway) it should work on these OS's almost out of the box. The changes i did are marked whith #ifdef __NetBSD__ The port for NetBSD is merged into the file epgvbi/btdrv4linux.c Except for some #include-directives it should work if you substitute the #ifdef __NetBSD__ by #if defined(__NetBSD__) || defined(__FreeBSD__) || defined(__OpenBSD__) but i can't test it. This is a prerelease for Linux,Windows and NetBSD and i would like to have it working for the other BSD's at release time. -- Mario Kemper magick@bundy.zhadum.de To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-multimedia" in the body of the message From owner-freebsd-multimedia Mon Jan 22 21:23: 7 2001 Delivered-To: freebsd-multimedia@freebsd.org Received: from mother.ludd.luth.se (mother.ludd.luth.se [130.240.16.3]) by hub.freebsd.org (Postfix) with ESMTP id E2EE237B401 for ; Mon, 22 Jan 2001 21:22:50 -0800 (PST) Received: from sister.ludd.luth.se (sister.ludd.luth.se [130.240.16.77]) by mother.ludd.luth.se (8.9.3+Sun/8.9.3) with ESMTP id GAA15868 for ; Tue, 23 Jan 2001 06:22:28 +0100 (MET) From: Peter B Received: (pb@localhost) by sister.ludd.luth.se (8.6.11/8.6.11) id GAA01331 for freebsd-multimedia@freebsd.org; Tue, 23 Jan 2001 06:22:48 +0100 Message-Id: <200101230522.GAA01331@sister.ludd.luth.se> Subject: graphics/avifile binary? To: freebsd-multimedia@freebsd.org Date: Tue, 23 Jan 2001 06:22:48 +0100 (MET) X-Mailer: ELM [version 2.4ME+ PL54 (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 Anyone have a compiled binary of the graphics/avifile port? (Mpeg4 playback) /Peter To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-multimedia" in the body of the message From owner-freebsd-multimedia Tue Jan 23 4:25:28 2001 Delivered-To: freebsd-multimedia@freebsd.org Received: from relay2.agava.net.ru (2.oivt.mipt.ru [193.125.142.2]) by hub.freebsd.org (Postfix) with ESMTP id 20BA137B401 for ; Tue, 23 Jan 2001 04:25:05 -0800 (PST) Received: from juil.domain (juil.domain [192.168.1.50]) by relay2.agava.net.ru (Postfix) with ESMTP id 0C589435FA; Tue, 23 Jan 2001 15:25:01 +0300 (MSK) Date: Tue, 23 Jan 2001 15:25:09 +0300 (MSK) From: Ilya Martynov X-X-Sender: To: Cc: Alexander Matey Subject: Aureal card sound driver stops working 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, I've seen twice my Aureal Vortex 8810 card stops working after several days of uptime. Both times I've seen it after having XMMS playing mp3 files from NFS share for several days (my PC at work always up and I'm listen misic via headphones - so I often leave XMMS playing for several days). XMMS plays mp3s via esd. So I belive sound stop working if sound device /dev/dsp is keeped opened for several days. Applications that use sound occasionally find that /dev/dsp is busy. For example: $ esd /dev/dsp: Device busy I'm sure that nobody holds this device opened - I've checked it with lsof. /dev/dsp0.2, /dev/dsp0.3, /dev/dsp0.4 also are busy. The only solution I know is reboot. Last time (today) I've seen it on aureal drivers installed from port aureal-kmod-1.3_1. But I've seen it before when aureal drivers was compiled in kernel. I'm running 4.2-STABLE (last updated 5 days ago). My dmesg: Copyright (c) 1992-2001 The FreeBSD Project. Copyright (c) 1979, 1980, 1983, 1986, 1988, 1989, 1991, 1992, 1993, 1994 The Regents of the University of California. All rights reserved. FreeBSD 4.2-STABLE #0: Wed Jan 17 14:54:48 MSK 2001 root@juil.domain:/usr/obj/usr/src/sys/JUIL Timecounter "i8254" frequency 1193182 Hz CPU: Pentium II/Pentium II Xeon/Celeron (534.55-MHz 686-class CPU) Origin = "GenuineIntel" Id = 0x665 Stepping = 5 Features=0x183f9ff real memory = 133103616 (129984K bytes) avail memory = 126722048 (123752K bytes) Preloaded elf kernel "kernel" at 0xc02e0000. Preloaded elf module "agp.ko" at 0xc02e009c. Preloaded elf module "snd_pcm.ko" at 0xc02e0138. Pentium Pro MTRR support enabled md0: Malloc disk npx0: on motherboard npx0: INT 16 interface pcib0: on motherboard pci0: on pcib0 agp0: mem 0xde000000-0xde07ffff,0xd8000000-0xdbffffff irq 9 at device 1.0 on pci0 pcib1: at device 30.0 on pci0 pci1: on pcib1 pci1: (vendor=0x12eb, dev=0x0003) at 10.0 irq 9 dc0: port 0xc800-0xc87f mem 0xdd040000-0xdd0403ff irq 9 at device 11.0 on pci1 dc0: Ethernet address: 00:80:48:b3:48:2c miibus0: on dc0 amphy0: on miibus0 amphy0: 10baseT, 10baseT-FDX, 100baseTX, 100baseTX-FDX, auto isab0: at device 31.0 on pci0 isa0: on isab0 atapci0: port 0xf000-0xf00f at device 31.1 on pci0 ata0: at 0x1f0 irq 14 on atapci0 ata1: at 0x170 irq 15 on atapci0 pci0: at 31.2 irq 9 fdc0: at port 0x3f0-0x3f5,0x3f7 irq 6 drq 2 on isa0 atkbdc0: at port 0x60,0x64 on isa0 atkbd0: flags 0x1 irq 1 on atkbdc0 kbd0 at atkbd0 psm0: irq 12 on atkbdc0 psm0: model MouseMan+, device ID 0 vga0: at port 0x3c0-0x3df iomem 0xa0000-0xbffff on isa0 sc0: at flags 0x100 on isa0 sc0: VGA <16 virtual consoles, flags=0x300> sio0 at port 0x3f8-0x3ff irq 4 flags 0x10 on isa0 sio0: type 16550A sio1 at port 0x2f8-0x2ff irq 3 on isa0 sio1: type 16550A ppc0: at port 0x378-0x37f irq 7 on isa0 ppc0: SMC-like chipset (ECP/EPP/PS2/NIBBLE) in COMPATIBLE mode ppc0: FIFO with 16/16/8 bytes threshold plip0: on ppbus0 lpt0: on ppbus0 lpt0: Interrupt-driven port ppi0: on ppbus0 ad0: 6187MB [13410/15/63] at ata0-master UDMA33 Mounting root from ufs:/dev/ad0s1a pcm0: port 0xc400-0xc407,0xc000-0xc007 mem 0xdd000000-0xdd03ffff irq 9 at device 10.0 on pci1 nfs send error 32 for server hellbell:/m/add5/CODA/mp3 nfs send error 32 for server hellbell:/m/add5/CODA/mp3 pcm0: play interrupt timeout, channel dead nfs send error 32 for server hellbell:/m/add5/CODA/mp3 nfs send error 32 for server hellbell:/m/add5/CODA/mp3 pcm0: play interrupt timeout, channel dead nfs send error 32 for server hellbell:/m/add5/CODA/mp3 nfs send error 32 for server hellbell:/m/add5/CODA/mp3 pcm0: play interrupt timeout, channel dead pcm0: play interrupt timeout, channel dead -- Ilya Martynov AGAVA Software Company, http://www.agava.com To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-multimedia" in the body of the message From owner-freebsd-multimedia Tue Jan 23 13:51:18 2001 Delivered-To: freebsd-multimedia@freebsd.org Received: from mailman.sprintlabs.com (mx.sprintlabs.com [208.30.174.2]) by hub.freebsd.org (Postfix) with ESMTP id BE84C37B69E for ; Tue, 23 Jan 2001 13:51:00 -0800 (PST) Received: by mailman.sprintlabs.com with Internet Mail Service (5.5.2652.78) id ; Tue, 23 Jan 2001 13:50:59 -0800 Received: from sprintlabs.com (ip199-2-53-135.sprintlabs.com [199.2.53.135]) by mailman.sprintlabs.com with SMTP (Microsoft Exchange Internet Mail Service Version 5.5.2652.78) id CJJQ0215; Tue, 23 Jan 2001 13:50:54 -0800 From: Steven Davidson Reply-To: Steven Davidson To: Peter B Cc: freebsd-multimedia@freebsd.org Message-ID: <3A6DFE37.93FF6A37@sprintlabs.com> Date: Tue, 23 Jan 2001 13:57:11 -0800 X-Mailer: Mozilla 4.76 [en] (X11; U; FreeBSD 4.1.1-RELEASE i386) X-Accept-Language: en MIME-Version: 1.0 Subject: Re: graphics/avifile binary? References: <200101230522.GAA01331@sister.ludd.luth.se> Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: 7bit Sender: owner-freebsd-multimedia@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Peter B wrote: > Anyone have a compiled binary of the graphics/avifile port? (Mpeg4 playback) > > /Peter > > To Unsubscribe: send mail to majordomo@FreeBSD.org > with "unsubscribe freebsd-multimedia" in the body of the message I just compiled this on 4.1-RELEASE. No problems. It runs but I haven't had time to get an avi file to really check it. To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-multimedia" in the body of the message From owner-freebsd-multimedia Tue Jan 23 14: 3: 5 2001 Delivered-To: freebsd-multimedia@freebsd.org Received: from quack.kfu.com (quack.kfu.com [205.178.90.194]) by hub.freebsd.org (Postfix) with ESMTP id 99D6237B6A8 for ; Tue, 23 Jan 2001 14:02:48 -0800 (PST) Received: from medusa.kfu.com (medusa.kfu.com [205.178.90.222]) by quack.kfu.com (8.11.1/8.11.1) with ESMTP id f0NM2l740409 for ; Tue, 23 Jan 2001 14:02:48 -0800 (PST) (envelope-from nsayer@medusa.kfu.com) Received: (from nsayer@localhost) by medusa.kfu.com (8.11.1/8.11.0) id f0NM2l606729 for freebsd-multimedia@freebsd.org; Tue, 23 Jan 2001 14:02:47 -0800 (PST) (envelope-from nsayer) Date: Tue, 23 Jan 2001 14:02:47 -0800 (PST) From: Nick Sayer Message-Id: <200101232202.f0NM2l606729@medusa.kfu.com> To: freebsd-multimedia@freebsd.org Subject: Re: DVD playback Sender: owner-freebsd-multimedia@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Just upgraded to xine 0.3.6 and it works much, much better now. Most disks now can generate a playlist when you hit the 'dvd' button, and can now seamlessly play the playlist rather than simply playing the .VOB files. Some disks seemingly cannot, however. The symptom is that attempting to select something out of the playlist shows 'error in PCGI' on stdout. Those disks can't even do the dvd://tncntn syntax. Now what we need is the 'menu' button / state machine system! Oh.. And multi-angle disks don't work either.... And coincidently, most of my non-encrypted disks have quite a bit of multi-angle content (once again, I must reiterate that throughout history pr0n has always been the leader in the technology of the day. :-) ). To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-multimedia" in the body of the message From owner-freebsd-multimedia Tue Jan 23 22:39:41 2001 Delivered-To: freebsd-multimedia@freebsd.org Received: from mother.ludd.luth.se (mother.ludd.luth.se [130.240.16.3]) by hub.freebsd.org (Postfix) with ESMTP id 4B75137B400 for ; Tue, 23 Jan 2001 22:39:23 -0800 (PST) Received: from sister.ludd.luth.se (sister.ludd.luth.se [130.240.16.77]) by mother.ludd.luth.se (8.9.3+Sun/8.9.3) with ESMTP id HAA04661 for ; Wed, 24 Jan 2001 07:39:00 +0100 (MET) From: Peter B Received: (pb@localhost) by sister.ludd.luth.se (8.6.11/8.6.11) id HAA06841 for freebsd-multimedia@freebsd.org; Wed, 24 Jan 2001 07:39:20 +0100 Message-Id: <200101240639.HAA06841@sister.ludd.luth.se> Subject: Mpeg4 under FreeBSD p2 To: freebsd-multimedia@freebsd.org Date: Wed, 24 Jan 2001 07:39:20 +0100 (MET) X-Mailer: ELM [version 2.4ME+ PL54 (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 have tried some mpeg4/divx playing on a P-III/800 MHz, 128 MB ram, NVidia Geforce2. FreeBSD 4.2 + XFree v4.0.2, And here are some results: It turns out that 'top' idle is not going below 45% at any single instance. Thus P-III 440 MHz should be enough? Resizing the movie screen does not affect the cpu load any significantly. Switching to 32 bpp, and renice'ing the avifile process seems to help avoiding involuntary "pauses". FreeBSD avifile can be found at (which I got mailed to me): http://www.ludd.luth.se/~pb/avifile-0.53.1_2.tgz The freebsd version has a tendency to "segmentation fault" to often. So I tried the linux player. And that seems to work more reliable. Anyone knows how much influence the graphics card acceleration has on the cpu load? /Peter To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-multimedia" in the body of the message From owner-freebsd-multimedia Tue Jan 23 22:48:27 2001 Delivered-To: freebsd-multimedia@freebsd.org Received: from cain.gsoft.com.au (genesi.lnk.telstra.net [139.130.136.161]) by hub.freebsd.org (Postfix) with ESMTP id 99CD237B401 for ; Tue, 23 Jan 2001 22:47:56 -0800 (PST) Received: from cain.gsoft.com.au (doconnor@cain [203.38.152.97]) by cain.gsoft.com.au (8.8.8/8.8.8) with ESMTP id RAA06248; Wed, 24 Jan 2001 17:17:17 +1030 (CST) (envelope-from doconnor@gsoft.com.au) Message-ID: X-Mailer: XFMail 1.4.0 on FreeBSD X-Priority: 3 (Normal) Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: 8bit MIME-Version: 1.0 In-Reply-To: <200101240639.HAA06841@sister.ludd.luth.se> Date: Wed, 24 Jan 2001 17:17:16 +1030 (CST) From: "Daniel O'Connor" To: Peter B Subject: RE: Mpeg4 under FreeBSD p2 Cc: freebsd-multimedia@freebsd.org Sender: owner-freebsd-multimedia@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org On 24-Jan-01 Peter B wrote: > The freebsd version has a tendency to "segmentation fault" to often. So I tried > the linux player. And that seems to work more reliable. > > Anyone knows how much influence the graphics card acceleration has on the cpu > load? Well, I am suprised that resizing the window made no difference because I didn't think X4 supported the Xv extension with TNT2 cards.. I run X3.3.6 on a PII350 and a TNT2 card and it is worse than real time (by a large fairly large margin I think) I suspect that if I had a system which supported the Xv extension and could get the video card to do YUV -> RGB it would play in real time. (eg under Windows I can play the same animation in real time). Still, it is a good start :) --- Daniel O'Connor software and network engineer for Genesis Software - http://www.gsoft.com.au "The nice thing about standards is that there are so many of them to choose from." -- Andrew Tanenbaum To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-multimedia" in the body of the message From owner-freebsd-multimedia Wed Jan 24 3: 3: 7 2001 Delivered-To: freebsd-multimedia@freebsd.org Received: from f1node03.rhrz.uni-bonn.de (node03.rhrz.uni-bonn.de [131.220.18.133]) by hub.freebsd.org (Postfix) with ESMTP id 7114737B401 for ; Wed, 24 Jan 2001 03:02:49 -0800 (PST) Received: from moritz.alleswirdgelber (ascend-tk-p76.dialin.uni-bonn.de [131.220.244.76]) by f1node03.rhrz.uni-bonn.de (8.9.3/8.9.3) with ESMTP id MAA87176; Wed, 24 Jan 2001 12:02:46 +0100 Received: from localhost (uzs106@localhost [127.0.0.1]) by moritz.alleswirdgelber (8.9.3/8.9.3) with ESMTP id DAA01123; Wed, 24 Jan 2001 03:35:55 +0100 (CET) (envelope-from uzs106@ibm.rhrz.uni-bonn.de) Date: Wed, 24 Jan 2001 03:35:55 +0100 (CET) From: Heiko Recktenwald X-Sender: uzs106@moritz.alleswirdgelber To: Steven Davidson Cc: freebsd-multimedia@FreeBSD.ORG Subject: Re: graphics/avifile binary? In-Reply-To: <3A6DFE37.93FF6A37@sprintlabs.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 Tue, 23 Jan 2001, Steven Davidson wrote: > Peter B wrote: > > > Anyone have a compiled binary of the graphics/avifile port? (Mpeg4 playback) > > > > /Peter > > > > To Unsubscribe: send mail to majordomo@FreeBSD.org > > with "unsubscribe freebsd-multimedia" in the body of the message > > I just compiled this on 4.1-RELEASE. No problems. Could it be compiled on 4.0 too ? > It runs but I haven't had time to get an avi file to really check it. A pity that there is also .asf. H. To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-multimedia" in the body of the message From owner-freebsd-multimedia Wed Jan 24 6:14:33 2001 Delivered-To: freebsd-multimedia@freebsd.org Received: from smtpproxy1.mitre.org (mb-20-100.mitre.org [129.83.20.100]) by hub.freebsd.org (Postfix) with ESMTP id 162E437B404 for ; Wed, 24 Jan 2001 06:14:14 -0800 (PST) Received: from avsrv1.mitre.org (avsrv1.mitre.org [129.83.20.58]) by smtpproxy1.mitre.org (8.9.3/8.9.3) with ESMTP id JAA03380 for ; Wed, 24 Jan 2001 09:14:13 -0500 (EST) Received: from mailsrv2.mitre.org (mailsrv2.mitre.org [129.83.221.17]) by smtpsrv1.mitre.org (8.9.3/8.9.3) with ESMTP id JAA08812 for ; Wed, 24 Jan 2001 09:14:12 -0500 (EST) Received: from mitre.org ([128.29.145.140]) by mailsrv2.mitre.org (Netscape Messaging Server 4.15) with ESMTP id G7O7JO00.ECT; Wed, 24 Jan 2001 09:14:12 -0500 Message-ID: <3A6EE33E.7717BE73@mitre.org> Date: Wed, 24 Jan 2001 09:14:22 -0500 From: "Andresen,Jason R." X-Mailer: Mozilla 4.75 [en]C-20000818M (Win98; U) X-Accept-Language: en MIME-Version: 1.0 To: Nick Sayer Cc: freebsd-multimedia@FreeBSD.ORG Subject: Re: DVD playback References: <200101232202.f0NM2l606729@medusa.kfu.com> Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: 7bit Sender: owner-freebsd-multimedia@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Nick Sayer wrote: > > Just upgraded to xine 0.3.6 and it works much, much better now. Most disks > now can generate a playlist when you hit the 'dvd' button, and can > now seamlessly play the playlist rather than simply playing the .VOB > files. > > Some disks seemingly cannot, however. The symptom is that attempting to > select something out of the playlist shows 'error in PCGI' on stdout. > Those disks can't even do the dvd://tncntn syntax. > > Now what we need is the 'menu' button / state machine system! > > Oh.. And multi-angle disks don't work either.... And coincidently, most of my > non-encrypted disks have quite a bit of multi-angle content (once again, > I must reiterate that throughout history pr0n has always been the leader > in the technology of the day. :-) ). > of the message I don't suppose anyone else has been seeing this case where xine always plays movies at half speed? On my version (0.3.6_1) and in fact for a long time now every movie I play starts out at half speed, and I have to stop and restart the movie (with either a seek or by pressing stop and then start again) before it plays at full speed. Also, DVDs always play at half speed, no matter what I do. If anyone else has this problem, please tell me, I'd like to diagnose what is causing the problem. Thanks. -- _ _ _ ___ ____ ___ ______________________________________ / \/ \ | ||_ _|| _ \|___| | Jason Andresen -- jandrese@mitre.org / /\/\ \ | | | | | |/ /|_|_ | Views expressed may not reflect those /_/ \_\|_| |_| |_|\_\|___| | of the Mitre Corporation. To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-multimedia" in the body of the message From owner-freebsd-multimedia Wed Jan 24 6:18:41 2001 Delivered-To: freebsd-multimedia@freebsd.org Received: from smtpproxy1.mitre.org (mb-20-100.mitre.org [129.83.20.100]) by hub.freebsd.org (Postfix) with ESMTP id CA10837B404 for ; Wed, 24 Jan 2001 06:18:23 -0800 (PST) Received: from avsrv1.mitre.org (avsrv1.mitre.org [129.83.20.58]) by smtpproxy1.mitre.org (8.9.3/8.9.3) with ESMTP id JAA04155 for ; Wed, 24 Jan 2001 09:18:23 -0500 (EST) Received: from mailsrv2.mitre.org (mailsrv2.mitre.org [129.83.221.17]) by smtpsrv1.mitre.org (8.9.3/8.9.3) with ESMTP id JAA09607 for ; Wed, 24 Jan 2001 09:18:22 -0500 (EST) Received: from mitre.org ([128.29.145.140]) by mailsrv2.mitre.org (Netscape Messaging Server 4.15) with ESMTP id G7O7QL00.MBG; Wed, 24 Jan 2001 09:18:22 -0500 Message-ID: <3A6EE439.69B5256A@mitre.org> Date: Wed, 24 Jan 2001 09:18:33 -0500 From: "Andresen,Jason R." X-Mailer: Mozilla 4.75 [en]C-20000818M (Win98; U) X-Accept-Language: en MIME-Version: 1.0 To: Peter B Cc: freebsd-multimedia@FreeBSD.ORG Subject: Re: Mpeg4 under FreeBSD p2 References: <200101240639.HAA06841@sister.ludd.luth.se> Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: 7bit Sender: owner-freebsd-multimedia@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Peter B wrote: > > I have tried some mpeg4/divx playing on a P-III/800 MHz, 128 MB ram, > NVidia Geforce2. FreeBSD 4.2 + XFree v4.0.2, And here are some results: > > It turns out that 'top' idle is not going below 45% at any single instance. > Thus P-III 440 MHz should be enough? > Resizing the movie screen does not affect the cpu load any significantly. > > Switching to 32 bpp, and renice'ing the avifile process seems to help avoiding > involuntary "pauses". > > FreeBSD avifile can be found at (which I got mailed to me): > http://www.ludd.luth.se/~pb/avifile-0.53.1_2.tgz > > The freebsd version has a tendency to "segmentation fault" to often. So I tried > the linux player. And that seems to work more reliable. > > Anyone knows how much influence the graphics card acceleration has on the cpu > load? Well on my PII-400 with a Matrox G200 on XFree 4.0.2, I can get avifile (from the ports, I don't get the crashing problem you apparently have) to play Mpeg4 files fullscreen flawlessly, although it takes a good chunck of CPU time. The player will start to skip if I run a disk and cpu intensive task in the background (pan decoding large files for instance). Also, some of the non-Mpeg4 codecs in avifile don't seem to play right, however all of those codecs are supported by xanim now. -- _ _ _ ___ ____ ___ ______________________________________ / \/ \ | ||_ _|| _ \|___| | Jason Andresen -- jandrese@mitre.org / /\/\ \ | | | | | |/ /|_|_ | Views expressed may not reflect those /_/ \_\|_| |_| |_|\_\|___| | of the Mitre Corporation. To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-multimedia" in the body of the message From owner-freebsd-multimedia Wed Jan 24 11:56:30 2001 Delivered-To: freebsd-multimedia@freebsd.org Received: from runaway.2sun.ru (runaway.2sun.ru [212.158.172.5]) by hub.freebsd.org (Postfix) with SMTP id A124C37B69F for ; Wed, 24 Jan 2001 11:56:13 -0800 (PST) Received: (qmail 86085 invoked by uid 1000); 24 Jan 2001 20:01:08 -0000 Date: Wed, 24 Jan 2001 23:01:08 +0300 From: Alex Povolotsky To: bruno schwander Cc: multimedia@freebsd.org Subject: Re: xine and VCD support Message-ID: <20010124230108.H77838@runaway.2sun.ru> References: <3A5CC1E9.15E30635@dvart.com> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline User-Agent: Mutt/1.2.5i In-Reply-To: <3A5CC1E9.15E30635@dvart.com>; from bschwand@dvart.com on Wed, Jan 10, 2001 at 12:11:21PM -0800 Sender: owner-freebsd-multimedia@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org On Wed, Jan 10, 2001 at 12:11:21PM -0800, bruno schwander wrote: > A patch is needed to the ata driver in order to read raw data. I > submitted the code to the xine team, anybody who wants it now is welcome > > -- *** atapi-cd.c Wed Jan 10 20:47:27 2001 > --- atapi-cd.c.original Wed Jan 10 20:48:35 2001 Isn't it The Cursed Patch, which cannot make it way into sources for... well, I bet for 2 years? Alex. To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-multimedia" in the body of the message From owner-freebsd-multimedia Wed Jan 24 12: 0:51 2001 Delivered-To: freebsd-multimedia@freebsd.org Received: from cis.ohio-state.edu (mail.cis.ohio-state.edu [164.107.115.5]) by hub.freebsd.org (Postfix) with ESMTP id 64EDD37B6A0 for ; Wed, 24 Jan 2001 12:00:34 -0800 (PST) Received: from epsilon.cis.ohio-state.edu (matey@epsilon.cis.ohio-state.edu [164.107.112.10]) by cis.ohio-state.edu (8.9.1/8.9.1) with ESMTP id PAA06990; Wed, 24 Jan 2001 15:00:12 -0500 (EST) Received: (from matey@localhost) by epsilon.cis.ohio-state.edu (8.9.1/8.9.1) id PAA18118; Wed, 24 Jan 2001 15:00:12 -0500 (EST) Date: Wed, 24 Jan 2001 15:00:04 -0500 From: Alexander Matey To: freebsd-multimedia@freebsd.org Cc: m_ilya@agava.com Subject: Re: Aureal card sound driver stops working Message-ID: <20010124150003.A3049@cis.ohio-state.edu> Mail-Followup-To: freebsd-multimedia@freebsd.org, m_ilya@agava.com References: Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline User-Agent: Mutt/1.2.5i In-Reply-To: ; from m_ilya@agava.com on Tue, Jan 23, 2001 at 03:25:09PM +0300 Sender: owner-freebsd-multimedia@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org On Tue, Jan 23, 2001 at 03:25:09PM +0300, Ilya Martynov wrote: > I've seen twice my Aureal Vortex 8810 card stops working after several days > of uptime. Both times I've seen it after having XMMS playing mp3 files from > NFS share for several days (my PC at work always up and I'm listen misic via > headphones - so I often leave XMMS playing for several days). XMMS plays mp3s > via esd. So I belive sound stop working if sound device /dev/dsp is keeped > opened for several days. I don't think it has anything to do with the driver itself. ... > pcm0: port 0xc400-0xc407,0xc000-0xc007 mem 0xdd000000-0xdd03ffff irq 9 at device 10.0 on pci1 > nfs send error 32 for server hellbell:/m/add5/CODA/mp3 > nfs send error 32 for server hellbell:/m/add5/CODA/mp3 > pcm0: play interrupt timeout, channel dead > nfs send error 32 for server hellbell:/m/add5/CODA/mp3 > nfs send error 32 for server hellbell:/m/add5/CODA/mp3 > pcm0: play interrupt timeout, channel dead > nfs send error 32 for server hellbell:/m/add5/CODA/mp3 > nfs send error 32 for server hellbell:/m/add5/CODA/mp3 > pcm0: play interrupt timeout, channel dead > pcm0: play interrupt timeout, channel dead With as much details as you gave me, it looks like these nfs timeouts cause the application that has opened the device to die silently without closing the device properly. newpcm still thinks that the device is open and doesn't let you reopen it. It is not a driver that checks whether the device is busy, it is newpcm that tracks open/close requests and keeps the record on a higher level. -- lx To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-multimedia" in the body of the message From owner-freebsd-multimedia Wed Jan 24 13:40:59 2001 Delivered-To: freebsd-multimedia@freebsd.org Received: from mother.ludd.luth.se (mother.ludd.luth.se [130.240.16.3]) by hub.freebsd.org (Postfix) with ESMTP id 417DC37B400 for ; Wed, 24 Jan 2001 13:40:42 -0800 (PST) Received: from sister.ludd.luth.se (sister.ludd.luth.se [130.240.16.77]) by mother.ludd.luth.se (8.9.3+Sun/8.9.3) with ESMTP id WAA07389 for ; Wed, 24 Jan 2001 22:40:20 +0100 (MET) From: Peter B Received: (pb@localhost) by sister.ludd.luth.se (8.6.11/8.6.11) id WAA09917 for freebsd-multimedia@freebsd.org; Wed, 24 Jan 2001 22:40:40 +0100 Message-Id: <200101242140.WAA09917@sister.ludd.luth.se> Subject: mpeg2 vs mpeg4 To: freebsd-multimedia@freebsd.org Date: Wed, 24 Jan 2001 22:40:39 +0100 (MET) X-Mailer: ELM [version 2.4ME+ PL54 (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 Is the cpu load less or more for mpeg2 playback than for mpeg4 playback ..? /pb To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-multimedia" in the body of the message From owner-freebsd-multimedia Wed Jan 24 16:35: 0 2001 Delivered-To: freebsd-multimedia@freebsd.org Received: from cain.gsoft.com.au (genesi.lnk.telstra.net [139.130.136.161]) by hub.freebsd.org (Postfix) with ESMTP id 634C437B400 for ; Wed, 24 Jan 2001 16:34:42 -0800 (PST) Received: from cain.gsoft.com.au (doconnor@cain [203.38.152.97]) by cain.gsoft.com.au (8.8.8/8.8.8) with ESMTP id LAA18650; Thu, 25 Jan 2001 11:04:31 +1030 (CST) (envelope-from doconnor@gsoft.com.au) Message-ID: X-Mailer: XFMail 1.4.0 on FreeBSD X-Priority: 3 (Normal) Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: 8bit MIME-Version: 1.0 In-Reply-To: <200101242140.WAA09917@sister.ludd.luth.se> Date: Thu, 25 Jan 2001 11:04:30 +1030 (CST) From: "Daniel O'Connor" To: Peter B Subject: RE: mpeg2 vs mpeg4 Cc: freebsd-multimedia@freebsd.org Sender: owner-freebsd-multimedia@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org On 24-Jan-01 Peter B wrote: > Is the cpu load less or more for mpeg2 playback than for mpeg4 playback ..? Less, mpeg4 is more CPU intensive. I can play mpeg2 in real time in FreeBSD, but not mpeg4 :) (yet ;) --- Daniel O'Connor software and network engineer for Genesis Software - http://www.gsoft.com.au "The nice thing about standards is that there are so many of them to choose from." -- Andrew Tanenbaum To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-multimedia" in the body of the message From owner-freebsd-multimedia Wed Jan 24 18:41:18 2001 Delivered-To: freebsd-multimedia@freebsd.org Received: from arg1.demon.co.uk (arg1.demon.co.uk [194.222.34.166]) by hub.freebsd.org (Postfix) with ESMTP id 68ECC37B6A1; Wed, 24 Jan 2001 18:40:58 -0800 (PST) Received: by arg1.demon.co.uk (Postfix, from userid 300) id 8DDB69B24; Thu, 25 Jan 2001 02:40:48 +0000 (GMT) Received: from localhost (localhost [127.0.0.1]) by arg1.demon.co.uk (Postfix) with ESMTP id 867B95D15; Thu, 25 Jan 2001 02:40:48 +0000 (GMT) Date: Thu, 25 Jan 2001 02:40:48 +0000 (GMT) From: Andrew Gordon X-Sender: arg@server.arg.sj.co.uk To: multimedia@freebsd.org Cc: sos@freebsd.org Subject: Bug in DVD ioctls 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 It appears the DVD_REPORT_RPC/DVD_SEND_RPC options for reading/setting the drive's region settings are incomplete: they transfer all of the parameters apart from the region code itself! The patch below fixes this for the ATAPI case; the SCSI code appears to have the same problem at a quick glance, but I don't have any SCSI DVDs to test. I have put a small program at http://www.arg1.demon.co.uk/freebsd.html which exercises these calls: using it, I have successfully played DVDs on a new drive that has never been in a Windows machine. Index: atapi-cd.c =================================================================== RCS file: /repository/src/sys/dev/ata/atapi-cd.c,v retrieving revision 1.48.2.8 diff -c -r1.48.2.8 atapi-cd.c *** atapi-cd.c 2001/01/07 16:55:20 1.48.2.8 --- atapi-cd.c 2001/01/25 02:30:08 *************** *** 1558,1563 **** --- 1558,1565 ---- ai->reg_type = (d.data[0] >> 6); ai->vend_rsts = (d.data[0] >> 3) & 0x7; ai->user_rsts = d.data[0] & 0x7; + ai->region = d.data[1]; + ai->rpc_scheme = d.data[2]; break; case DVD_INVALIDATE_AGID: *************** *** 1594,1599 **** --- 1596,1602 ---- break; case DVD_SEND_RPC: + d.data[0] = ai->region; length = 8; break; To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-multimedia" in the body of the message From owner-freebsd-multimedia Thu Jan 25 9: 2:48 2001 Delivered-To: freebsd-multimedia@freebsd.org Received: from dslab7.cs.uit.no (dslab7.cs.UiT.No [129.242.16.27]) by hub.freebsd.org (Postfix) with ESMTP id C711E37B404 for ; Thu, 25 Jan 2001 09:02:30 -0800 (PST) Received: (from frodef@localhost) by dslab7.cs.uit.no (8.11.1/8.11.0) id f0PH2Oe00781; Thu, 25 Jan 2001 18:02:24 +0100 (CET) (envelope-from frodef@acm.org) X-Authentication-Warning: dslab7.cs.uit.no: frodef set sender to frodef@acm.org using -f To: freebsd-multimedia@freebsd.org Subject: Getting ad1816 to work From: Frode Vatvedt Fjeld Date: 25 Jan 2001 18:02:24 +0100 Message-ID: <2hbssvmuov.fsf@dslab7.cs.uit.no> Lines: 26 User-Agent: Gnus/5.0807 (Gnus v5.8.7) Emacs/20.7 MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Sender: owner-freebsd-multimedia@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org I have an on-board ad1816 sound chip that I'd like to use with my FreeBSD system. It used to somewhat work, but after an upgrade I can't seem to get the kernel to take notice of the sound chips at all. My system: FreeBSD dslab7.cs.uit.no 4.2-STABLE FreeBSD 4.2-STABLE #9: Thu Jan 25 15:56:43 CET 2001 root@dslab7.cs.uit.no:/usr/src/sys/compile/DSLAB7 i386 This is from the boot-log from when things worked: pcm1: at port 0x220-0x22f,0x388-0x38b,0x530-0x53f irq 5 drq 1,0 on isa0 I've tried to load some (apparently) relevant modules like snd_pcm and snd_ad1816, but absolutely nothing happens (other than the modules show up when I do kldstat). I can't seem to find _any_ documentation about how these modules are supposed to be used. I've tried to recompile the kernel with various "device pcm0 ..." configurations (including the exact line that did work before), but still nothing happens, no indication of success or failure or anything. Any help with this would be much appreciated. -- Frode Vatvedt Fjeld To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-multimedia" in the body of the message From owner-freebsd-multimedia Thu Jan 25 10:29:57 2001 Delivered-To: freebsd-multimedia@freebsd.org Received: from caida.org (ipn.caida.org [192.172.226.30]) by hub.freebsd.org (Postfix) with ESMTP id A630637B402 for ; Thu, 25 Jan 2001 10:29:39 -0800 (PST) Received: from localhost (bmwt@localhost) by caida.org (8.9.3+Sun/8.9.1) with ESMTP id KAA02762 for ; Thu, 25 Jan 2001 10:29:39 -0800 (PST) Date: Thu, 25 Jan 2001 10:29:39 -0800 (PST) From: Brendan White To: Subject: usb audio? Message-ID: Delivery-receipt-to: bmwt@caida.org MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII Sender: owner-freebsd-multimedia@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Forgive me if i've missed somewhere obvious in my search, but has there been any work on usb audio devices? I have a Xitel MD-Port-DG1 usb-toslink adapter that i'd like to use. -b -- If my words did glow with the gold of sunshine, and my tunes were played on the harp unstrung- would you hear my voice come through the music- would you hold it near as it were your own? If I knew the way, I would take you home. (Garcia/Hunter) To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-multimedia" in the body of the message From owner-freebsd-multimedia Thu Jan 25 11: 1:18 2001 Delivered-To: freebsd-multimedia@freebsd.org Received: from blandings.com (adsl-216-103-90-79.dsl.snfc21.pacbell.net [216.103.90.79]) by hub.freebsd.org (Postfix) with ESMTP id B009737B6B1; Thu, 25 Jan 2001 11:00:57 -0800 (PST) Received: (from anand@localhost) by blandings.com (8.11.1/8.11.1) id f0PIfdI03203; Thu, 25 Jan 2001 10:41:39 -0800 (PST) (envelope-from anand) Date: Thu, 25 Jan 2001 10:41:38 -0800 From: Anand To: stable@freebsd.org, multimedia@freebsd.org Subject: soundmax card? Message-ID: <20010125104138.A3123@Psmith.blandings.com> Reply-To: anand@blandings.com Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline User-Agent: Mutt/1.2.5i Sender: owner-freebsd-multimedia@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Hi, I have a Dell desktop with an integrated soundmax card. It uses an AD 188x chip. I'm wondering if this is supported under FreeBSD or if people have had success with this card. Thanks a lot. Anand -- To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-multimedia" in the body of the message From owner-freebsd-multimedia Thu Jan 25 11:14:52 2001 Delivered-To: freebsd-multimedia@freebsd.org Received: from mailout00.sul.t-online.com (mailout00.sul.t-online.com [194.25.134.16]) by hub.freebsd.org (Postfix) with ESMTP id 022C137B6A1 for ; Thu, 25 Jan 2001 11:14:35 -0800 (PST) Received: from fwd02.sul.t-online.com by mailout00.sul.t-online.com with smtp id 14LrqV-0004RJ-02; Thu, 25 Jan 2001 20:14:11 +0100 Received: from neutron.cichlids.com (520050424122-0001@[62.225.195.8]) by fmrl02.sul.t-online.com with esmtp id 14LrqM-0aeSAaC; Thu, 25 Jan 2001 20:14:02 +0100 Received: from cichlids.cichlids.com (cichlids.cichlids.com [192.168.0.10]) by neutron.cichlids.com (Postfix) with ESMTP id 68EBCAB0C; Thu, 25 Jan 2001 20:16:15 +0100 (CET) Received: by cichlids.cichlids.com (Postfix, from userid 1001) id BEDD514AF2; Wed, 24 Jan 2001 21:13:01 +0100 (CET) Date: Wed, 24 Jan 2001 21:13:01 +0100 To: Alex Povolotsky Cc: bruno schwander , multimedia@freebsd.org Subject: Re: xine and VCD support Message-ID: <20010124211301.A1115@cichlids.cichlids.com> References: <3A5CC1E9.15E30635@dvart.com> <20010124230108.H77838@runaway.2sun.ru> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline User-Agent: Mutt/1.2.5i In-Reply-To: <20010124230108.H77838@runaway.2sun.ru>; from tarkhil@over.ru on Wed, Jan 24, 2001 at 11:01:08PM +0300 X-PGP-Fingerprint: 44 28 CA 4C 46 5B D3 A8 A8 E3 BA F3 4E 60 7D 7F X-PGP-at: finger alex@big.endian.de X-Verwirrung: Dieser Header dient der allgemeinen Verwirrung. From: alex@big.endian.de (Alexander Langer) X-Sender: 520050424122-0001@t-dialin.net Sender: owner-freebsd-multimedia@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Thus spake Alex Povolotsky (tarkhil@over.ru): > Isn't it The Cursed Patch, which cannot make it way into sources for... > well, I bet for 2 years? Yes, but a different patch has been committed by sos on -CURRENT. Alex -- cat: /home/alex/.sig: No such file or directory To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-multimedia" in the body of the message From owner-freebsd-multimedia Fri Jan 26 3: 2:55 2001 Delivered-To: freebsd-multimedia@freebsd.org Received: from relay2.agava.net.ru (2.oivt.mipt.ru [193.125.142.2]) by hub.freebsd.org (Postfix) with ESMTP id 6A34037B402 for ; Fri, 26 Jan 2001 03:02:35 -0800 (PST) Received: from juil.domain (juil.domain [192.168.1.50]) by relay2.agava.net.ru (Postfix) with ESMTP id F3FC1437D7; Fri, 26 Jan 2001 14:02:31 +0300 (MSK) Date: Fri, 26 Jan 2001 14:02:41 +0300 (MSK) From: Ilya Martynov X-X-Sender: To: Alexander Matey Cc: Subject: Re: Aureal card sound driver stops working In-Reply-To: <20010124150003.A3049@cis.ohio-state.edu> 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 AM> [..skip..] AM> AM> With as much details as you gave me, it looks like these nfs timeouts AM> cause the application that has opened the device to die silently without AM> closing the device properly. XMMS haven't die. If this happens (lock of /dev/dsp) than I can see dialog box telling me something about that it can't longer output sound (sorry I don't remember this message exactly). However XMMS doesn't opens /dev/pcm directly - it works via esd. I've not noticed core dumps of esd (in log messages). I can be mistaken now since some time have passed but I'm almost sure I've not seen it. Any anyway esd doesn't know anything about NFS. I'm going to try to reproduce it with playing via XMMS mp3 from my local filesystem. I belive that this problem is not caused by NFS timeouts. AM> newpcm still thinks that the device is open and doesn't let you AM> reopen it. AM> AM> It is not a driver that checks whether the device is busy, it is newpcm AM> that tracks open/close requests and keeps the record on a higher level. Another questions. Aureal Vortex 8810 is supposed to have four independent chanels. Right? I've created additional pcm devices: ls -l /dev/dsp /dev/dsp0* lrwxrwxrwx 1 root wheel 4 Dec 8 02:10 /dev/dsp -> dsp0 crw-rw-rw- 1 root wheel 30, 3 Jan 24 21:29 /dev/dsp0 crw-rw-rw- 1 root wheel 30, 0x00010003 Dec 8 02:11 /dev/dsp0.1 crw-rw-rw- 1 root wheel 30, 0x00020003 Dec 8 02:11 /dev/dsp0.2 crw-rw-rw- 1 root wheel 30, 0x00030003 Dec 8 02:11 /dev/dsp0.3 crw-rw-rw- 1 root wheel 30, 0x00040003 Dec 8 02:11 /dev/dsp0.4 Before this problem with locking /dev/dsp is happen I do able to create four applications that use these four chanels - I've checked it. If it is a problem in newpcm because it haven't registered close request for /dev/dsp, which is actually is same as /dev/dsp0.1 (is it right?) why I can't use /dev/dsp0.2, /dev/dsp0.3 or /dev/dsp0.4? Once /dev/dsp becomes locked they also become locked. -- Ilya Martynov AGAVA Software Company, http://www.agava.com To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-multimedia" in the body of the message From owner-freebsd-multimedia Fri Jan 26 7: 0:47 2001 Delivered-To: freebsd-multimedia@freebsd.org Received: from cis.ohio-state.edu (mail.cis.ohio-state.edu [164.107.115.5]) by hub.freebsd.org (Postfix) with ESMTP id 6A09137B401 for ; Fri, 26 Jan 2001 07:00:30 -0800 (PST) Received: from theta.cis.ohio-state.edu (matey@theta.cis.ohio-state.edu [164.107.112.63]) by cis.ohio-state.edu (8.9.1/8.9.1) with ESMTP id KAA21100; Fri, 26 Jan 2001 10:00:17 -0500 (EST) Received: (from matey@localhost) by theta.cis.ohio-state.edu (8.9.1/8.9.1) id KAA14841; Fri, 26 Jan 2001 10:00:17 -0500 (EST) Date: Fri, 26 Jan 2001 10:00:10 -0500 From: Alexander Matey To: freebsd-multimedia@freebsd.org Cc: Ilya Martynov Subject: Re: Aureal card sound driver stops working Message-ID: <20010126100009.A1078@cis.ohio-state.edu> Mail-Followup-To: freebsd-multimedia@freebsd.org, Ilya Martynov References: <20010124150003.A3049@cis.ohio-state.edu> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline User-Agent: Mutt/1.2.5i In-Reply-To: ; from m_ilya@agava.com on Fri, Jan 26, 2001 at 02:02:41PM +0300 Sender: owner-freebsd-multimedia@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org On Fri, Jan 26, 2001 at 02:02:41PM +0300, Ilya Martynov wrote: > AM> newpcm still thinks that the device is open and doesn't let you > AM> reopen it. > AM> > AM> It is not a driver that checks whether the device is busy, it is newpcm > AM> that tracks open/close requests and keeps the record on a higher level. > > Another questions. Aureal Vortex 8810 is supposed to have four independent > chanels. Right? I've created additional pcm devices: Yes. ... > Before this problem with locking /dev/dsp is happen I do able to create four > applications that use these four chanels - I've checked it. > > If it is a problem in newpcm because it haven't registered close request for > /dev/dsp, which is actually is same as /dev/dsp0.1 (is it right?) why I > can't use /dev/dsp0.2, /dev/dsp0.3 or /dev/dsp0.4? Once /dev/dsp becomes > locked they also become locked. Get rid of nfs and esd, and have xmms output directly to /dev/dsp{,0.1,0.2,...}. And then try to reproduce your problem. -- lx To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-multimedia" in the body of the message From owner-freebsd-multimedia Fri Jan 26 7:11:18 2001 Delivered-To: freebsd-multimedia@freebsd.org Received: from relay2.agava.net.ru (2.oivt.mipt.ru [193.125.142.2]) by hub.freebsd.org (Postfix) with ESMTP id 307B037B400 for ; Fri, 26 Jan 2001 07:11:01 -0800 (PST) Received: from juil.domain (juil.domain [192.168.1.50]) by relay2.agava.net.ru (Postfix) with ESMTP id 9CBFF437E3; Fri, 26 Jan 2001 18:10:57 +0300 (MSK) Date: Fri, 26 Jan 2001 18:10:58 +0300 (MSK) From: Ilya Martynov X-X-Sender: To: Alexander Matey Cc: Subject: Re: Aureal card sound driver stops working In-Reply-To: <20010126100009.A1078@cis.ohio-state.edu> 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 AM> Get rid of nfs and esd, and have xmms output directly to /dev/dsp{,0.1,0.2,...}. AM> And then try to reproduce your problem. Ok. I'll try to reproduce it with xmms playing local filesystem mp3's directly via /dev/dsp. -- Ilya Martynov AGAVA Software Company, http://www.agava.com To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-multimedia" in the body of the message From owner-freebsd-multimedia Fri Jan 26 9:48:48 2001 Delivered-To: freebsd-multimedia@freebsd.org Received: from maildu.Legato.COM (maildu.legato.com [137.69.45.12]) by hub.freebsd.org (Postfix) with ESMTP id 33D9937B400 for ; Fri, 26 Jan 2001 09:48:31 -0800 (PST) Received: from crom (crom.legato.com [137.69.41.80]) by maildu.Legato.COM (8.9.3/8.9.3) with SMTP id JAA07284 for ; Fri, 26 Jan 2001 09:48:31 -0800 (PST) Message-ID: <0e9c01c0877d$3e034f80$50294589@legato.com> From: "Michael Carlson" To: Subject: Nvidia Driver Petition Date: Fri, 26 Jan 2001 09:49:14 -0000 MIME-Version: 1.0 Content-Type: multipart/alternative; boundary="----=_NextPart_000_0E99_01C0877D.3DE1BDC0" X-Priority: 3 X-MSMail-Priority: Normal X-Mailer: Microsoft Outlook Express 5.50.4522.1200 X-MimeOLE: Produced By Microsoft MimeOLE V5.50.4522.1200 Sender: owner-freebsd-multimedia@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org This is a multi-part message in MIME format. ------=_NextPart_000_0E99_01C0877D.3DE1BDC0 Content-Type: text/plain; charset="iso-8859-1" Content-Transfer-Encoding: quoted-printable I have started a Nvidia FreeBSD driver petition, if anyone has any = interest in FreeBSD (or any BSD for that matter) and 3D capabilities = with full OpenGL/Mesa support, I urge you to sign it and spread the = work. It is at http://m87-blackhole.org/nvidia_petition/formhandler.html = , so far it has been up a day and around 300 people have signed it, I am = so far pleased with the results but I must press on, and the FreeBSD = community should be a large part of it. I am currently still trying to = get a responce back from Nvidia, maybe the FreeBSD team could help me = out a bit here? I am not associated with the FreeBSD Project, I am just = a big fan nd have been using it for a few years as everyhting I can, but = it currently has poor 3D support with newer graphics cards, and I feel = that this should change. If anyone has any questions, feel free to email = me at mcarlson@m87-blackhole.org Thanks, Mike Carlson ------=_NextPart_000_0E99_01C0877D.3DE1BDC0 Content-Type: text/html; charset="iso-8859-1" Content-Transfer-Encoding: quoted-printable
I have started a Nvidia FreeBSD driver = petition, if=20 anyone has any interest in FreeBSD (or any BSD for that matter) and 3D=20 capabilities with full OpenGL/Mesa support, I urge you to sign it and = spread the=20 work. It is at http:/= /m87-blackhole.org/nvidia_petition/formhandler.html=20 , so far it has been up a day and around 300 people have signed it, I am = so far=20 pleased with the results but I must press on, and the FreeBSD community = should=20 be a large part of it. I am currently still trying to get a responce = back from=20 Nvidia, maybe the FreeBSD team could help me out a bit here? I am not = associated=20 with the FreeBSD Project, I  am just a big fan nd have been using = it for a=20 few years as everyhting I can, but it currently has poor 3D support with = newer=20 graphics cards, and I feel that this should change. If anyone has any = questions,=20 feel free to email me at mcarlson@m87-blackhole.org=
 
Thanks,
 
Mike Carlson
------=_NextPart_000_0E99_01C0877D.3DE1BDC0-- To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-multimedia" in the body of the message From owner-freebsd-multimedia Fri Jan 26 10:36:35 2001 Delivered-To: freebsd-multimedia@freebsd.org Received: from moo.sysabend.org (moo.sysabend.org [209.0.55.68]) by hub.freebsd.org (Postfix) with ESMTP id 878C437B401 for ; Fri, 26 Jan 2001 10:36:02 -0800 (PST) Received: by moo.sysabend.org (Postfix, from userid 1004) id B5E537567; Fri, 26 Jan 2001 10:36:43 -0800 (PST) Received: from localhost (localhost [127.0.0.1]) by moo.sysabend.org (Postfix) with ESMTP id B2C031D8E; Fri, 26 Jan 2001 10:36:43 -0800 (PST) Date: Fri, 26 Jan 2001 10:36:43 -0800 (PST) From: Jamie Bowden To: Michael Carlson Cc: freebsd-multimedia@freebsd.org Subject: Re: Nvidia Driver Petition In-Reply-To: <0e9c01c0877d$3e034f80$50294589@legato.com> Message-ID: Approved: yep X-representing: Only myself. X-badge: We don't need no stinking badges. X-obligatory-profanity: Fuck X-moo: Moo. MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII Sender: owner-freebsd-multimedia@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org On Fri, 26 Jan 2001, Michael Carlson wrote: :I have started a Nvidia FreeBSD driver petition, if anyone has any :interest in FreeBSD (or any BSD for that matter) and 3D capabilities with :full OpenGL/Mesa support, I urge you to sign it and spread the work. It I'd be happy with 2d X support for my GeForce2 GTS. 3D support would be better, but I've already signed stating my intention to go back to buying Matrox (former dirty word themselves) in the future. Jamie Bowden -- "It was half way to Rivendell when the drugs began to take hold" Hunter S Tolkien "Fear and Loathing in Barad Dur" Iain Bowen To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-multimedia" in the body of the message From owner-freebsd-multimedia Fri Jan 26 10:50:24 2001 Delivered-To: freebsd-multimedia@freebsd.org Received: from boromir.vpop.net (dns1.vpop.net [206.117.147.2]) by hub.freebsd.org (Postfix) with ESMTP id 918A037B401 for ; Fri, 26 Jan 2001 10:50:06 -0800 (PST) Received: from vpop.net ([209.102.16.48]) by boromir.vpop.net (8.9.3/8.9.3) with ESMTP id KAA93499; Fri, 26 Jan 2001 10:50:01 -0800 (PST) (envelope-from mreimer@vpop.net) Message-ID: <3A71C6F4.1295C927@vpop.net> Date: Fri, 26 Jan 2001 10:50:28 -0800 From: Matthew Reimer Organization: VPOP Technologies, Inc. X-Mailer: Mozilla 4.76 [en] (X11; U; Linux 2.2.12 i386) X-Accept-Language: en MIME-Version: 1.0 To: mcarlson@m87-blackhole.org, multimedia@freebsd.org Subject: Re: Nvidia Driver Petition References: Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: 7bit Sender: owner-freebsd-multimedia@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Mike, you might be interested in this thread, where an Nvidia employee tells of their interest in a FreeBSD port: http://www.FreeBSD.org/cgi/search.cgi?words=triantos&max=100&sort=date&index=all&source=freebsd-hackers Matt > Michael Carlson wrote: > > I have started a Nvidia FreeBSD driver petition, if anyone has any > interest in FreeBSD (or any BSD for that matter) and 3D capabilities > with full OpenGL/Mesa support, I urge you to sign it and spread the > work. It is at > http://m87-blackhole.org/nvidia_petition/formhandler.html , so far it > has been up a day and around 300 people have signed it, I am so far > pleased with the results but I must press on, and the FreeBSD > community should be a large part of it. I am currently still trying to > get a responce back from Nvidia, maybe the FreeBSD team could help me > out a bit here? I am not associated with the FreeBSD Project, I am > just a big fan nd have been using it for a few years as everyhting I > can, but it currently has poor 3D support with newer graphics cards, > and I feel that this should change. If anyone has any questions, feel > free to email me at mcarlson@m87-blackhole.org > > Thanks, > > Mike Carlson To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-multimedia" in the body of the message From owner-freebsd-multimedia Fri Jan 26 13:31: 5 2001 Delivered-To: freebsd-multimedia@freebsd.org Received: from milquetoast.cs.mcgill.ca (milquetoast.CS.McGill.CA [132.206.2.5]) by hub.freebsd.org (Postfix) with ESMTP id 3AD2637B401 for ; Fri, 26 Jan 2001 13:30:46 -0800 (PST) Received: (from mat@localhost) by milquetoast.cs.mcgill.ca (8.9.3/8.9.3) id QAA24056; Fri, 26 Jan 2001 16:30:23 -0500 (EST) Date: Fri, 26 Jan 2001 16:30:23 -0500 From: Mathew KANNER To: Nick Sayer Cc: freebsd-multimedia@FreeBSD.ORG Subject: Re: DVD playback Message-ID: <20010126163023.A23938@cs.mcgill.ca> References: <200101232202.f0NM2l606729@medusa.kfu.com> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline User-Agent: Mutt/1.2.5i In-Reply-To: Nick Sayer's message [Re: DVD playback] as of Tue, Jan 23, 2001 at 02:02:47PM -0800 Organization: I speak for myself, Montreal, CANADA Sender: owner-freebsd-multimedia@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org On Jan 23, Nick Sayer wrote: > Just upgraded to xine 0.3.6 and it works much, much better now. Most disks > now can generate a playlist when you hit the 'dvd' button, and can > now seamlessly play the playlist rather than simply playing the .VOB > files. I upgraded my OS as well as xine and I agree -- it is much improved. I theorize that I could watch "Three Kings" or "Dr Strangelove [...]" very comfortably if I spooled them to my HD first. In fact, in full-screen, top would report a load average between 0.25 and 1.0 and an idleness of about %40. With a brilliant picture and clear sound with no delay, I'd be very impressed. (details follow) At the risk of sounding fervently aligned, my machine also has USB Ethernet and ADSL. I would say that FBSD is a very nice consumer OS. If only we could end this nonsense of speaking in tongues and fumbling around in the dark for fear of prosecution (persecution?). --Mat OS: Binaries and kernel source are from ftp://current.freebsd.org/pub/FreeBSD/snapshots/i386/pub/FreeBSD/snapshots/i386/5.0-20010125-CURRENT/ kernel: a custom compile based on GENERIC with SMP, Netgraph, USER_LDT and ATA_ENABLE_ATAPI_DMA and less INET6, gif, faith, NICs, msdos, nfs, cd9660 -the GENERIC kernel now contains sounds by default! -I have to keep PNP OS -> NO in my bios or else no sound /boot/loader.conf userconfig_script_load="YES" ng_pppoe_load="YES" agp_load="YES" if_ed_load="YES" - usb ethernet doesn't seem to like to be a modules at the moment, hence I leave it static in the kernel /etc/sysctl.conf kern.ipc.shmmax=67108864 kern.ipc.shmall=32768 - as per xine FAQ Hardware: bash-2.03$ dmesg | egrep '(apic|pcib0|acd|sbc|pcm|ed0|cue)' cpu0 (BSP): apic id: 0, version: 0x00040011, at 0xfee00000 cpu1 (AP): apic id: 1, version: 0x00040011, at 0xfee00000 io0 (APIC): apic id: 2, version: 0x00170011, at 0xfec00000 pcib0: at pcibus 0 on motherboard pci0: on pcib0 cue0: CATC CATC Netmate2 Ethernet Adaptor , rev 1.00/2.20, addr 2 cue0: Ethernet address: 00:10:4c:11:19:ce ed0: port 0xd400-0xd41f irq 10 at device 9.0 on pci0 ed0: address 00:00:e8:61:a3:fb, type NE2000 (16 bit) sbc0: at port 0x220-0x22f,0x330-0x331,0x388-0x38b irq 5 drq 1,3 on isa0 pcm1: on sbc0 cue0 XXX: driver didn't initialize queue mtx ed0 XXX: driver didn't initialize queue mtx acd0: DVD-ROM at ata1-master using UDMA33 bash-2.03$ xdpyinfo | egrep 'r r|XV|n #|w:|ime' vendor release number: 4002 XVideo screen #0: dimensions: 1600x1200 pixels (339x254 millimeters) depth of root window: 16 planes bash-2.03$ grep Chipset /var/log/XFree86.0.log (--) Chipset mgag400 found (--) MGA(0): Chipset: "mgag400" bash-2.03$ kldstat Id Refs Address Size Name 1 16 0xc0100000 2f2f08 kernel 2 1 0xc03f3000 741c ng_pppoe.ko 3 1 0xc03fb000 c374 agp.ko 4 1 0xc0408000 b518 if_ed.ko 5 1 0xc1444000 4000 if_tun.ko 6 1 0xc144c000 4000 ng_ether.ko 7 1 0xc1451000 4000 ng_socket.ko 8 1 0xc1476000 12000 linux.ko 9 1 0xc14da000 d000 msdos.ko 10 1 0xc1504000 9000 cd9660.ko bash-2.03$ pkg_info | egrep 'XFree86-4|xine' XFree86-4.0.2_5 X11R6.4/XFree86 core distribution (complete) xine-0.3.6_3 A MPEG-1 and MPEG-2 player - XFree86-4.0.2_5 was a binairy install from ftp://ftp.freebsd.org/pub/FreeBSD/ports/packages/All/ it was built on Jan 11/01, I think. - xine was built of of the ports, I think I had to patch it to handle the 'cc -pthread' -> 'cc -lc_r' issue. -- Mathew Kanner Sys Admin at large Obtuse quote: He [not me] understands: "This field of perception is void of perception of man." -- The Quintessence of Buddhism To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-multimedia" in the body of the message From owner-freebsd-multimedia Sat Jan 27 10:33:46 2001 Delivered-To: freebsd-multimedia@freebsd.org Received: from windmill-en0.garlic.com (unknown [208.195.160.130]) by hub.freebsd.org (Postfix) with ESMTP id D097F37B401 for ; Sat, 27 Jan 2001 10:33:28 -0800 (PST) Received: from progen (179.sm7.dialup.garlic.net [216.139.3.179]) by windmill-en0.garlic.com (8.11.1/8.11.1) with SMTP id f0RIXRa19538 for ; Sat, 27 Jan 2001 10:33:27 -0800 Message-ID: <000801c0888e$6ae3c720$6646fea9@progen> From: "MT." To: Subject: missing 8820 driver for win 2000 Date: Sat, 27 Jan 2001 10:24:40 -0800 MIME-Version: 1.0 Content-Type: multipart/alternative; boundary="----=_NextPart_000_0005_01C0884B.5B9378D0" X-Priority: 3 X-MSMail-Priority: Normal X-Mailer: Microsoft Outlook Express 5.00.2919.6700 X-MimeOLE: Produced By Microsoft MimeOLE V5.00.2919.6700 Sender: owner-freebsd-multimedia@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org This is a multi-part message in MIME format. ------=_NextPart_000_0005_01C0884B.5B9378D0 Content-Type: text/plain; charset="iso-8859-1" Content-Transfer-Encoding: quoted-printable Hi all, I have an aureal 8820 card and upgraded my system to Win 2000. The = sound works for cds and dvds... but no wav and no mp3. I see that = aureal has gone out of business. Is there a place where I can get a new = driver. Thank you. Mike ------=_NextPart_000_0005_01C0884B.5B9378D0 Content-Type: text/html; charset="iso-8859-1" Content-Transfer-Encoding: quoted-printable
Hi all,
 
I have an aureal 8820 card and upgraded = my system=20 to Win 2000.  The sound works for cds and dvds... but no wav and no = mp3.   I see that aureal has gone out of business.  Is = there a=20 place where I can get a new driver.
 
Thank you.
 
Mike
------=_NextPart_000_0005_01C0884B.5B9378D0-- To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-multimedia" in the body of the message From owner-freebsd-multimedia Sat Jan 27 11:59:26 2001 Delivered-To: freebsd-multimedia@freebsd.org Received: from cx587235-a.chnd1.az.home.com (cx587235-a.chnd1.az.home.com [24.11.88.170]) by hub.freebsd.org (Postfix) with ESMTP id 3EAC837B400 for ; Sat, 27 Jan 2001 11:59:09 -0800 (PST) Received: from whale.home-net (whale [192.168.1.2]) by cx587235-a.chnd1.az.home.com (8.11.1/8.11.1) with ESMTP id f0RJx8W94081; Sat, 27 Jan 2001 12:59:08 -0700 (MST) (envelope-from jjreynold@home.com) Received: (from jjreynold@localhost) by whale.home-net (8.11.1/8.11.1) id f0RJx4F33255; Sat, 27 Jan 2001 12:59:04 -0700 (MST) (envelope-from jjreynold@home.com) From: John Reynolds MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: 7bit Message-ID: <14963.10376.358289.944750@whale.home-net> Date: Sat, 27 Jan 2001 12:59:04 -0700 To: "MT." Cc: Subject: Re: missing 8820 driver for win 2000 In-Reply-To: <000801c0888e$6ae3c720$6646fea9@progen> References: <000801c0888e$6ae3c720$6646fea9@progen> X-Mailer: VM 6.88 under Emacs 20.7.1 Cc: Sender: owner-freebsd-multimedia@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org [ On Saturday, January 27, MT. wrote: ] > Hi all, > > I have an aureal 8820 card and upgraded my system to Win 2000. The sound > works for cds and dvds... but no wav and no mp3. I see that aureal has gone > out of business. Is there a place where I can get a new driver. > > Thank you. > > Mike Why on earth are you mailing a *FreeBSD* mailing list when you upgraded you system to Win 2000? This list and project have nothing to do with Windows 2000. Try one of their lists, and don't send HTML mail. Regards, -Jr -- =-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-= John Reynolds Chandler Capabilities Engineering, CDS, Intel Corporation jreynold@sedona.ch.intel.com My opinions are mine, not Intel's. Running jjreynold@home.com FreeBSD 4.2-STABLE. FreeBSD: The Power to Serve. http://www.reynoldsnet.org/ Come join us!!! @ http://www.FreeBSD.org/ =-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-= To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-multimedia" in the body of the message From owner-freebsd-multimedia Sat Jan 27 13:57:20 2001 Delivered-To: freebsd-multimedia@freebsd.org Received: from web4402.mail.yahoo.com (web4402.mail.yahoo.com [216.115.105.32]) by hub.freebsd.org (Postfix) with SMTP id 9DCE437B400 for ; Sat, 27 Jan 2001 13:57:03 -0800 (PST) Message-ID: <20010127215703.3930.qmail@web4402.mail.yahoo.com> Received: from [200.214.79.189] by web4402.mail.yahoo.com; Sat, 27 Jan 2001 13:57:03 PST Date: Sat, 27 Jan 2001 13:57:03 -0800 (PST) From: Eraldo Jr Subject: - i810 in fbsd4.1 RELEASE - To: freebsd-multimedia@freebsd.org MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Sender: owner-freebsd-multimedia@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Hi all ! How i can configure my bsd 4.1 RELEASE to use my i810 Video Card ? because, in www.intel.com i find a patc to use this Video Card on linux flavors.... but is a rpm file :( what i need to do ? thanks all ! Eraldo Jr __________________________________________________ Do You Yahoo!? Yahoo! Auctions - Buy the things you want at great prices. http://auctions.yahoo.com/ To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-multimedia" in the body of the message From owner-freebsd-multimedia Sat Jan 27 18: 3: 9 2001 Delivered-To: freebsd-multimedia@freebsd.org Received: from thelab.hub.org (SHW1-154.accesscable.net [24.71.144.154]) by hub.freebsd.org (Postfix) with ESMTP id 9CCE837B404 for ; Sat, 27 Jan 2001 18:02:50 -0800 (PST) Received: from localhost (scrappy@localhost) by thelab.hub.org (8.11.2/8.11.1) with ESMTP id f0S20ph20368 for ; Sat, 27 Jan 2001 22:00:51 -0400 (AST) (envelope-from scrappy@hub.org) X-Authentication-Warning: thelab.hub.org: scrappy owned process doing -bs Date: Sat, 27 Jan 2001 22:00:50 -0400 (AST) From: The Hermit Hacker To: Subject: Sony Vaio Z505S & X11 4.0.2 ... 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 Just got FreeBSD 4.2-STABLE installed on my "new" laptop, got X installed, KDE2 ... took a bit to get X configured, but finally got the setting right, or so I thought ... Go into X, and my mouse acts "funny" ... if I go to click on a button, as long as I get the mouse over the right spot on that button, it depresses, and then 'sticks' there ... if I move the mouse off of that button afterwards, then it un-clicks and does what I asked it to ... dmesg shows the mouse as being: PS/2 Mouse, model GlidePoint, device ID 0 ... I've configured it in XF86Config as a SysMouse, and have moused running on port /dev/psm0 ... This machine *used* to have Mandrake Linux on it,with XFree86 working flawlessly, so I know it is *supposed* to work ... under Mandrake's config file, it was configured as /dev/usbmouse, but we don't appear to have one of those to work with ... Help? Marc G. Fournier ICQ#7615664 IRC Nick: Scrappy 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 Jan 27 18:19:31 2001 Delivered-To: freebsd-multimedia@freebsd.org Received: from espen.oysnet.lan (login.oysnet.eu.org [64.32.206.153]) by hub.freebsd.org (Postfix) with ESMTP id AF63A37B400 for ; Sat, 27 Jan 2001 18:19:14 -0800 (PST) Received: from localhost (eoyslebo@localhost) by espen.oysnet.lan (8.11.1/8.11.1) with ESMTP id f0S2JGl76784 for ; Sat, 27 Jan 2001 21:19:17 -0500 (EST) (envelope-from oys@powertech.no) X-Authentication-Warning: espen.oysnet.lan: eoyslebo owned process doing -bs Date: Sat, 27 Jan 2001 21:19:15 -0500 (EST) From: Espen Oyslebo X-Sender: eoyslebo@espen.oysnet.lan To: multimedia@freebsd.org Subject: Cd-paranoia 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 Anyone get cd-paranoia to work under free-bsd? I used to run linux, and cd-paranoia was imho by far the best cd `ripper' because it would extract excellent quality audio even from my sheiz-creative ide cd-rom drive. It's the only program I really miss after I `upgraded' to FreeBSD 4.2 stable a couple of weeks ago. If not, what is the `best' substitute under FreeBSD. Since programs are often hard to rate on a worst --> best scale, a nice summery of pros/cons of the different tools would be appreciated. One more thing whilst I've got your attention: Lame vs Blade (mp3 encoder)? And is there a significant quality improvement from 128 --> 192? how about 192 --> 256? Thanks a lot! Espen Oyslebo Please add me to the cc list of your reply, as I'm not sure if I'm actually on the mailing list yet. To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-multimedia" in the body of the message From owner-freebsd-multimedia Sat Jan 27 19:19:38 2001 Delivered-To: freebsd-multimedia@freebsd.org Received: from panzer.kdm.org (panzer.kdm.org [216.160.178.169]) by hub.freebsd.org (Postfix) with ESMTP id 489D737B404 for ; Sat, 27 Jan 2001 19:19:20 -0800 (PST) Received: (from ken@localhost) by panzer.kdm.org (8.9.3/8.9.1) id UAA59327; Sat, 27 Jan 2001 20:19:11 -0700 (MST) (envelope-from ken) Date: Sat, 27 Jan 2001 20:19:10 -0700 From: "Kenneth D. Merry" To: Espen Oyslebo Cc: multimedia@FreeBSD.ORG Subject: Re: Cd-paranoia Message-ID: <20010127201910.A58956@panzer.kdm.org> References: Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline User-Agent: Mutt/1.2i In-Reply-To: ; from oys@powertech.no on Sat, Jan 27, 2001 at 09:19:15PM -0500 Sender: owner-freebsd-multimedia@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org [ Please keep your line length to 75 characters or less. ] On Sat, Jan 27, 2001 at 21:19:15 -0500, Espen Oyslebo wrote: > Anyone get cd-paranoia to work under free-bsd? I used to run linux, and cd-paranoia was imho by far the best cd `ripper' because it would extract excellent quality audio even from my sheiz-creative ide cd-rom drive. It's the only program I really miss after I `upgraded' to FreeBSD 4.2 stable a couple of weeks ago. > > If not, what is the `best' substitute under FreeBSD. Since programs are often hard to rate on a worst --> best scale, a nice summery of pros/cons of the different tools would be appreciated. Well, since you've got an ATAPI CDROM drive, you'll probably need to use ports/audio/dagrab. If you had a SCSI CDROM drive, I'd recommend tosha or cdda2wav (comes with cdrecord). > One more thing whilst I've got your attention: Lame vs Blade (mp3 encoder)? And is there a significant quality improvement from 128 --> 192? how about 192 --> 256? I'd suggest doing a few net searches or looking around on slashdot. Check out this article on slashdot in particular: http://slashdot.org/articles/00/10/28/163211.shtml Ken -- Kenneth Merry ken@kdm.org To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-multimedia" in the body of the message From owner-freebsd-multimedia Sat Jan 27 19:55:20 2001 Delivered-To: freebsd-multimedia@freebsd.org Received: from sm8.texas.rr.com (sm8.texas.rr.com [24.93.35.220]) by hub.freebsd.org (Postfix) with ESMTP id AE5EB37B402 for ; Sat, 27 Jan 2001 19:55:02 -0800 (PST) Received: from bleep.craftncomp.com (cs2777-167.houston.rr.com [24.27.77.167]) by sm8.texas.rr.com (8.11.0/8.11.1) with ESMTP id f0S3sYM22294; Sat, 27 Jan 2001 21:54:34 -0600 Received: from bloop.craftncomp.com (bloop.craftncomp.com [202.12.111.1]) by bleep.craftncomp.com (8.11.0/8.9.3) with ESMTP id f0S3snG76925; Sat, 27 Jan 2001 21:54:49 -0600 (CST) (envelope-from shocking@houston.rr.com) Received: from bloop.craftncomp.com (localhost [127.0.0.1]) by bloop.craftncomp.com (8.11.1/8.9.3) with ESMTP id f0S3t3D77499; Sat, 27 Jan 2001 21:55:03 -0600 (CST) (envelope-from shocking@bloop.craftncomp.com) Message-Id: <200101280355.f0S3t3D77499@bloop.craftncomp.com> X-Mailer: exmh version 2.3.1 01/18/2001 with nmh-1.0.4 To: The Hermit Hacker Cc: multimedia@freebsd.org Subject: Re: Sony Vaio Z505S & X11 4.0.2 ... In-Reply-To: Your message of "Sat, 27 Jan 2001 22:00:50 -0400." Reply-To: shocking@houston.rr.com Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Date: Sat, 27 Jan 2001 21:55:03 -0600 From: Stephen Hocking Sender: owner-freebsd-multimedia@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org > Just got FreeBSD 4.2-STABLE installed on my "new" laptop, got X installed, > KDE2 ... took a bit to get X configured, but finally got the setting > right, or so I thought ... > > Go into X, and my mouse acts "funny" ... if I go to click on a button, as > long as I get the mouse over the right spot on that button, it depresses, > and then 'sticks' there ... if I move the mouse off of that button > afterwards, then it un-clicks and does what I asked it to ... OK, I bet you have the "Emulate 3 buttons" option set. If you clear this (an pretend that it has 3 buttons, then you should be alright. Stephen -- The views expressed above are not those of PGS Tensor. "We've heard that a million monkeys at a million keyboards could produce the Complete Works of Shakespeare; now, thanks to the Internet, we know this is not true." Robert Wilensky, University of California To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-multimedia" in the body of the message From owner-freebsd-multimedia Sat Jan 27 22:28:38 2001 Delivered-To: freebsd-multimedia@freebsd.org Received: from proteus.DELOS.COM (proteus.DELOS.COM [207.174.116.77]) by hub.freebsd.org (Postfix) with ESMTP id 6E8BF37B404 for ; Sat, 27 Jan 2001 22:28:21 -0800 (PST) Received: from proteus.DELOS.COM (localhost [127.0.0.1]) by proteus.DELOS.COM (8.11.1/8.11.1) with ESMTP id f0S6Q9V30015; Sat, 27 Jan 2001 23:26:09 -0700 (MST) (envelope-from polk@proteus.DELOS.COM) Message-Id: <200101280626.f0S6Q9V30015@proteus.DELOS.COM> X-Mailer: exmh version 2.2 06/23/2000 with nmh-1.0.4 To: The Hermit Hacker Cc: freebsd-multimedia@FreeBSD.ORG Subject: Re: Sony Vaio Z505S & X11 4.0.2 ... From: Jeff Polk In-reply-to: The Hermit Hacker's message of Sat, 27 Jan 2001 22:00:50 -0400. Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Date: Sat, 27 Jan 2001 23:26:09 -0700 Sender: owner-freebsd-multimedia@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org > Just got FreeBSD 4.2-STABLE installed on my "new" laptop, got X installed, > KDE2 ... took a bit to get X configured, but finally got the setting > right, or so I thought ... > Go into X, and my mouse acts "funny" ... if I go to click on a button, as > long as I get the mouse over the right spot on that button, it depresses, > and then 'sticks' there ... if I move the mouse off of that button > afterwards, then it un-clicks and does what I asked it to ... > I've configured it in XF86Config as a SysMouse, and have moused running on > port /dev/psm0 ... I've seen this problem with all the machines I'm using the 4.0.2 X server on. If you disable moused and use proto "Auto" and /dev/psm0 in the X config it works correctly. I didn't have the problem with XFree86 4.0.1 but have seen it on my Vaio Z505LE, a friends Dell C600 notebook and on my main desktop machine. There have been several threads on it on on freebsd-stable, but so far nobody's offered any solutions that I've seen. Jeff -- /\ Jeff Polk Berkeley Software Design, Inc. (BSDI) /\/ \ polk@BSDI.COM 15235 Roller Coaster Rd., Colo Spgs, CO 80921 / \ \ Voice: 719-457-8416 http://www.BSDI.COM/people/polk To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-multimedia" in the body of the message From owner-freebsd-multimedia Sat Jan 27 22:39:54 2001 Delivered-To: freebsd-multimedia@freebsd.org Received: from thelab.hub.org (SHW1-154.accesscable.net [24.71.144.154]) by hub.freebsd.org (Postfix) with ESMTP id 9EF1E37B400 for ; Sat, 27 Jan 2001 22:39:36 -0800 (PST) Received: from localhost (scrappy@localhost) by thelab.hub.org (8.11.2/8.11.1) with ESMTP id f0S6au402066; Sun, 28 Jan 2001 02:36:56 -0400 (AST) (envelope-from scrappy@hub.org) X-Authentication-Warning: thelab.hub.org: scrappy owned process doing -bs Date: Sun, 28 Jan 2001 02:36:56 -0400 (AST) From: The Hermit Hacker To: Stephen Hocking Cc: Subject: Re: Sony Vaio Z505S & X11 4.0.2 ... In-Reply-To: <200101280355.f0S3t3D77499@bloop.craftncomp.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, 27 Jan 2001, Stephen Hocking wrote: > > Just got FreeBSD 4.2-STABLE installed on my "new" laptop, got X installed, > > KDE2 ... took a bit to get X configured, but finally got the setting > > right, or so I thought ... > > > > Go into X, and my mouse acts "funny" ... if I go to click on a button, as > > long as I get the mouse over the right spot on that button, it depresses, > > and then 'sticks' there ... if I move the mouse off of that button > > afterwards, then it un-clicks and does what I asked it to ... > > OK, I bet you have the "Emulate 3 buttons" option set. If you clear this (an > pretend that it has 3 buttons, then you should be alright. Just checked, and its commented out ... :( To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-multimedia" in the body of the message From owner-freebsd-multimedia Sat Jan 27 22:45: 0 2001 Delivered-To: freebsd-multimedia@freebsd.org Received: from thelab.hub.org (SHW1-154.accesscable.net [24.71.144.154]) by hub.freebsd.org (Postfix) with ESMTP id 979A637B400 for ; Sat, 27 Jan 2001 22:44:42 -0800 (PST) Received: from localhost (scrappy@localhost) by thelab.hub.org (8.11.2/8.11.1) with ESMTP id f0S6gaI02094; Sun, 28 Jan 2001 02:42:36 -0400 (AST) (envelope-from scrappy@hub.org) X-Authentication-Warning: thelab.hub.org: scrappy owned process doing -bs Date: Sun, 28 Jan 2001 02:42:36 -0400 (AST) From: The Hermit Hacker To: Jeff Polk Cc: Subject: Re: Sony Vaio Z505S & X11 4.0.2 ... In-Reply-To: <200101280626.f0S6Q9V30015@proteus.DELOS.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 That one did it ... Any recommendations on the Vaio's as far as performance is concerned? I find it 'sluggish' for X ... its a celeron 333 with 192meg of RAM ... On Sat, 27 Jan 2001, Jeff Polk wrote: > > Just got FreeBSD 4.2-STABLE installed on my "new" laptop, got X installed, > > KDE2 ... took a bit to get X configured, but finally got the setting > > right, or so I thought ... > > > Go into X, and my mouse acts "funny" ... if I go to click on a button, as > > long as I get the mouse over the right spot on that button, it depresses, > > and then 'sticks' there ... if I move the mouse off of that button > > afterwards, then it un-clicks and does what I asked it to ... > > > I've configured it in XF86Config as a SysMouse, and have moused running on > > port /dev/psm0 ... > > I've seen this problem with all the machines I'm using the 4.0.2 X server > on. If you disable moused and use proto "Auto" and /dev/psm0 in the X config it > works correctly. I didn't have the problem with XFree86 4.0.1 but have seen it > on my Vaio Z505LE, a friends Dell C600 notebook and on my main desktop machine. > There have been several threads on it on on freebsd-stable, but so far > nobody's offered any solutions that I've seen. > > Jeff > -- > /\ Jeff Polk Berkeley Software Design, Inc. (BSDI) > /\/ \ polk@BSDI.COM 15235 Roller Coaster Rd., Colo Spgs, CO 80921 > / \ \ Voice: 719-457-8416 http://www.BSDI.COM/people/polk > > > Marc G. Fournier ICQ#7615664 IRC Nick: Scrappy 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