From owner-freebsd-multimedia Sun Apr 28 9:49:14 2002 Delivered-To: freebsd-multimedia@freebsd.org Received: from workhorse.fictitious.org (workhorse.fictitious.org [209.66.129.230]) by hub.freebsd.org (Postfix) with ESMTP id 59F1537B41D; Sun, 28 Apr 2002 09:49:01 -0700 (PDT) Received: from workhorse.fictitious.org (localhost.fictitious.org [127.0.0.1]) by workhorse.fictitious.org (8.9.3/8.9.3) with ESMTP id MAA94567; Sun, 28 Apr 2002 12:48:51 -0400 (EDT) (envelope-from curtis@workhorse.fictitious.org) Message-Id: <200204281648.MAA94567@workhorse.fictitious.org> To: freebsd-scsi@FreeBSD.ORG, multimedia@FreeBSD.ORG Cc: curtis@fictitious.org Reply-To: curtis@fictitious.org Subject: Olympus USB camera success with some kernel mods Date: Sun, 28 Apr 2002 12:48:51 -0400 From: Curtis Villamizar Sender: owner-freebsd-multimedia@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.org FYI - this is just an informational message. Possible code to commit in scsi_da.c. See below. I just got an Olympus C700 working with the USB. I can mount the flash and copy the files off it. I haven't tried gphoto or anything else to control the camera. The normal way to use it is just copy off the *.jpg files that would appear in the dcim/100olymp/ directory (you'd see files there if I hadn't just copied them and erased them from this flash). [curtis@laptoy770 1] # mount -o ro -t msdos /dev/da0s1 /mnt [curtis@laptoy770 2] # ls -ltR /mnt total 8 drwxr-xr-x 1 root wheel 8192 Apr 27 20:53 dcim/ /mnt/dcim: total 8 drwxr-xr-x 1 root wheel 8192 Apr 27 20:53 100olymp/ /mnt/dcim/100olymp: [curtis@laptoy770 3] # ls -lR /mnt total 8 drwxr-xr-x 1 root wheel 8192 Apr 27 20:53 dcim/ /mnt/dcim: total 8 drwxr-xr-x 1 root wheel 8192 Apr 27 20:53 100olymp/ /mnt/dcim/100olymp: [curtis@laptoy770 4] # umount /mnt To make this work, the kernel needs: options MSDOSFS # SCSI peripherals device scbus # SCSI bus (required) device da # Direct Access (disks) device pass # Passthrough device (direct SCSI access) # USB support device uhci # UHCI PCI->USB interface device ohci # OHCI PCI->USB interface device usb # USB Bus (required) device ugen # Generic device umass # Disks/Mass storage - Requires scbus and da An edit has to be made to /sys/cam/scsi/scsi_da.c { /* * Olympus Cameras quirks */ {T_DIRECT, SIP_MEDIA_REMOVABLE, "OLYMPUS*", "C-700*", "*"}, /*quirks*/ DA_Q_NO_6_BYTE } I also added the following after the "match = cam_quirkmatch(" statement providing a confirmation in dmesg output after reboot. printf("scsi quirks: %s - type %d med %s " "vend \"%s\" prod \"%s\" ver \"%s\"\n", match ? "match" : "none", SID_TYPE((&cgd->inq_data)), SID_IS_REMOVABLE((&cgd->inq_data)) ? "remov" : "fixed", cgd->inq_data.vendor, cgd->inq_data.product, cgd->inq_data.revision); The printf is useful if for some reason you aren't getting the string match right (if using a similar camera or USB/SCSI device). That was all it took. Manually run the following before the mount: usbdevs - make sure the camera is powered on and shows up camcontrol rescan 0 - detect the scsi device (I did this on my laptop but on a machine with scsi buses you'd get a higher number. camcontrol tur da0 - check for unit ready. If the unit doesn't indicate ready, chances are the DA_Q_NO_6_BYTE quirk is not in effect. Recheck the kernel changes. This might work with other Olympus USB only cameras. Probably would. Curtis ps - I haven't confirmed whether the camera is usable under an MS OS and I have no intention to do so. To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-multimedia" in the body of the message From owner-freebsd-multimedia Sun Apr 28 11:49: 5 2002 Delivered-To: freebsd-multimedia@freebsd.org Received: from mail6.nc.rr.com (fe6.southeast.rr.com [24.93.67.53]) by hub.freebsd.org (Postfix) with ESMTP id A552737B419; Sun, 28 Apr 2002 11:48:57 -0700 (PDT) Received: from stealth.cary.dummynet ([66.26.231.240]) by mail6.nc.rr.com with Microsoft SMTPSVC(5.5.1877.757.75); Sun, 28 Apr 2002 12:16:28 -0400 Received: (from rhh@localhost) by stealth.cary.dummynet (8.11.4/8.11.4) id g3SGHrr02646; Sun, 28 Apr 2002 12:17:53 -0400 (EDT) (envelope-from aa8vb@nc.rr.com) X-Authentication-Warning: stealth.cary.dummynet: rhh set sender to aa8vb@nc.rr.com using -f Date: Sun, 28 Apr 2002 12:17:53 -0400 From: Randall Hopper To: "Marc G. Fournier" Cc: freebsd-stable@FreeBSD.ORG, freebsd-multimedia@FreeBSD.ORG Subject: Re: ASUS A7M266-D: enabling 'on board sound' Message-ID: <20020428121753.A2476@nc.rr.com> References: <20020423150218.O1721-100000@mail1.hub.org> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline User-Agent: Mutt/1.2.5i In-Reply-To: <20020423150218.O1721-100000@mail1.hub.org>; from scrappy@hub.org on Tue, Apr 23, 2002 at 04:24:40PM -0300 Sender: owner-freebsd-multimedia@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.org Marc G. Fournier: | Just recently picked up an ASUS A7M266-D Motherboard with Dual: |"(AMD Athlon(TM) MP Processor (1200.05-MHz 686-class CPU)" ... the system |purrs like the proverbial kitten ... but the one thing that is eluding me |so far is getting the onboard sound to work ... ... |pcm0: at device 4.0 on pci2 |pcm0: cmi_attach: Cannot allocate bus resource |device_probe_and_attach: pcm0 attach returned 6 ... |___device pcm0 at isa? irq 5 drq 1 flags 0x0 I have the original non-dual version (ASUS A7M266) with the same sound chip: > dmesg | grep pcm0 pcm0: port 0xa400-0xa4ff irq 10 at device 5.0 on pci0 Here's what I have on my 4.3-STABLE (circa 06/01) config: device pcm0 device sbc0 at isa? port 0x220 irq 5 drq 1 flags 0x15 The flags may be the kicker for you. That sets the 2nd (16-bit) DMA channel IIRC. Randall -- Randall Hopper aa8vb@nc.rr.com To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-multimedia" in the body of the message From owner-freebsd-multimedia Sun Apr 28 12:36:15 2002 Delivered-To: freebsd-multimedia@freebsd.org Received: from gurke.bootstraplab.org (port-212-202-128-197.reverse.qsc.de [212.202.128.197]) by hub.freebsd.org (Postfix) with ESMTP id 5740C37B41E for ; Sun, 28 Apr 2002 12:36:05 -0700 (PDT) Received: from port-212-202-128-204.reverse.qsc.de (port-212-202-128-204.reverse.qsc.de [212.202.128.204]) by gurke.bootstraplab.org (8.12.2/8.12.2/Debian -5) with ESMTP id g3SJYETV015280 for ; Sun, 28 Apr 2002 21:34:15 +0200 Date: Sun, 28 Apr 2002 21:36:01 +0200 (CEST) From: Heiko Recktenwald X-X-Sender: To: Subject: mpeg4ip and 4.4 R. Message-ID: <20020428212432.L528-100000@localhost.b.lab.net> MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII Sender: owner-freebsd-multimedia@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.org Hi, I tried it again, still gives the same errors with gmake check but it runs, on 4.4 R. Thanks to Alexander Leidinger: << Set the environment variables - GTK_CONFIG to /usr/X11R6/bin/gtk12-config - GLIB_CONFIG to /usr/local/bin/glib12-config I did it without those, but then it doesn't build the GUI. So if you get errors here, try it without the variables. Comment out the 'typedef' of in_port_t in /include/systrems.h (multiple occurrences). >> This was needed. This didnt help: << /lib/sdp/sdp_decode.c line 1552: "%ld" -> "%d" >> Had to change one of the hardcoded extensions in player/src/main.cpp and gui_main.cpp to ".mxu" to make http://intra.b.lab.net/~uzs106/bla/testing.html work with Netscape. But now: "one click streaming" ;-) Thanks, H. To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-multimedia" in the body of the message From owner-freebsd-multimedia Sun Apr 28 18:57:35 2002 Delivered-To: freebsd-multimedia@freebsd.org Received: from smtp.ixpres.com (smtp.ixpres.com [216.240.160.50]) by hub.freebsd.org (Postfix) with ESMTP id 5D36437B400; Sun, 28 Apr 2002 18:57:30 -0700 (PDT) Received: from VIZION2000 (66-81-19-141-modem.o1.com [66.81.19.141]) by smtp.ixpres.com (8.9.3/8.9.3) with SMTP id SAA76726; Sun, 28 Apr 2002 18:59:11 -0700 (PDT) (envelope-from vizion@ixpres.com) Message-ID: <01aa01c1ef1f$677bb630$9865fea9@VIZION2000> From: " Vizion Communication" To: "Randall Hopper" , "Marc G. Fournier" Cc: , References: <20020423150218.O1721-100000@mail1.hub.org> <20020428121753.A2476@nc.rr.com> Subject: Re: ASUS A7M266-D: enabling 'on board sound' Date: Sun, 28 Apr 2002 18:44:26 -0700 MIME-Version: 1.0 Content-Type: text/plain; charset="iso-8859-1" Content-Transfer-Encoding: quoted-printable X-Priority: 3 X-MSMail-Priority: Normal X-Mailer: Microsoft Outlook Express 6.00.2600.0000 X-MimeOLE: Produced By Microsoft MimeOLE V6.00.2600.0000 Sender: owner-freebsd-multimedia@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.org ----- Original Message -----=20 From: "Randall Hopper" To: "Marc G. Fournier" Cc: ; Sent: Sunday, April 28, 2002 9:17 AM Subject: Re: ASUS A7M266-D: enabling 'on board sound' > Marc G. Fournier: > | Just recently picked up an ASUS A7M266-D Motherboard with Dual: > |"(AMD Athlon(TM) MP Processor (1200.05-MHz 686-class CPU)" ... the = system > |purrs like the proverbial kitten ... but the one thing that is = eluding me > |so far is getting the onboard sound to work ... > ... > |pcm0: at device 4.0 on pci2 > |pcm0: cmi_attach: Cannot allocate bus resource > |device_probe_and_attach: pcm0 attach returned 6 > ... > |___device pcm0 at isa? irq 5 drq 1 flags 0x0 >=20 > I have the original non-dual version (ASUS A7M266) with the same sound > chip: >=20 > > dmesg | grep pcm0 > pcm0: port 0xa400-0xa4ff irq 10 at device 5.0 on = pci0 >=20 > Here's what I have on my 4.3-STABLE (circa 06/01) config: >=20 > device pcm0 > device sbc0 at isa? port 0x220 irq 5 drq 1 flags 0x15 >=20 > The flags may be the kicker for you. That sets the 2nd (16-bit) DMA > channel IIRC. >=20 If you have the time I would be very interested in having more = information about your configuration as I am contemplating building a = similar SMP system. How much memory do you have installed and what use = do you have for the system? Any information much appreciated. David To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-multimedia" in the body of the message From owner-freebsd-multimedia Mon Apr 29 2:23:59 2002 Delivered-To: freebsd-multimedia@freebsd.org Received: from dart.sr.se (dart.sr.se [134.25.0.132]) by hub.freebsd.org (Postfix) with ESMTP id 8A5E837B419 for ; Mon, 29 Apr 2002 02:23:55 -0700 (PDT) Received: from honken.sr.se (honken.sr.se [134.25.128.27]) by dart.sr.se (8.11.6/8.11.6) with ESMTP id g3T9NrJ72699 for ; Mon, 29 Apr 2002 11:23:53 +0200 (CEST) (envelope-from gunnar@pluto.sr.se) Received: from pluto.sr.se (pluto.SR.SE [134.25.193.91]) by honken.sr.se (8.9.3/8.9.3) with ESMTP id LAA05043 for ; Mon, 29 Apr 2002 11:23:53 +0200 (CEST) (envelope-from gunnar@pluto.sr.se) Received: (from root@localhost) by pluto.sr.se (8.11.6/8.11.1) id g3T9Nqp82416 for freebsd-multimedia@freebsd.org; Mon, 29 Apr 2002 11:23:52 +0200 (CEST) (envelope-from gunnar) Received: (from gunnar@localhost) by pluto.sr.se (8.11.6/8.11.1av) id g3T9Nor82408 for freebsd-multimedia@freebsd.org; Mon, 29 Apr 2002 11:23:50 +0200 (CEST) (envelope-from gunnar) Date: Mon, 29 Apr 2002 11:23:50 +0200 From: Gunnar Flygt To: freebsd-multimedia@freebsd.org Subject: Anyone tested Hauppauge WinTV USB with a mobile? Message-ID: <20020429112349.A82393@sr.se> Reply-To: Gunnar Flygt Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline User-Agent: Mutt/1.2.5i X-Virus-Scanned: by AMaViS perl-11 Sender: owner-freebsd-multimedia@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.org Has anyone tested (there is no easy way to find what chip is on the board) the Hauppauge WinTV USB? The device shows up when runnning usbdevs, but it's uncomplete information, only that it is a Happauge device. Please CC me ,since I'm not on this list! -- __o regards, Gunnar ---_ \<,_ email: flygt@sr.se ---- (_)/ (_) To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-multimedia" in the body of the message From owner-freebsd-multimedia Mon Apr 29 23:32: 0 2002 Delivered-To: freebsd-multimedia@freebsd.org Received: from nowetech.com.pl (pa211.tychy-biskupa.sdi.tpnet.pl [217.96.211.211]) by hub.freebsd.org (Postfix) with ESMTP id 3813937B404 for ; Mon, 29 Apr 2002 23:31:52 -0700 (PDT) Received: from smtp0351.mail.yahoo.com (unknown [67.40.67.25]) by nowetech.com.pl (Postfix) with SMTP id B6A8278138; Tue, 30 Apr 2002 06:53:09 +0200 (CEST) Reply-To: HGHoffice@desertmail.com From: Product_Info@desertmail.com To: multimedia@feist.com Cc: multimedia@firstate.com, multimedia@freebsd.org Subject: == Myth: All HGH Products Are The Same == Mime-Version: 1.0 Content-Type: text/plain; charset="iso-8859-1" Date: Mon, 29 Apr 2002 22:57:16 -0700 Message-Id: <20020430045309.B6A8278138@nowetech.com.pl> Sender: owner-freebsd-multimedia@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.org All HGH (Human Growth Hormone) products are not the same. There are three different types of products. Yet, all three are advertised as if they where the same. The three types are: 1) Homeopathic HGH 2) Pre-cursor HGH 3) Real or synthetic HGH (delivered by injection or, by an oral spray method). Do you know the differences? Call us and we'll explain them to you. Our toll free number is 888-248-4571. For more information on HGH read on............ *********************************************************************** Have You Heard of Human Growth Hormone (HGH)? Released by your own pituitary gland, HGH starts declining in your 20s, even more in your 30s and 40s, eventually resulting in the shrinkage of major organs -- plus, all other symptoms related to old age. In Thousands of Clinical Studies Human Growth Hormone has been proven to accomplish the following: + Reduce Body Fat and Build Lean Muscle WITHOUT EXERCISE! + Enhance Sexual Performance + Remove Wrinkles and Cellulite + Lower Blood Pressure and Improve Cholesterol Profile + Improve Sleep, Vision and Memory + Restore Hair Color and Growth + Strengthen the Immune System + Increase Energy and Cardiac Output + Turn back your body's Biological Time Clock 10 - 20 years + Live Longer AND Stronger All natural and organic plant based Feel 10 Years Younger in 10 Weeks We are the manufacturer and we sell directly to Doctors, Chiropractors, and consumers world wide the highest grade HGH Oral Spray available. With internet marketing, we are able to save advertising cost and pass those savings along to you. But you must act now. To receive more information call us now. Toll Free 1-888-248-4571 We must speak to you in person to qualify your usage. All of your questions will be addressed and answered in a friendly, no pressure manner. Our main purpose is to provide you with information so you can make an educated decision. For more information call 1-888-248-4571 If you are on line write down our phone number and call us when you can. Soon, you and your loved ones will be very glad you did. Read what people are saying: "The effects of 6 months of GH on lean body mass and fat were equivalent in magnitude to the changes incurred during 10-20 years of aging." Dr. Daniel Rudman, MD, New England Journal of Medicine. "Within four months, my body fat decreased form 30% down to 21%! I noticed my skin is more supple and my overall mental outlook improved significantly." D.W., New Jersey "We have been on the spray for just 3 weeks now, and besides the tremendous energy we both feel, my husbands allergies and spells of depression have lifted. I am healing extremely fast after an accident and have lost 7 lbs. without trying!" C.B., Flagstaff. AZ Thanks for reading our letter, The HGH Staff USA Division PS: The HGH Staff guarantees the highest quality and lowest price. We manufacture and ship directly to your door. Call us now 1-888-248-4571 *********************************************************** ======= End of message ======== To Qualify for a Free HGH Consultation call the HGH Staff -- Today. *********************************************************** The following statement is provided to be in compliance with commercial email laws. If you do not wish to receive further mailings, please click reply and type remvoe in the subject box. Then click send. This message is in full compliance with U.S. Federal requirements for commercial email under bill S.1618 Title lll, Section 301, Paragraph (a)(2)(C) passed by the 105th U.S. Congress and is not considered SPAM since it includes a remove mechanism. *********************************************************** This message is not intended for residents in the states of CA, NC, NV, RI, TN, VA & WA. Screening of addresses has been done to the best of our technical ability. *********************************************************** Call us now 1-888-248-4571 for your free HGH consultation. The HGH Staff is standing by now. To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-multimedia" in the body of the message From owner-freebsd-multimedia Tue Apr 30 20: 0:32 2002 Delivered-To: freebsd-multimedia@freebsd.org Received: from earth.hub.org (earth.hub.org [64.49.215.11]) by hub.freebsd.org (Postfix) with ESMTP id 2022737B41A; Tue, 30 Apr 2002 20:00:19 -0700 (PDT) Received: from localhost.localdomain (earth.hub.org [64.49.215.11]) by localhost (Postfix) with ESMTP id EF25410347D; Wed, 1 May 2002 00:00:10 -0300 (ADT) Received: from earth.hub.org (earth.hub.org [64.49.215.11]) by earth.hub.org (Postfix) with ESMTP id 2C008103416; Tue, 30 Apr 2002 23:59:58 -0300 (ADT) Date: Tue, 30 Apr 2002 23:59:58 -0300 (ADT) From: "Marc G. Fournier" To: John Utz Cc: freebsd-stable@FreeBSD.ORG, Subject: Re: ASUS A7M266-D: enabling 'on board sound' In-Reply-To: Message-ID: <20020430235723.X15173-100000@mail1.hub.org> MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII Sender: owner-freebsd-multimedia@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.org On Tue, 23 Apr 2002, John Utz wrote: > huh, bet this might be an smp problem.... > > works like a champ on my ASUS board. > > > On Tue, 23 Apr 2002, Marc G. Fournier wrote: > > > > > Morning all ... > > > > Just recently picked up an ASUS A7M266-D Motherboard with Dual: > > "(AMD Athlon(TM) MP Processor (1200.05-MHz 686-class CPU)" ... the system > > purrs like the proverbial kitten ... but the one thing that is eluding me > > so far is getting the onboard sound to work ... > > > > I think I've gone through just about everything ... I enabled > > PNPBIOS in my kernel, made sure the sound device was enabled in the BIOS > > ... nadda ... > > > > The error I'm seeing in dmesg is: > > > > pcm0: at device 4.0 on pci2 > > pcm0: cmi_attach: Cannot allocate bus resource > > device_probe_and_attach: pcm0 attach returned 6 > > this could be one of two things: > > 1. your version of the CMI8738 might have a new pnp number, but i sorta > doubt it because then you wouldnt get the 'CMedia CMI8738' string. that is kinda what I'm figuring too ... > 2. All Your Interrupts Are Belong To Somebody Else! > > the extra bits of tomfoolery involved in getting a second cpu to live in > an architecture than never imagined more than one (daisy chained 8259a's, > still?) may have consumed the available interrupts. Actually, I thought about this, and one problem with this theory ... right now, I have both serial ports and the parallel port disabled, which should free up 3/4 and 5 (or is it 7?) ... if I re-enable them, they come up fine with their respective IRQs ;( > 3. Other, more reasonable, but more subtle problems that i cant imagine > :-) > > > I'd suggest the ol' boot -v and see what you get for a dmesg..... Will try this one tomorrow at the office ... > > > > I've tried manually setting in the kernel: > > > > > strings /kernel | grep pcm0 > > pcm0_resources > > ___device pcm0 at isa? irq 5 drq 1 flags 0x0 > > > > but that hasn't made any difference ... > > > > Anyone have any experience with this board, or this chipset, that > > might be able to suggest a course of action here? > > > > thanks ... > > > > > > > > > > > > > > To Unsubscribe: send mail to majordomo@FreeBSD.org > > with "unsubscribe freebsd-multimedia" in the body of the message > > > > -- > > John L. Utz III > john@utzweb.net > > Idiocy is the Impulse Function in the Convolution of Life > > To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-multimedia" in the body of the message From owner-freebsd-multimedia Wed May 1 8:18: 8 2002 Delivered-To: freebsd-multimedia@freebsd.org Received: from gyros.marcuscom.com (dhcp-64-102-60-52.cisco.com [64.102.60.52]) by hub.freebsd.org (Postfix) with ESMTP id ECF6F37B405; Wed, 1 May 2002 08:17:58 -0700 (PDT) Received: from localhost (localhost [127.0.0.1]) by gyros.marcuscom.com (8.12.3/8.12.3) with ESMTP id g41FHuHl000724; Wed, 1 May 2002 11:17:56 -0400 (EDT) (envelope-from marcus@marcuscom.com) Subject: Intermittent sound problems with recent MFC of dev/sound From: Joe Marcus Clarke To: stable@freebsd.org Cc: multimedia@freebsd.org Content-Type: text/plain Content-Transfer-Encoding: 7bit X-Mailer: Ximian Evolution 1.0.3 Date: 01 May 2002 11:17:56 -0400 Message-Id: <1020266276.310.17.camel@gyros.marcuscom.com> Mime-Version: 1.0 Sender: owner-freebsd-multimedia@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.org After the recent MFC of dev/sound (~ 4/22), I get this message occasionally when trying to play sound (MP3, WAV, any sound): Apr 27 14:08:43 gyros /kernel: pcm0:play:0: play interrupt timeout, channel dead This never happened with the old sound code. This usually occurs right off the bat after a cold boot of my laptop. If I immediately reboot, things work fine (well, except for vgb-bin which always has this problem [I haven't tried vgb-bin with the old sound code yet]). I have a Dell Inspiron 8100 with: pcm0: port 0xec00-0xecff mem 0xf8ffe000-0xf8ffffff irq 5 at device 3.0 on pci2 FreeBSD Audio Driver (newpcm) Installed devices: pcm0: at io 0xec00 irq 5 (4p/1r/0v channels duplex) Loaded as a kmod from the loader. Like I said, this is an intermittent sound problem, but I thought I'd report it before the 4.6 code freeze. For clarification, I'm running: FreeBSD gyros.marcuscom.com 4.5-STABLE FreeBSD 4.5-STABLE #0: Fri Apr 26 18:15:51 EDT 2002 marcus@gyros.marcuscom.com:/usr/obj/usr/src/sys/GYROS i386 I didn't see anything in the archives that indicated this issue was being discussed, but I have seen some other reports on stable@. Thanks. Joe -- PGP Key: http://www.marcuscom.com/pgp.asc To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-multimedia" in the body of the message From owner-freebsd-multimedia Wed May 1 10:11:37 2002 Delivered-To: freebsd-multimedia@freebsd.org Received: from earth.hub.org (earth.hub.org [64.49.215.11]) by hub.freebsd.org (Postfix) with ESMTP id AFA0037B419; Wed, 1 May 2002 10:11:31 -0700 (PDT) Received: from localhost.localdomain (earth.hub.org [64.49.215.11]) by localhost (Postfix) with ESMTP id 823DE10352D; Wed, 1 May 2002 14:11:30 -0300 (ADT) Received: from earth.hub.org (earth.hub.org [64.49.215.11]) by earth.hub.org (Postfix) with ESMTP id 443AC103493; Wed, 1 May 2002 14:10:21 -0300 (ADT) Date: Wed, 1 May 2002 14:10:21 -0300 (ADT) From: "Marc G. Fournier" To: Vizion Communication Cc: Randall Hopper , , Subject: SOLUTION FOUND: Re: ASUS A7M266-D: enabling 'on board sound' In-Reply-To: <01aa01c1ef1f$677bb630$9865fea9@VIZION2000> Message-ID: <20020501140857.H97878-100000@mail1.hub.org> MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII Sender: owner-freebsd-multimedia@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.org Thanks to a note from Orion this morning, the solution to the problem was to go into the BIOS and disable PNP O/S and she's purrs ... Thanks for all the suggestions, hopefully this helps someone else in the future ... On Sun, 28 Apr 2002, Vizion Communication wrote: > > ----- Original Message ----- > From: "Randall Hopper" > To: "Marc G. Fournier" > Cc: ; > Sent: Sunday, April 28, 2002 9:17 AM > Subject: Re: ASUS A7M266-D: enabling 'on board sound' > > > > Marc G. Fournier: > > | Just recently picked up an ASUS A7M266-D Motherboard with Dual: > > |"(AMD Athlon(TM) MP Processor (1200.05-MHz 686-class CPU)" ... the system > > |purrs like the proverbial kitten ... but the one thing that is eluding me > > |so far is getting the onboard sound to work ... > > ... > > |pcm0: at device 4.0 on pci2 > > |pcm0: cmi_attach: Cannot allocate bus resource > > |device_probe_and_attach: pcm0 attach returned 6 > > ... > > |___device pcm0 at isa? irq 5 drq 1 flags 0x0 > > > > I have the original non-dual version (ASUS A7M266) with the same sound > > chip: > > > > > dmesg | grep pcm0 > > pcm0: port 0xa400-0xa4ff irq 10 at device 5.0 on pci0 > > > > Here's what I have on my 4.3-STABLE (circa 06/01) config: > > > > device pcm0 > > device sbc0 at isa? port 0x220 irq 5 drq 1 flags 0x15 > > > > The flags may be the kicker for you. That sets the 2nd (16-bit) DMA > > channel IIRC. > > > If you have the time I would be very interested in having more information about your configuration as I am contemplating building a similar SMP system. How much memory do you have installed and what use do you have for the system? > > Any information much appreciated. > > David > > To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-multimedia" in the body of the message From owner-freebsd-multimedia Wed May 1 14: 3:10 2002 Delivered-To: freebsd-multimedia@freebsd.org Received: from hermes.pressenter.com (hermes.pressenter.com [209.224.20.19]) by hub.freebsd.org (Postfix) with ESMTP id 4E81E37B419 for ; Wed, 1 May 2002 14:03:03 -0700 (PDT) Received: from [209.224.20.74] (helo=daggar.sbgnet.net) by hermes.pressenter.com with smtp (Exim 3.16 #1) id 1731Fd-0004x4-00 for freebsd-multimedia@freebsd.org; Wed, 01 May 2002 16:03:01 -0500 Date: Wed, 1 May 2002 16:03:00 -0500 From: Stephen Hilton To: freebsd-multimedia@freebsd.org Subject: Re: Aureal Drivers in Freebsd Message-Id: <20020501160300.0558c32d.nospam@hiltonbsd.com> In-Reply-To: References: Organization: HiltonBSD.com X-Mailer: Sylpheed version 0.7.5 (GTK+ 1.2.10; i386-portbld-freebsd4.5) Mime-Version: 1.0 Content-Type: text/plain; charset=US-ASCII Content-Transfer-Encoding: 7bit Sender: owner-freebsd-multimedia@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.org On Fri, 26 Apr 2002 06:59:52 -0500 (CDT) Rob Zietlow wrote: > I am trying to install the aureal drivers from the ports and I received > the following errors when trying to compile. I am running 4.5-Stable. > Built the box yesterday afternoon. I have a Turtle Beach Montego Card. > Intel chipset motherboard (it's a Dell machine) Under linux I it was an > make install20 and I see this is at "10" Could this be the issue? I > tested this out on another box that doesn't have this card and the build > dies out at the same place > > Please CC since i am not on the list, > > Thanks list and Alexander > > Rob Zietlow > > Homer# pwd > /usr/ports/audio/aureal-kmod > Homer# make > ===> Extracting for aureal-kmod-1.3_3 > >> Checksum OK for au88x0-1.3_3.tar.gz. > ===> Patching for aureal-kmod-1.3_3 > ===> Applying FreeBSD patches for aureal-kmod-1.3_3 > ===> Configuring for aureal-kmod-1.3_3 > ===> Building for aureal-kmod-1.3_3 > ===> 10 > Warning: Object directory not changed from original > /usr/ports/audio/aureal-kmod/work/10 > @ -> /usr/src/sys > machine -> /usr/src/sys/i386/include > perl @/kern/makeops.pl -h @/kern/device_if.m > perl @/kern/makeops.pl -h @/kern/bus_if.m > perl @/kern/makeops.pl -h @/isa/isa_if.m > perl @/kern/makeops.pl -h @/pci/pci_if.m > perl @/kern/makeops.pl -h @/dev/sound/pcm/ac97_if.m > perl @/kern/makeops.pl -h @/dev/sound/pcm/channel_if.m > perl @/kern/makeops.pl -h @/dev/sound/pcm/feeder_if.m > perl @/kern/makeops.pl -h @/dev/sound/pcm/mixer_if.m > cc -O -pipe -I/usr/ports/audio/aureal-kmod/work -D_KERNEL -Wall > -Wredundant-decls -Wnested-externs -Wstrict-prototypes > -Wmissing-prototypes -Wpointer-arith > -Winline -Wcast-qual -fformat-extensions -ansi -DKLD_MODULE -nostdinc -I- > -I/usr/ports/audio/aureal-kmod/work -I. -I@ -I@/../include -I/usr/include > -mpreferred-stack-boundary=2 -Wall -Wredundant-decls -Wnested-externs > -Wstrict-prototypes > -Wmissing-prototypes -Wpointer-arith -Winline -Wcast-qual > -fformat-extensions > -ansi -c /usr/ports/audio/aureal-kmod/work/au88x0.c > /usr/ports/audio/aureal-kmod/work/au88x0.c: In function `au_pci_attach': > /usr/ports/audio/aureal-kmod/work/au88x0.c:793: too few arguments to > function `snd_mtxcreate' > /usr/ports/audio/aureal-kmod/work/au88x0.c: At top level: > /usr/ports/audio/aureal-kmod/work/au88x0.c:942: sizeof applied to an > incomplete > type > *** Error code 1 > > Stop in /usr/ports/audio/aureal-kmod/work/10. > *** Error code 1 > > Stop in /usr/ports/audio/aureal-kmod/work. > *** Error code 1 > > Stop in /usr/ports/audio/aureal-kmod. > *** Error code 1 > > Stop in /usr/ports/audio/aureal-kmod. > *** Error code 1 > > Stop in /usr/ports/audio/aureal-kmod. > Homer# > A solution has been found to this by "Bush Doctor". I have used his patch and was able to compile aureal-kmod from ports on FreeBSD-STABLE and tested playback/system-sound functions, and they are working fine for me. More information is available in the FreeBSD-ports mailing list archives (02/04/30), thread subject is: ports/37597: aureal-kmod-1.5_3 fails to build Thanks to "Bush Doctor" Stephen Hilton nospam@hiltonbsd.com To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-multimedia" in the body of the message From owner-freebsd-multimedia Wed May 1 17:49:17 2002 Delivered-To: freebsd-multimedia@freebsd.org Received: from elvis.mu.org (elvis.mu.org [192.203.228.196]) by hub.freebsd.org (Postfix) with ESMTP id 6019937B400; Wed, 1 May 2002 17:49:15 -0700 (PDT) Received: by elvis.mu.org (Postfix, from userid 1192) id 3FA7EAE163; Wed, 1 May 2002 17:49:15 -0700 (PDT) Date: Wed, 1 May 2002 17:49:15 -0700 From: Alfred Perlstein To: multimedia@freebsd.org Cc: current@freebsd.org Subject: fast playback with Intel 82801BA (ICH2) Message-ID: <20020502004915.GN98487@elvis.mu.org> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline User-Agent: Mutt/1.3.27i Sender: owner-freebsd-multimedia@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.org -current compiled today mp3s play too fast, any ideas on how to diagnose this? pcm0: port 0xef00-0xef3f,0xe800-0xe8ff irq 9 at device 31.5 on pci0 pcm0: measured ac97 link rate at 44061 Hz -- -Alfred Perlstein [alfred@freebsd.org] 'Instead of asking why a piece of software is using "1970s technology," start asking why software is ignoring 30 years of accumulated wisdom.' Tax deductible donations for FreeBSD: http://www.freebsdfoundation.org/ To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-multimedia" in the body of the message From owner-freebsd-multimedia Wed May 1 18: 8:20 2002 Delivered-To: freebsd-multimedia@freebsd.org Received: from puma.icir.org (puma.icir.org [192.150.187.73]) by hub.freebsd.org (Postfix) with ESMTP id 7270D37B41B; Wed, 1 May 2002 18:08:16 -0700 (PDT) Received: from puma.icir.org (localhost [127.0.0.1]) by puma.icir.org (8.11.6/8.11.3) with ESMTP id g42188v67590; Wed, 1 May 2002 18:08:08 -0700 (PDT) (envelope-from hodson@puma.icir.org) Message-Id: <200205020108.g42188v67590@puma.icir.org> X-Mailer: exmh version 2.5 07/13/2001 with nmh-1.0.3 To: Alfred Perlstein Cc: freebsd-multimedia@freebsd.org, current@freebsd.org Subject: Re: fast playback with Intel 82801BA (ICH2) In-Reply-To: Your message of "Wed, 01 May 2002 17:49:15 PDT." <20020502004915.GN98487@elvis.mu.org> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Date: Wed, 01 May 2002 18:08:08 -0700 From: Orion Hodson Sender: owner-freebsd-multimedia@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.org /-- Alfred Perlstein wrote: | -current compiled today mp3s play too fast, any ideas on how to | diagnose this? | | pcm0: port 0xef00-0xef3f,0xe800-0xe8ff irq 9 at device | 31.5 on pci0 | pcm0: measured ac97 link rate at 44061 Hz You can set a sysctl to set the ac97 link rate. I don't recall offhand what it is (hw.snd.pcm0.ac97rate?) - "sysctl -a | grep ac97" will find it. There is a calibration test in the ich code since various mfrs do funny things with the clock. I'd be interested to know what boot -v output is and what ac97 link rate works. This is the second box reported failing on this recently. - Orion To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-multimedia" in the body of the message From owner-freebsd-multimedia Wed May 1 19: 8:31 2002 Delivered-To: freebsd-multimedia@freebsd.org Received: from smtp4.knology.net (user-24-214-63-227.knology.net [24.214.63.227]) by hub.freebsd.org (Postfix) with SMTP id D025F37B417 for ; Wed, 1 May 2002 19:08:26 -0700 (PDT) Received: (qmail 23642 invoked by uid 8002); 2 May 2002 02:08:26 -0000 Received: from unknown (HELO grumpy.dyndns.org) (24.214.210.89) by smtp4.knology.net with SMTP; 2 May 2002 02:08:26 -0000 Received: from grumpy.dyndns.org (localhost [127.0.0.1]) by grumpy.dyndns.org (8.12.2/8.12.2) with ESMTP id g4228P4I015376; Wed, 1 May 2002 21:08:25 -0500 (CDT) (envelope-from dkelly@grumpy.dyndns.org) Message-Id: <200205020208.g4228P4I015376@grumpy.dyndns.org> X-Mailer: exmh version 2.5 07/13/2001 with nmh-1.0.4 To: "Marc G. Fournier" Cc: freebsd-stable@FreeBSD.ORG, freebsd-multimedia@FreeBSD.ORG From: David Kelly Subject: Re: SOLUTION FOUND: Re: ASUS A7M266-D: enabling 'on board sound' In-reply-to: Message from "Marc G. Fournier" of "Wed, 01 May 2002 14:10:21 -0300." <20020501140857.H97878-100000@mail1.hub.org> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Date: Wed, 01 May 2002 21:08:25 -0500 Sender: owner-freebsd-multimedia@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.org "Marc G. Fournier" writes: > > Thanks to a note from Orion this morning, the solution to the problem was > to go into the BIOS and disable PNP O/S and she's purrs ... I had that problem elsewhere. Think it was an Asus P6NP5. And maybe on this Asus A7V as the PCI I/O assignments were whacky if PNP was enabled. With PNP disabled things landed in the places one expects to find the I/O and IRQ's. -- David Kelly N4HHE, dkelly@hiwaay.net ===================================================================== The human mind ordinarily operates at only ten percent of its capacity -- the rest is overhead for the operating system. To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-multimedia" in the body of the message From owner-freebsd-multimedia Wed May 1 20:27:34 2002 Delivered-To: freebsd-multimedia@freebsd.org Received: from mail-mta2.service.ohio-state.edu (mail-mta2.service.ohio-state.edu [128.146.216.41]) by hub.freebsd.org (Postfix) with ESMTP id 2C26D37B405 for ; Wed, 1 May 2002 20:27:32 -0700 (PDT) Received: from there (rbar-164-107-206-14.resnet.ohio-state.edu [164.107.206.14]) by mail-mta2.service.ohio-state.edu (iPlanet Messaging Server 5.1 (built May 7 2001)) with SMTP id <0GVG00L7TS9V4P@mail-mta2.service.ohio-state.edu> for freebsd-multimedia@FreeBSD.ORG; Wed, 01 May 2002 23:27:31 -0400 (EDT) Date: Wed, 01 May 2002 23:27:03 -0400 From: Anish Mistry Subject: Divx Editors To: freebsd-multimedia@FreeBSD.ORG Message-id: <0GVG00L7US9V4P@mail-mta2.service.ohio-state.edu> MIME-version: 1.0 X-Mailer: KMail [version 1.3.2] Content-type: text/plain; charset=iso-8859-1 Content-transfer-encoding: 7BIT Sender: owner-freebsd-multimedia@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.org I was wondering if there were any editor tools for freebsd to edit divx avi files. I've found a few stuff for mpeg, but not divx. It doesn't have to be gui, just something that I can use to splice out commercials from some shows that I've recorded with my tv card. Thanks, -- Anish Mistry To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-multimedia" in the body of the message From owner-freebsd-multimedia Thu May 2 2:55:32 2002 Delivered-To: freebsd-multimedia@freebsd.org Received: from phoenix.welearn.com.au (phoenix.welearn.com.au [139.130.44.81]) by hub.freebsd.org (Postfix) with ESMTP id 3B8C137B400 for ; Thu, 2 May 2002 02:55:27 -0700 (PDT) Received: (from sue@localhost) by phoenix.welearn.com.au (8.11.6/8.11.6) id g429tOw06784 for freebsd-multimedia@freebsd.org; Thu, 2 May 2002 19:55:24 +1000 (EST) (envelope-from sue) Date: Thu, 2 May 2002 19:55:24 +1000 From: Sue Blake To: freebsd-multimedia@freebsd.org Subject: pcm0: play interrupt timeout, channel dead Message-ID: <20020502195523.A6642@welearn.com.au> Mail-Followup-To: Sue Blake , freebsd-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 List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.org The problem is that when sound keels over, only a reboot can restore sound, which gets mighty tedious. http://www.FreeBSD.org/cgi/query-pr.cgi?pr=kern/34942 It's been a few months now, and although this PR is still open I'm wondering whether the problem might have been fixed anyway? Last time I checked, upgrading to 4.5R or -stable would have made the problem worse if anything, but maybe something has happened to change the situation. Has anyone here had the same problem after 4.2R and seen it go away after an upgrade to a recent -stable?? -- Regards, -*Sue*- To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-multimedia" in the body of the message From owner-freebsd-multimedia Thu May 2 3: 1:36 2002 Delivered-To: freebsd-multimedia@freebsd.org Received: from roam.psg.com (roam.psg.com [193.0.5.205]) by hub.freebsd.org (Postfix) with ESMTP id F2C1537B405 for ; Thu, 2 May 2002 03:01:33 -0700 (PDT) Received: from localhost ([127.0.0.1] helo=roam.psg.com ident=randy) by roam.psg.com with esmtp (Exim 4.04) id 173DOQ-000BHp-00; Thu, 02 May 2002 06:00:54 -0400 From: Randy Bush MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: 7bit To: Sue Blake Cc: freebsd-multimedia@freebsd.org Subject: Re: pcm0: play interrupt timeout, channel dead References: <20020502195523.A6642@welearn.com.au> Message-Id: Date: Thu, 02 May 2002 06:00:54 -0400 Sender: owner-freebsd-multimedia@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.org > It's been a few months now, and although this PR is still open > I'm wondering whether the problem might have been fixed anyway? here, the problem went away recently To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-multimedia" in the body of the message From owner-freebsd-multimedia Thu May 2 15: 6:13 2002 Delivered-To: freebsd-multimedia@freebsd.org Received: from elvis.mu.org (elvis.mu.org [192.203.228.196]) by hub.freebsd.org (Postfix) with ESMTP id F260537B416 for ; Thu, 2 May 2002 15:06:05 -0700 (PDT) Received: by elvis.mu.org (Postfix, from userid 1192) id CD045AE1D0; Thu, 2 May 2002 15:06:05 -0700 (PDT) Date: Thu, 2 May 2002 15:06:05 -0700 From: Alfred Perlstein To: Orion Hodson Cc: freebsd-multimedia@freebsd.org Subject: Re: fast playback with Intel 82801BA (ICH2) Message-ID: <20020502220605.GC36741@elvis.mu.org> References: <20020502004915.GN98487@elvis.mu.org> <200205020108.g42188v67590@puma.icir.org> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <200205020108.g42188v67590@puma.icir.org> User-Agent: Mutt/1.3.27i Sender: owner-freebsd-multimedia@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.org * Orion Hodson [020501 18:10] wrote: > /-- Alfred Perlstein wrote: > | -current compiled today mp3s play too fast, any ideas on how to > | diagnose this? > | > | pcm0: port 0xef00-0xef3f,0xe800-0xe8ff irq 9 at device > | 31.5 on pci0 > | pcm0: measured ac97 link rate at 44061 Hz > > You can set a sysctl to set the ac97 link rate. I don't recall offhand what > it is (hw.snd.pcm0.ac97rate?) - "sysctl -a | grep ac97" will find it. > > There is a calibration test in the ich code since various mfrs do funny things > with the clock. I'd be interested to know what boot -v output is and what > ac97 link rate works. This is the second box reported failing on this > recently. /usr/src/sys/sys % sysctl -a | grep ac97 ac97 2 1K 1K 2 16,256 hw.snd.pcm0.ac97rate: 44061 I can get you boot -v later. -- -Alfred Perlstein [alfred@freebsd.org] 'Instead of asking why a piece of software is using "1970s technology," start asking why software is ignoring 30 years of accumulated wisdom.' Tax deductible donations for FreeBSD: http://www.freebsdfoundation.org/ To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-multimedia" in the body of the message From owner-freebsd-multimedia Thu May 2 16:29:44 2002 Delivered-To: freebsd-multimedia@freebsd.org Received: from Stalker.alfacom.net (Stalker.Alfacom.net [193.108.124.1]) by hub.freebsd.org (Postfix) with ESMTP id 80E1137B416 for ; Thu, 2 May 2002 16:29:39 -0700 (PDT) Received: from kushnir1.kiev.ua (dup-124-181.Alfacom.net [193.108.124.181]) by Stalker.alfacom.net (8.12.2.Beta3/8.12.2.Beta3) with ESMTP id g42NTT63019331; Fri, 3 May 2002 02:29:32 +0300 (EEST) Received: from kushnir1.kiev.ua (localhost [127.0.0.1]) by kushnir1.kiev.ua (8.12.3/8.12.2) with ESMTP id g42NTWHQ018162; Fri, 3 May 2002 02:29:32 +0300 (EEST) (envelope-from vkushnir@alfacom.net) Received: from localhost (volodya@localhost) by kushnir1.kiev.ua (8.12.3/8.12.3/Submit) with ESMTP id g42NTS6d018159; Fri, 3 May 2002 02:29:30 +0300 (EEST) X-Authentication-Warning: kushnir1.kiev.ua: volodya owned process doing -bs Date: Fri, 3 May 2002 02:29:27 +0300 (EEST) From: Vladimir Kushnir X-X-Sender: volodya@kushnir1.kiev.ua To: Anish Mistry Cc: freebsd-multimedia@FreeBSD.ORG Subject: Re: Divx Editors In-Reply-To: <0GVG00L7US9V4P@mail-mta2.service.ohio-state.edu> Message-ID: <20020503022651.J10279-100000@kushnir1.kiev.ua> MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII Sender: owner-freebsd-multimedia@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.org Hi, On Wed, 1 May 2002, Anish Mistry wrote: > I was wondering if there were any editor tools for freebsd to edit divx avi > files. I've found a few stuff for mpeg, but not divx. It doesn't have to be > gui, just something that I can use to splice out commercials from some shows > that I've recorded with my tv card. > Thanks, > Take a look at avidemux (http://fixounet.free.fr/avidemux/). At least the last version (0.90pre1) works with xvid that it we can use it. Regards, Vladimir -- Vladimir Kushnir - vkushnir@Alfacom.net To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-multimedia" in the body of the message From owner-freebsd-multimedia Fri May 3 11: 0:27 2002 Delivered-To: freebsd-multimedia@freebsd.org Received: from elvis.mu.org (elvis.mu.org [192.203.228.196]) by hub.freebsd.org (Postfix) with ESMTP id 0740537B41E; Fri, 3 May 2002 11:00:21 -0700 (PDT) Received: by elvis.mu.org (Postfix, from userid 1192) id D4393AE1D4; Fri, 3 May 2002 11:00:20 -0700 (PDT) Date: Fri, 3 May 2002 11:00:20 -0700 From: Alfred Perlstein To: Orion Hodson Cc: freebsd-multimedia@freebsd.org, current@freebsd.org Subject: Re: fast playback with Intel 82801BA (ICH2) Message-ID: <20020503180020.GP36741@elvis.mu.org> References: <20020502004915.GN98487@elvis.mu.org> <200205020108.g42188v67590@puma.icir.org> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <200205020108.g42188v67590@puma.icir.org> User-Agent: Mutt/1.3.27i Sender: owner-freebsd-multimedia@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.org * Orion Hodson [020501 18:10] wrote: > /-- Alfred Perlstein wrote: > | -current compiled today mp3s play too fast, any ideas on how to > | diagnose this? > | > | pcm0: port 0xef00-0xef3f,0xe800-0xe8ff irq 9 at device > | 31.5 on pci0 > | pcm0: measured ac97 link rate at 44061 Hz > > You can set a sysctl to set the ac97 link rate. I don't recall offhand what > it is (hw.snd.pcm0.ac97rate?) - "sysctl -a | grep ac97" will find it. > > There is a calibration test in the ich code since various mfrs do funny things > with the clock. I'd be interested to know what boot -v output is and what > ac97 link rate works. This is the second box reported failing on this > recently. This makes it sound almost perfect: sysctl hw.snd.pcm0.ac97rate=55000 the default 44061 is bad. -- -Alfred Perlstein [alfred@freebsd.org] 'Instead of asking why a piece of software is using "1970s technology," start asking why software is ignoring 30 years of accumulated wisdom.' Tax deductible donations for FreeBSD: http://www.freebsdfoundation.org/ To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-multimedia" in the body of the message From owner-freebsd-multimedia Fri May 3 11:11:23 2002 Delivered-To: freebsd-multimedia@freebsd.org Received: from swan.prod.itd.earthlink.net (swan.mail.pas.earthlink.net [207.217.120.123]) by hub.freebsd.org (Postfix) with ESMTP id 9AE0937B41A; Fri, 3 May 2002 11:11:18 -0700 (PDT) Received: from pool0248.cvx40-bradley.dialup.earthlink.net ([216.244.42.248] helo=mindspring.com) by swan.prod.itd.earthlink.net with esmtp (Exim 3.33 #2) id 173hWS-0000Yu-00; Fri, 03 May 2002 11:11:13 -0700 Message-ID: <3CD2D2A4.ED54C42D@mindspring.com> Date: Fri, 03 May 2002 11:10:44 -0700 From: Terry Lambert X-Mailer: Mozilla 4.7 [en]C-CCK-MCD {Sony} (Win98; U) X-Accept-Language: en MIME-Version: 1.0 To: Alfred Perlstein Cc: Orion Hodson , freebsd-multimedia@freebsd.org, current@freebsd.org Subject: Re: fast playback with Intel 82801BA (ICH2) References: <20020502004915.GN98487@elvis.mu.org> <200205020108.g42188v67590@puma.icir.org> <20020503180020.GP36741@elvis.mu.org> Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: 7bit Sender: owner-freebsd-multimedia@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.org Alfred Perlstein wrote: > This makes it sound almost perfect: > > sysctl hw.snd.pcm0.ac97rate=55000 > > the default 44061 is bad. I thought this was because it's the CD sample rate... -- Terry To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-multimedia" in the body of the message From owner-freebsd-multimedia Fri May 3 12: 9:46 2002 Delivered-To: freebsd-multimedia@freebsd.org Received: from zibbi.icomtek.csir.co.za (zibbi.icomtek.csir.co.za [146.64.24.58]) by hub.freebsd.org (Postfix) with ESMTP id 1C29A37B417; Fri, 3 May 2002 12:09:39 -0700 (PDT) Received: (from jhay@localhost) by zibbi.icomtek.csir.co.za (8.11.6/8.11.6) id g43J94j33817; Fri, 3 May 2002 21:09:04 +0200 (SAT) (envelope-from jhay) From: John Hay Message-Id: <200205031909.g43J94j33817@zibbi.icomtek.csir.co.za> Subject: Re: fast playback with Intel 82801BA (ICH2) In-Reply-To: <20020503180020.GP36741@elvis.mu.org> from Alfred Perlstein at "May 3, 2002 11:00:20 am" To: bright@mu.org (Alfred Perlstein) Date: Fri, 3 May 2002 21:09:04 +0200 (SAT) Cc: freebsd-multimedia@FreeBSD.ORG, current@FreeBSD.ORG 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 List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.org > > | -current compiled today mp3s play too fast, any ideas on how to > > | diagnose this? > > | > > | pcm0: port 0xef00-0xef3f,0xe800-0xe8ff irq 9 at device > > | 31.5 on pci0 > > | pcm0: measured ac97 link rate at 44061 Hz > > This makes it sound almost perfect: > > sysctl hw.snd.pcm0.ac97rate=55000 > > the default 44061 is bad. What about 56000? Our Dells seem to use it. I'm not sure what is so magic about it. Maybe they wanted to cater for modems on the ac97 channel. John -- John Hay -- John.Hay@icomtek.csir.co.za / jhay@FreeBSD.org To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-multimedia" in the body of the message From owner-freebsd-multimedia Fri May 3 12:11:49 2002 Delivered-To: freebsd-multimedia@freebsd.org Received: from elvis.mu.org (elvis.mu.org [192.203.228.196]) by hub.freebsd.org (Postfix) with ESMTP id 9CE2837B41C; Fri, 3 May 2002 12:11:40 -0700 (PDT) Received: by elvis.mu.org (Postfix, from userid 1192) id D6C99AE1EE; Fri, 3 May 2002 12:11:38 -0700 (PDT) Date: Fri, 3 May 2002 12:11:38 -0700 From: Alfred Perlstein To: John Hay Cc: freebsd-multimedia@FreeBSD.ORG, current@FreeBSD.ORG Subject: Re: fast playback with Intel 82801BA (ICH2) Message-ID: <20020503191138.GT36741@elvis.mu.org> References: <20020503180020.GP36741@elvis.mu.org> <200205031909.g43J94j33817@zibbi.icomtek.csir.co.za> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <200205031909.g43J94j33817@zibbi.icomtek.csir.co.za> User-Agent: Mutt/1.3.27i Sender: owner-freebsd-multimedia@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.org * John Hay [020503 12:09] wrote: > > > | -current compiled today mp3s play too fast, any ideas on how to > > > | diagnose this? > > > | > > > | pcm0: port 0xef00-0xef3f,0xe800-0xe8ff irq 9 at device > > > | 31.5 on pci0 > > > | pcm0: measured ac97 link rate at 44061 Hz > > > > This makes it sound almost perfect: > > > > sysctl hw.snd.pcm0.ac97rate=55000 > > > > the default 44061 is bad. > > What about 56000? Our Dells seem to use it. I'm not sure what is so magic > about it. Maybe they wanted to cater for modems on the ac97 channel. That sounds fine also, basically if i go lower then it sounds sped up, higher and it sounds slow. -Alfred To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-multimedia" in the body of the message From owner-freebsd-multimedia Fri May 3 14:29:56 2002 Delivered-To: freebsd-multimedia@freebsd.org Received: from mail-mta6.service.ohio-state.edu (mail-mta6.service.ohio-state.edu [128.146.216.46]) by hub.freebsd.org (Postfix) with ESMTP id ABCB137B41B for ; Fri, 3 May 2002 14:29:48 -0700 (PDT) Received: from there (rbar-164-107-206-14.resnet.ohio-state.edu [164.107.206.14]) by mail-mta6.service.ohio-state.edu (iPlanet Messaging Server 5.1 HotFix 0.6 (built Apr 26 2002)) with SMTP id <0GVK0001211OC4@mail-mta6.service.ohio-state.edu> for freebsd-multimedia@FreeBSD.ORG; Fri, 03 May 2002 17:29:48 -0400 (EDT) Date: Fri, 03 May 2002 17:29:19 -0400 From: Anish Mistry Subject: Re: Divx Editors In-reply-to: <20020503022651.J10279-100000@kushnir1.kiev.ua> To: Vladimir Kushnir Cc: freebsd-multimedia@FreeBSD.ORG Message-id: <0GVK0001311OC4@mail-mta6.service.ohio-state.edu> MIME-version: 1.0 X-Mailer: KMail [version 1.3.2] Content-type: text/plain; charset=iso-8859-1 Content-transfer-encoding: 7BIT References: <20020503022651.J10279-100000@kushnir1.kiev.ua> Sender: owner-freebsd-multimedia@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.org On Thursday 02 May 2002 07:29 pm, you wrote: > Hi, > > On Wed, 1 May 2002, Anish Mistry wrote: > > > I was wondering if there were any editor tools for freebsd to edit divx avi > > files. I've found a few stuff for mpeg, but not divx. It doesn't have to be > > gui, just something that I can use to splice out commercials from some shows > > that I've recorded with my tv card. > > Thanks, > > > > Take a look at avidemux (http://fixounet.free.fr/avidemux/). At least the > last version (0.90pre1) works with xvid that it we can use it. > > Regards, > Vladimir > -- > Vladimir Kushnir - vkushnir@Alfacom.net > > > Thanks. Have you gotten avidemux to compile? I seem to be getting a problem with the configure script not finding decore.h even though it is in the include path. --------- > ls -l /usr/local/include/decore.h -rwxr-xr-x 1 root wheel 5117 Apr 20 13:11 /usr/local/include/decore.h --------- checking for decore.h... no configure: error: *** decore.h from Divx4linux not found *** -- Anish Mistry To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-multimedia" in the body of the message From owner-freebsd-multimedia Fri May 3 14:52:58 2002 Delivered-To: freebsd-multimedia@freebsd.org Received: from Stalker.alfacom.net (Stalker.Alfacom.net [193.108.124.1]) by hub.freebsd.org (Postfix) with ESMTP id 96B3537B417 for ; Fri, 3 May 2002 14:52:50 -0700 (PDT) Received: from kushnir1.kiev.ua (dup-124-138.Alfacom.net [193.108.124.138]) by Stalker.alfacom.net (8.12.2.Beta3/8.12.2.Beta3) with ESMTP id g43Lqe63022815; Sat, 4 May 2002 00:52:42 +0300 (EEST) Received: from kushnir1.kiev.ua (localhost [127.0.0.1]) by kushnir1.kiev.ua (8.12.3/8.12.2) with ESMTP id g43LqdHw019049; Sat, 4 May 2002 00:52:39 +0300 (EEST) (envelope-from vkushnir@alfacom.net) Received: from localhost (volodya@localhost) by kushnir1.kiev.ua (8.12.3/8.12.3/Submit) with ESMTP id g43LqbOR019046; Sat, 4 May 2002 00:52:38 +0300 (EEST) X-Authentication-Warning: kushnir1.kiev.ua: volodya owned process doing -bs Date: Sat, 4 May 2002 00:52:36 +0300 (EEST) From: Vladimir Kushnir X-X-Sender: volodya@kushnir1.kiev.ua To: Anish Mistry Cc: freebsd-multimedia@FreeBSD.ORG Subject: Re: Divx Editors In-Reply-To: <0GVK0001311OC4@mail-mta6.service.ohio-state.edu> Message-ID: <20020504004749.G18206-100000@kushnir1.kiev.ua> MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII Sender: owner-freebsd-multimedia@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.org On Fri, 3 May 2002, Anish Mistry wrote: > On Thursday 02 May 2002 07:29 pm, you wrote: > > Hi, > > > > On Wed, 1 May 2002, Anish Mistry wrote: > > > > > I was wondering if there were any editor tools for freebsd to edit divx > avi > > > files. I've found a few stuff for mpeg, but not divx. It doesn't have > to be > > > gui, just something that I can use to splice out commercials from some > shows > > > that I've recorded with my tv card. > > > Thanks, > > > > > > > Take a look at avidemux (http://fixounet.free.fr/avidemux/). At least the > > last version (0.90pre1) works with xvid that it we can use it. > > > > > > > Thanks. Have you gotten avidemux to compile? I seem to be getting a problem > with the configure script not finding decore.h even though it is in the > include path. > --------- > > ls -l /usr/local/include/decore.h > -rwxr-xr-x 1 root wheel 5117 Apr 20 13:11 /usr/local/include/decore.h > --------- > checking for decore.h... no > configure: error: *** decore.h from Divx4linux not found *** > Yes, but I had to setenv CPPFLAGS=-I/usr/local/include for configure to find decore.h. Besides, since XviD doesn't support DivX3 (MS mpeg4) avidemux also works with DivX4. Regards, Vladimir -- Vladimir Kushnir - vkushnir@Alfacom.net To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-multimedia" in the body of the message From owner-freebsd-multimedia Sat May 4 20: 9: 4 2002 Delivered-To: freebsd-multimedia@freebsd.org Received: from mail-mta6.service.ohio-state.edu (mail-mta6.service.ohio-state.edu [128.146.216.46]) by hub.freebsd.org (Postfix) with ESMTP id B7F4237B417 for ; Sat, 4 May 2002 20:08:59 -0700 (PDT) Received: from there (rbar-164-107-206-43.resnet.ohio-state.edu [164.107.206.43]) by mail-mta6.service.ohio-state.edu (iPlanet Messaging Server 5.1 HotFix 0.6 (built Apr 26 2002)) with SMTP id <0GVM00MEJBEY9I@mail-mta6.service.ohio-state.edu> for freebsd-multimedia@FreeBSD.ORG; Sat, 04 May 2002 23:08:59 -0400 (EDT) Date: Sat, 04 May 2002 23:08:25 -0400 From: Anish Mistry Subject: Re: Divx Editors In-reply-to: <20020505001857.U45572-100000@kushnir1.kiev.ua> To: Vladimir Kushnir Cc: freebsd-multimedia@FreeBSD.ORG Message-id: <0GVM00MELBEZ9I@mail-mta6.service.ohio-state.edu> MIME-version: 1.0 X-Mailer: KMail [version 1.3.2] Content-type: text/plain; charset=iso-8859-1 Content-transfer-encoding: 7BIT References: <20020505001857.U45572-100000@kushnir1.kiev.ua> Sender: owner-freebsd-multimedia@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.org On Saturday 04 May 2002 05:31 pm, you wrote: > On Fri, 3 May 2002, Anish Mistry wrote: > > > On Friday 03 May 2002 05:52 pm, you wrote: > > Ok, well I got it to configure, but it won't build. Is there anything else > > did you do to get it to build? The configure shows that nothing is detected. > > --------- > > DivX4linux decode : no > > DivX4linux encode : no > > Divx5 ? : no > > Xvid : no > > Mjpeg : no > > Mpeg 1 & 2 : no > > Mad decoder : no > > ESD : no > > Xv(overlay) : no > > Lame : no > > ------- gmake error ---- > > ../avi_vars.h:13: #error xvid / divx4linux not found !! www.divx.com > > www.xvid.org > ~~~~~~~~~~~~~ This is your friend (and mine, of course :-) Actually, I'm > using CVS version of xvid codec. It's got Makefile.freebsd now but I > prefer Linux variant although it requires new nasm (nasm.sourceforge.net). > Besides, it looks like in your case configure hasn't found a lot of > things. Have you actually got them? I mean, mad, esd and so on? Mpeg1/2 > are of no concern now, avidemux uses libmpeg3. I've got it compiled after > some tweaking but it results in... err... not very nice picture (and this > is a gross understatement). If you've got all of those things - well, > could you send me your config.log and exact command line you've issued to > call configure? > > Regards, > Vladimir > -- > Vladimir Kushnir - vkushnir@Alfacom.net > > > I did get it to configure and build by setting the following enviornmental variables: CPPFLAGS=-I/usr/local/include -I/usr/X11R6/include LIBFLAGS=-L/usr/local/lib -L/usr/X11R6/lib LDFLAGS=-L/usr/local/lib -L/usr/X11R6/lib But now when I open an avi the program just segfaults. I have tried the normal and broken modes, and have tried to recompile without #define USE_UYUV but I still get the same results. I can view the files with aviplay just fine. I have emailed to author with a description of the problem. Thanks, -- Anish Mistry To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-multimedia" in the body of the message