From owner-freebsd-multimedia@FreeBSD.ORG Sun Dec 31 11:22:07 2006 Return-Path: X-Original-To: freebsd-multimedia@freebsd.org Delivered-To: freebsd-multimedia@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 8387D16A407 for ; Sun, 31 Dec 2006 11:22:07 +0000 (UTC) (envelope-from hselasky@c2i.net) Received: from swip.net (mailfe09.tele2.se [212.247.155.1]) by mx1.freebsd.org (Postfix) with ESMTP id C846C13C45A for ; Sun, 31 Dec 2006 11:22:06 +0000 (UTC) (envelope-from hselasky@c2i.net) X-Cloudmark-Score: 0.000000 [] Received: from [193.217.102.48] (account mc467741@c2i.net HELO [10.0.0.249]) by mailfe09.swip.net (CommuniGate Pro SMTP 5.0.12) with ESMTPA id 201774640; Sun, 31 Dec 2006 12:22:05 +0100 From: Hans Petter Selasky To: freebsd-multimedia@freebsd.org Date: Sun, 31 Dec 2006 12:21:47 +0100 User-Agent: KMail/1.7 References: <20061230111525.A9195@xorpc.icir.org> In-Reply-To: <20061230111525.A9195@xorpc.icir.org> MIME-Version: 1.0 Content-Type: text/plain; charset="iso-8859-1" Content-Transfer-Encoding: 7bit Content-Disposition: inline Message-Id: <200612311221.50111.hselasky@c2i.net> Cc: Luigi Rizzo , multimedia@freebsd.org Subject: Re: pwcbsd extensions for spca-supported cameras X-BeenThere: freebsd-multimedia@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Multimedia discussions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 31 Dec 2006 11:22:07 -0000 On Saturday 30 December 2006 20:15, Luigi Rizzo wrote: > If someone (kernel programmers) is interested in having a look at > this code... > > It is not yet usable but i am moving forward quite fast, > hopefully with a bit of help we can manage to have a working driver > within a few days. > > I have been working recently to integrate more cameras into the > pwcbsd port, namely those supported by the spca (userland) > application/driver. > > I am doing rather good progress, but wouldn't mind a bit > of review/help if you are interested. Details are at > > http://info.iet.unipi.it/~luigi/FreeBSD/usb-cameras.html > > basically i can probe the camera and start the usb transfer, > all left to do now is link the code that detects the start of frame > into the usb isoc stream, and later to invoke the format converters > appropriately. > > let me know if you have any suggestions on how to proceed with this. > (the code is basically the pwcbsd and spcaview that we have in > the ports, with very limited modifications - the license is > obviously the same as the original, so this is going to remain > a port). > If you want more stable isochronous transfers, and especially High-speed ISOC transfers, you need to use my new USB API. Please see: http://www.turbocat.net/~hselasky/usb4bsd There are examples in "ugen.c" on how to do ISOC transfers, which is basically the same as in the old system. More examples on how to use ISOC transfers: http://www.turbocat.net/~hselasky/isdn4bsd/sources/src/sys/i4b/layer1/ihfc2/i4b_wibusb.h http://www.turbocat.net/~hselasky/isdn4bsd/sources/src/sys/i4b/layer1/ihfc2/i4b_hfcsusb.h I found this comment: /* !!!!!!!!!! IMPORTANT DO NOT SET THIS HIGHER THAN 8 !!!!!!!!!!!!!!! * !!!!!!!!!! OHCI IS BUGGY IF YOU DO SO !!!!!!!!!!!!!!!*/ #define ISO_FRAMES_PER_DESC 8 Please set ISO_FRAMES_PER_DESC to 50 and hardcode MAX_ISO_BUFS to 2. That will work on all USB host controllers. # # I recommend using the latest sources: # svn --username anonsvn --password anonsvn \ checkout svn://svn.turbocat.net/i4b # # The following commands will # install the driver on FreeBSD: # cd i4b/trunk/i4b/FreeBSD.usb make S=../src package make install --HPS From owner-freebsd-multimedia@FreeBSD.ORG Sun Dec 31 11:24:04 2006 Return-Path: X-Original-To: multimedia@FreeBSD.org Delivered-To: freebsd-multimedia@FreeBSD.ORG Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 491B116A40F for ; Sun, 31 Dec 2006 11:24:04 +0000 (UTC) (envelope-from jbq@caraldi.com) Received: from caraldi.com (195-13-58-165.oxyd.net [195.13.58.165]) by mx1.freebsd.org (Postfix) with ESMTP id 16A3D13C458 for ; Sun, 31 Dec 2006 11:24:04 +0000 (UTC) (envelope-from jbq@caraldi.com) Received: from zoupla.cottages (laf31-2-82-224-106-41.fbx.proxad.net [82.224.106.41]) by caraldi.com (Postfix) with ESMTP id A2A9E61A9 for ; Sun, 31 Dec 2006 12:05:17 +0100 (CET) Received: by zoupla.cottages (Postfix, from userid 1001) id 1D74D2E045; Sun, 31 Dec 2006 12:05:20 +0100 (CET) Date: Sun, 31 Dec 2006 12:05:20 +0100 From: Jean-Baptiste Quenot To: multimedia@FreeBSD.org Message-ID: <20061231110519.GA36414@zoupla.cottages> Mail-Followup-To: Jean-Baptiste Quenot , multimedia@FreeBSD.org MIME-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Disposition: inline User-Agent: mutt-ng/devel-r804 (FreeBSD) Cc: Subject: Half success with snd_hda and NVidia MCP51 X-BeenThere: freebsd-multimedia@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Multimedia discussions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 31 Dec 2006 11:24:04 -0000 Hi, Thank you very much for providing sound support on the High Definition Audio Controller, and for your help on IRC. Here is my environment: $ uname -a FreeBSD zoupla.cottages 6.2-PRERELEASE FreeBSD 6.2-PRERELEASE #0: Fri Dec 15 23:24:25 CET 2006 jbq@zoupla.cottages:/usr/obj/usr/src/sys/GENERIC amd64 $ pciconf -lv | grep -B 4 multimedia ^^^^^^^^^^ NOTE that I replaced audio with multimedia! class = bridge subclass = PCI-PCI pcm0@pci0:16:1: class=0x040300 card=0x01ed1028 chip=0x026c10de rev=0xa2 hdr=0x00 vendor = 'NVIDIA Corporation' class = multimedia $ sysctl hw.snd hw.snd.latency_profile: 1 hw.snd.latency: 5 hw.snd.report_soft_formats: 1 hw.snd.feeder_buffersize: 16384 hw.snd.feeder_fmt_downmix: 0 hw.snd.feeder_rate_round: 25 hw.snd.feeder_rate_max: 2016000 hw.snd.feeder_rate_min: 1 hw.snd.verbose: 1 hw.snd.sndstat_isopen: 0 hw.snd.maxautovchans: 4 hw.snd.default_unit: 0 The result is a half-success: sound output works fine, but sound recording has a weird sample rate, like two times slower than normal. Also note that with the rear sound panel, recording does not work at all. Any input will be appreciated. Thanks in advance, -- Jean-Baptiste Quenot aka John Banana Qwerty Don't buy the Dell E521 and C521 computers... http://blog.caraldi.com/jbq/2006/11/30/dont-buy-the-dell-e521-and-c521-computers/ From owner-freebsd-multimedia@FreeBSD.ORG Sun Dec 31 12:22:08 2006 Return-Path: X-Original-To: multimedia@freebsd.org Delivered-To: freebsd-multimedia@FreeBSD.ORG Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id ABCA016A407 for ; Sun, 31 Dec 2006 12:22:08 +0000 (UTC) (envelope-from hselasky@c2i.net) Received: from swip.net (mailfe09.swip.net [212.247.155.1]) by mx1.freebsd.org (Postfix) with ESMTP id 21F0C13C44C for ; Sun, 31 Dec 2006 12:22:07 +0000 (UTC) (envelope-from hselasky@c2i.net) X-Cloudmark-Score: 0.000000 [] Received: from [193.217.102.48] (account mc467741@c2i.net HELO [10.0.0.249]) by mailfe09.swip.net (CommuniGate Pro SMTP 5.0.12) with ESMTPA id 201774640; Sun, 31 Dec 2006 12:22:05 +0100 From: Hans Petter Selasky To: freebsd-multimedia@freebsd.org Date: Sun, 31 Dec 2006 12:21:47 +0100 User-Agent: KMail/1.7 References: <20061230111525.A9195@xorpc.icir.org> In-Reply-To: <20061230111525.A9195@xorpc.icir.org> MIME-Version: 1.0 Content-Type: text/plain; charset="iso-8859-1" Content-Transfer-Encoding: 7bit Content-Disposition: inline Message-Id: <200612311221.50111.hselasky@c2i.net> Cc: Luigi Rizzo , multimedia@freebsd.org Subject: Re: pwcbsd extensions for spca-supported cameras X-BeenThere: freebsd-multimedia@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Multimedia discussions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 31 Dec 2006 12:22:08 -0000 On Saturday 30 December 2006 20:15, Luigi Rizzo wrote: > If someone (kernel programmers) is interested in having a look at > this code... > > It is not yet usable but i am moving forward quite fast, > hopefully with a bit of help we can manage to have a working driver > within a few days. > > I have been working recently to integrate more cameras into the > pwcbsd port, namely those supported by the spca (userland) > application/driver. > > I am doing rather good progress, but wouldn't mind a bit > of review/help if you are interested. Details are at > > http://info.iet.unipi.it/~luigi/FreeBSD/usb-cameras.html > > basically i can probe the camera and start the usb transfer, > all left to do now is link the code that detects the start of frame > into the usb isoc stream, and later to invoke the format converters > appropriately. > > let me know if you have any suggestions on how to proceed with this. > (the code is basically the pwcbsd and spcaview that we have in > the ports, with very limited modifications - the license is > obviously the same as the original, so this is going to remain > a port). > If you want more stable isochronous transfers, and especially High-speed ISOC transfers, you need to use my new USB API. Please see: http://www.turbocat.net/~hselasky/usb4bsd There are examples in "ugen.c" on how to do ISOC transfers, which is basically the same as in the old system. More examples on how to use ISOC transfers: http://www.turbocat.net/~hselasky/isdn4bsd/sources/src/sys/i4b/layer1/ihfc2/i4b_wibusb.h http://www.turbocat.net/~hselasky/isdn4bsd/sources/src/sys/i4b/layer1/ihfc2/i4b_hfcsusb.h I found this comment: /* !!!!!!!!!! IMPORTANT DO NOT SET THIS HIGHER THAN 8 !!!!!!!!!!!!!!! * !!!!!!!!!! OHCI IS BUGGY IF YOU DO SO !!!!!!!!!!!!!!!*/ #define ISO_FRAMES_PER_DESC 8 Please set ISO_FRAMES_PER_DESC to 50 and hardcode MAX_ISO_BUFS to 2. That will work on all USB host controllers. # # I recommend using the latest sources: # svn --username anonsvn --password anonsvn \ checkout svn://svn.turbocat.net/i4b # # The following commands will # install the driver on FreeBSD: # cd i4b/trunk/i4b/FreeBSD.usb make S=../src package make install --HPS From owner-freebsd-multimedia@FreeBSD.ORG Sun Dec 31 13:44:58 2006 Return-Path: X-Original-To: freebsd-multimedia@freebsd.org Delivered-To: freebsd-multimedia@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 44E5316A407 for ; Sun, 31 Dec 2006 13:44:58 +0000 (UTC) (envelope-from torfinn.ingolfsen@broadpark.no) Received: from osl1smout1.broadpark.no (osl1smout1.broadpark.no [80.202.4.58]) by mx1.freebsd.org (Postfix) with ESMTP id 0631913C468 for ; Sun, 31 Dec 2006 13:44:57 +0000 (UTC) (envelope-from torfinn.ingolfsen@broadpark.no) Received: from osl1sminn1.broadpark.no ([80.202.4.59]) by osl1smout1.broadpark.no (Sun Java System Messaging Server 6.1 HotFix 0.05 (built Oct 21 2004)) with ESMTP id <0JB500JDA4UX7Z90@osl1smout1.broadpark.no> for freebsd-multimedia@freebsd.org; Sun, 31 Dec 2006 14:44:57 +0100 (CET) Received: from kg-work.kg4.no ([80.203.66.169]) by osl1sminn1.broadpark.no (Sun Java System Messaging Server 6.1 HotFix 0.05 (built Oct 21 2004)) with SMTP id <0JB5004GZ4UW1DG0@osl1sminn1.broadpark.no> for freebsd-multimedia@freebsd.org; Sun, 31 Dec 2006 14:44:57 +0100 (CET) Date: Sun, 31 Dec 2006 14:44:56 +0100 From: Torfinn Ingolfsen X-Face: "t9w2,-X@O^I`jVW\sonI3.,36KBLZE*AL[y9lL[PyFD*r_S:dIL9c[8Y>V42R0"!"yb_zN,f#%.[PYYNq; m"_0v; ~rUM2Yy!zmkh)3&U|u!=T(zyv,MHJv"nDH>OJ`t(@mil461d_B'Uo|'nMwlKe0Mv=kvV?Nh@>Hb<3s_z2jYgZhPb@?Wi^x1a~Hplz1.zH In-reply-to: <200612281313.18836.josh@tcbug.org> To: freebsd-multimedia@freebsd.org Message-id: <20061231144456.f9203cf1.torfinn.ingolfsen@broadpark.no> MIME-version: 1.0 X-Mailer: Sylpheed 2.3.0 (GTK+ 2.10.6; i386-portbld-freebsd6.2) Content-type: text/plain; charset=US-ASCII Content-transfer-encoding: 7BIT References: <20061228183635.b1502d94.torfinn.ingolfsen@broadpark.no> <200612281313.18836.josh@tcbug.org> Subject: Re: Does kbtv work for you? X-BeenThere: freebsd-multimedia@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Multimedia discussions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 31 Dec 2006 13:44:58 -0000 On Thu, 28 Dec 2006 13:13:18 -0600 Josh Paetzel wrote: > ===> Registering installation for kbtv-1.1.3 > ===root@gimpy /usr/ports/multimedia/kbtv # > > # uname -a > FreeBSD gimpy.tcbug.org 6.2-RC2 FreeBSD 6.2-RC2 #7: Thu Dec 28 > 00:26:22 CST 2006 > root@gimpy.tcbug.org:/usr/obj/usr/src/sys/GIMPY i386 > > # pkg_info | grep -i py > ... > py24-kde-3.16.0,1 Python Bindings for KDE3 > .... > > From a ports tree from this morning. Strange. I now have updated my box to: root@kg-quiet# uname -a FreeBSD kg-quiet.kg4.no 6.2-PRERELEASE FreeBSD 6.2-PRERELEASE #12: Sat Dec 30 18:25:42 CET 2006 root@:/usr/obj/usr/src/sys/QUIET amd64 But I'm still getting this error. Perhaps it is and amd64 thing? I'll have to look more into it. -- Regards, Torfinn Ingolfsen, Norway From owner-freebsd-multimedia@FreeBSD.ORG Sun Dec 31 14:18:25 2006 Return-Path: X-Original-To: freebsd-multimedia@freebsd.org Delivered-To: freebsd-multimedia@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id A83FE16A403 for ; Sun, 31 Dec 2006 14:18:25 +0000 (UTC) (envelope-from torfinn.ingolfsen@broadpark.no) Received: from osl1smout1.broadpark.no (osl1smout1.broadpark.no [80.202.4.58]) by mx1.freebsd.org (Postfix) with ESMTP id 6849513C461 for ; Sun, 31 Dec 2006 14:18:25 +0000 (UTC) (envelope-from torfinn.ingolfsen@broadpark.no) Received: from osl1sminn1.broadpark.no ([80.202.4.59]) by osl1smout1.broadpark.no (Sun Java System Messaging Server 6.1 HotFix 0.05 (built Oct 21 2004)) with ESMTP id <0JB500JVH6EO82A0@osl1smout1.broadpark.no> for freebsd-multimedia@freebsd.org; Sun, 31 Dec 2006 15:18:24 +0100 (CET) Received: from kg-work.kg4.no ([80.203.66.169]) by osl1sminn1.broadpark.no (Sun Java System Messaging Server 6.1 HotFix 0.05 (built Oct 21 2004)) with SMTP id <0JB5006FG6EOQC10@osl1sminn1.broadpark.no> for freebsd-multimedia@freebsd.org; Sun, 31 Dec 2006 15:18:24 +0100 (CET) Date: Sun, 31 Dec 2006 15:18:23 +0100 From: Torfinn Ingolfsen X-Face: "t9w2,-X@O^I`jVW\sonI3.,36KBLZE*AL[y9lL[PyFD*r_S:dIL9c[8Y>V42R0"!"yb_zN,f#%.[PYYNq; m"_0v; ~rUM2Yy!zmkh)3&U|u!=T(zyv,MHJv"nDH>OJ`t(@mil461d_B'Uo|'nMwlKe0Mv=kvV?Nh@>Hb<3s_z2jYgZhPb@?Wi^x1a~Hplz1.zH In-reply-to: <20061229004709.GH78631@wantadilla.lemis.com> To: freebsd-multimedia@freebsd.org Message-id: <20061231151823.3cc5377c.torfinn.ingolfsen@broadpark.no> MIME-version: 1.0 X-Mailer: Sylpheed 2.3.0 (GTK+ 2.10.6; i386-portbld-freebsd6.2) Content-type: text/plain; charset=US-ASCII Content-transfer-encoding: 7BIT References: <20061227183704.374658c3.torfinn.ingolfsen@broadpark.no> <20061229004709.GH78631@wantadilla.lemis.com> Subject: Re: MythTV port X-BeenThere: freebsd-multimedia@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Multimedia discussions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 31 Dec 2006 14:18:25 -0000 On Fri, 29 Dec 2006 11:17:10 +1030 Greg 'groggy' Lehey wrote: > As nominal maintainer, I should confess that I haven't found time to > try it out. I'm more interested in doing it well than doing it > quickly, and I'll probably spend a lot of time ensuring that it > configures easily. Any help I can get there is welcome. Speaking of help: do you want me to send-pr the changes I have made, or will you just pick it up from this mailing list? > After that, I'll only be using it for playback, at least until we get > some DVB tuner support. Interesting. I'll be getting a DVB-S card soon (it was too cheap to let go). I don't know if it wll work here, as my cable compnay says that it won't (perhaps they've encrypted even the free channels -we shall see). -- Regards, Torfinn Ingolfsen From owner-freebsd-multimedia@FreeBSD.ORG Sun Dec 24 00:33:12 2006 Return-Path: X-Original-To: freebsd-multimedia@freebsd.org Delivered-To: freebsd-multimedia@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id B3B0516A403 for ; Sun, 24 Dec 2006 00:33:12 +0000 (UTC) (envelope-from torfinn.ingolfsen@broadpark.no) Received: from osl1smout1.broadpark.no (osl1smout1.broadpark.no [80.202.4.58]) by mx1.freebsd.org (Postfix) with ESMTP id 71A9013C441 for ; Sun, 24 Dec 2006 00:33:12 +0000 (UTC) (envelope-from torfinn.ingolfsen@broadpark.no) Received: from osl1sminn1.broadpark.no ([80.202.4.59]) by osl1smout1.broadpark.no (Sun Java System Messaging Server 6.1 HotFix 0.05 (built Oct 21 2004)) with ESMTP id <0JAR00EWQ5JBVC50@osl1smout1.broadpark.no> for freebsd-multimedia@freebsd.org; Sun, 24 Dec 2006 01:33:11 +0100 (CET) Received: from kg-work.kg4.no ([80.203.66.169]) by osl1sminn1.broadpark.no (Sun Java System Messaging Server 6.1 HotFix 0.05 (built Oct 21 2004)) with SMTP id <0JAR00D585JB7L84@osl1sminn1.broadpark.no> for freebsd-multimedia@freebsd.org; Sun, 24 Dec 2006 01:33:11 +0100 (CET) Date: Sun, 24 Dec 2006 01:33:10 +0100 From: Torfinn Ingolfsen X-Face: "t9w2,-X@O^I`jVW\sonI3.,36KBLZE*AL[y9lL[PyFD*r_S:dIL9c[8Y>V42R0"!"yb_zN,f#%.[PYYNq; m"_0v; ~rUM2Yy!zmkh)3&U|u!=T(zyv,MHJv"nDH>OJ`t(@mil461d_B'Uo|'nMwlKe0Mv=kvV?Nh@>Hb<3s_z2jYgZhPb@?Wi^x1a~Hplz1.zH In-reply-to: <20061222225305.GS78631@wantadilla.lemis.com> To: freebsd-multimedia@freebsd.org Message-id: <20061224013310.e1bff589.torfinn.ingolfsen@broadpark.no> MIME-version: 1.0 X-Mailer: Sylpheed version 2.2.10 (GTK+ 2.10.6; i386-portbld-freebsd6.2) Content-type: text/plain; charset=US-ASCII Content-transfer-encoding: 7BIT References: <6300771b0612181401i72e7cc58ta08e12de8d68d4d0@mail.gmail.com> <20061218232247.GQ4364@wantadilla.lemis.com> <6300771b0612181533m6ece3f38p379c78a75912d10d@mail.gmail.com> <6300771b0612181534h3158342aw554869660fc707ea@mail.gmail.com> <20061218234041.GU4364@wantadilla.lemis.com> <4588D859.1010301@xs4all.nl> <20061220072001.GN4364@wantadilla.lemis.com> <20061222181656.23bd88e6.torfinn.ingolfsen@broadpark.no> <20061222225305.GS78631@wantadilla.lemis.com> Subject: Re: MythTV port committed (was: Possible FreeBSD port?) X-BeenThere: freebsd-multimedia@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Multimedia discussions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 24 Dec 2006 00:33:12 -0000 Hi everyone! On Sat, 23 Dec 2006 09:23:05 +1030 Greg 'groggy' Lehey wrote: > I didn't know about this script, but I have committed a new Hmm, perhaps you didn't get the mail I sent you (private)? > > I will try to get the port working under FreeBSD/amd64 so that I can > > test it. > > Thanks. Please let me know if you make any progress. Yesterday I > marked it i386 only, so you'll have to frob the Makefile. Ok. here is a short status on getting MythTV working under FreeBSD/amd64. 1) libdts. If you have libdts (multimedia/libdts) installed, you will hit this one. MythTV's configure isn't able to figure out that libdts on amd64 is named libdts_pic. Easy workaround: add '--disble-dts' to the configure line in the port Makefile . Proper fix: I really don't know. 2) when compiling libmythtv (libs/libmythtv) it fails on the file yuv2rgb.cpp, with this error: yuv2rgb.cpp: In function `void yuv420_argb32_non_mmx(unsigned char*, unsigned char*, unsigned char*, unsigned char*, int, int, int, int, int, int)': yuv2rgb.cpp:444: error: no matching function for call to `min(unsigned int, const int&)' yuv2rgb.cpp:444: error: no matching function for call to `min(unsigned int, const int&)' yuv2rgb.cpp:444: error: no matching function for call to `min(unsigned int, const int&)' yuv2rgb.cpp:445: error: no matching function for call to `min(unsigned int, const int&)' yuv2rgb.cpp:445: error: no matching function for call to `min(unsigned int, const int&)' yuv2rgb.cpp:445: error: no matching function for call to `min(unsigned int, const int&)' yuv2rgb.cpp:446: error: no matching function for call to `min(unsigned int, const int&)' yuv2rgb.cpp:446: error: no matching function for call to `min(unsigned int, const int&)' yuv2rgb.cpp:446: error: no matching function for call to `min(unsigned int, const int&)' yuv2rgb.cpp:447: error: no matching function for call to `min(unsigned int, const int&)' yuv2rgb.cpp:447: error: no matching function for call to `min(unsigned int, const int&)' yuv2rgb.cpp:447: error: no matching function for call to `min(unsigned int, const int&)' *** Error code 1 Stop in /usr/ports/multimedia/mythtv/work/mythtv-0.20/libs/libmythtv. *** Error code 1 The function call in line 444 of that file is this: RGBOUT(d1[R_OI], d1[G_OI], d1[B_OI], y1_ptr[0]); Which is defined at line 392 as: #define RGBOUT(r, g, b, y1)\ {\ y = (y1 - 16) * C_Y;\ r = std::min(UCHAR_MAX, std::max(0, (y + r_add) >> SCALE_BITS));\ g = std::min(UCHAR_MAX, std::max(0, (y + g_add) >> SCALE_BITS));\ b = std::min(UCHAR_MAX, std::max(0, (y + b_add) >> SCALE_BITS));\ } which is only using the standard min template from algorithm, I think. At the beginning of the yuv2rgb.cpp file we have these lines: #include #include #include So, can anyone explain to me why this fails? I tried searching Google, but didn't find anything. And that is the point at which I'm stuck now. Oh, and Merry Christmas, all of you! -- Regards, Torfinn Ingolfsen, Norway From owner-freebsd-multimedia@FreeBSD.ORG Sun Dec 24 05:50:28 2006 Return-Path: X-Original-To: freebsd-multimedia@hub.freebsd.org Delivered-To: freebsd-multimedia@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 95A5A16A494 for ; Sun, 24 Dec 2006 05:50:28 +0000 (UTC) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [69.147.83.40]) by mx1.freebsd.org (Postfix) with ESMTP id 8319013C481 for ; Sun, 24 Dec 2006 05:50:28 +0000 (UTC) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (gnats@localhost [127.0.0.1]) by freefall.freebsd.org (8.13.4/8.13.4) with ESMTP id kBO5oSg6063705 for ; Sun, 24 Dec 2006 05:50:28 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.13.4/8.13.4/Submit) id kBO5oSxY063704; Sun, 24 Dec 2006 05:50:28 GMT (envelope-from gnats) Date: Sun, 24 Dec 2006 05:50:28 GMT Message-Id: <200612240550.kBO5oSxY063704@freefall.freebsd.org> To: freebsd-multimedia@FreeBSD.org From: dfilter@FreeBSD.ORG (dfilter service) Cc: Subject: Re: kern/106829: commit references a PR X-BeenThere: freebsd-multimedia@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list Reply-To: dfilter service List-Id: Multimedia discussions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 24 Dec 2006 05:50:28 -0000 The following reply was made to PR kern/106829; it has been noted by GNATS. From: dfilter@FreeBSD.ORG (dfilter service) To: bug-followup@FreeBSD.org Cc: Subject: Re: kern/106829: commit references a PR Date: Sun, 24 Dec 2006 05:44:27 +0000 (UTC) ariff 2006-12-24 05:44:11 UTC FreeBSD src repository Modified files: (Branch: RELENG_6) sys/dev/sound/pci ich.c Log: MFC: Add inverted amplifier sense quirk for HP Compaq nx4300 and few NEC VersaPro. PR: kern/106104, kern/104715 Submitted by: Shun-ichi Kobayashi KAWATA Masahiko Add support for Nvidia Nforce MCP04 AC97 controller. PR: kern/106829 Submitted by: Frédéric Petit Revision Changes Path 1.53.2.9 +6 -0 src/sys/dev/sound/pci/ich.c _______________________________________________ cvs-all@freebsd.org mailing list http://lists.freebsd.org/mailman/listinfo/cvs-all To unsubscribe, send any mail to "cvs-all-unsubscribe@freebsd.org" From owner-freebsd-multimedia@FreeBSD.ORG Sun Dec 24 05:50:40 2006 Return-Path: X-Original-To: freebsd-multimedia@hub.freebsd.org Delivered-To: freebsd-multimedia@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 6FB1D16A407 for ; Sun, 24 Dec 2006 05:50:40 +0000 (UTC) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [69.147.83.40]) by mx1.freebsd.org (Postfix) with ESMTP id 5CC9713C48A for ; Sun, 24 Dec 2006 05:50:40 +0000 (UTC) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (gnats@localhost [127.0.0.1]) by freefall.freebsd.org (8.13.4/8.13.4) with ESMTP id kBO5odIQ063776 for ; Sun, 24 Dec 2006 05:50:39 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.13.4/8.13.4/Submit) id kBO5odEg063775; Sun, 24 Dec 2006 05:50:39 GMT (envelope-from gnats) Date: Sun, 24 Dec 2006 05:50:39 GMT Message-Id: <200612240550.kBO5odEg063775@freefall.freebsd.org> To: freebsd-multimedia@FreeBSD.org From: dfilter@FreeBSD.ORG (dfilter service) Cc: Subject: Re: kern/106829: commit references a PR X-BeenThere: freebsd-multimedia@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list Reply-To: dfilter service List-Id: Multimedia discussions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 24 Dec 2006 05:50:40 -0000 The following reply was made to PR kern/106829; it has been noted by GNATS. From: dfilter@FreeBSD.ORG (dfilter service) To: bug-followup@FreeBSD.org Cc: Subject: Re: kern/106829: commit references a PR Date: Sun, 24 Dec 2006 05:44:59 +0000 (UTC) ariff 2006-12-24 05:44:47 UTC FreeBSD src repository Modified files: (Branch: RELENG_6_2) sys/dev/sound/pci ich.c Log: MFC: Add inverted amplifier sense quirk for HP Compaq nx4300 and few NEC VersaPro. PR: kern/106104, kern/104715 Submitted by: Shun-ichi Kobayashi KAWATA Masahiko Add support for Nvidia Nforce MCP04 AC97 controller. PR: kern/106829 Submitted by: Frédéric Petit Approved by: re (kensmith) Revision Changes Path 1.53.2.8.2.1 +6 -0 src/sys/dev/sound/pci/ich.c _______________________________________________ cvs-all@freebsd.org mailing list http://lists.freebsd.org/mailman/listinfo/cvs-all To unsubscribe, send any mail to "cvs-all-unsubscribe@freebsd.org" From owner-freebsd-multimedia@FreeBSD.ORG Sun Dec 24 13:42:20 2006 Return-Path: X-Original-To: freebsd-multimedia@freebsd.org Delivered-To: freebsd-multimedia@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id BA53B16A403 for ; Sun, 24 Dec 2006 13:42:20 +0000 (UTC) (envelope-from frank@barda.agala.net) Received: from mailhub.barda.agala.net (Wafd0.w.pppool.de [89.58.175.208]) by mx1.freebsd.org (Postfix) with ESMTP id BFCFD13C47C for ; Sun, 24 Dec 2006 13:42:17 +0000 (UTC) (envelope-from frank@barda.agala.net) Received: from smtp.barda.agala.net (smtp.barda.agala.net [192.168.22.25]) by mailhub.barda.agala.net (Postfix) with ESMTP id 97C3C7CB81 for ; Fri, 22 Dec 2006 19:08:37 +0100 (CET) Received: from babylon.agala.net (unknown [192.168.223.42]) by smtp.barda.agala.net (Postfix) with ESMTP id 48E257CB7E for ; Fri, 22 Dec 2006 19:08:37 +0100 (CET) From: "Frank J. Beckmann" Organization: agala naga doron To: freebsd-multimedia@freebsd.org Date: Fri, 22 Dec 2006 19:08:20 +0100 User-Agent: KMail/1.9.4 MIME-Version: 1.0 Content-Type: text/plain; charset="iso-8859-1" Content-Transfer-Encoding: 7bit Content-Disposition: inline Message-Id: <200612221908.24251.frank@barda.agala.net> Subject: PVR-350 trouble: picture ist periodically getting darker X-BeenThere: freebsd-multimedia@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Multimedia discussions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 24 Dec 2006 13:42:20 -0000 Hi, I got an brand new PVR-350 about 2 months ago. The card works flawless under Windows XP but I need to get it working under FreeBSD. I'm using FreeBSD/i386 6.2-PRERELEASE from 4 days ago on the same box. I use the pvr-250 from the latest ports: Dec 22 18:23:19 babylon kernel: cxm0: mem 0xc8000000-0xcbffffff irq 17 at device 7.0 on pci5 Dec 22 18:23:19 babylon kernel: cxm_iic0: on cxm0 Dec 22 18:23:19 babylon kernel: iicbb0: on cxm_iic0 Dec 22 18:23:19 babylon kernel: iicbus0: on iicbb0 master-only Dec 22 18:23:19 babylon kernel: iicsmb0: on iicbus0 Dec 22 18:23:19 babylon kernel: smbus2: on iicsmb0 Dec 22 18:23:19 babylon kernel: cxm0: Philips FM1216ME MK3 tuner Dec 22 18:23:19 babylon kernel: cxm0: SAA7115 rev 1 video decoder Dec 22 18:23:19 babylon kernel: cxm0: MSP4418G-B3 audio decoder Dec 22 18:23:19 babylon kernel: cxm0: IR Remote Dec 22 18:23:19 babylon kernel: cxm0: [GIANT-LOCKED] Dec 22 18:23:22 babylon kernel: cxm0: encoder firmware version 0x2050032 Dec 22 18:23:22 babylon kernel: cxm0: decoder firmware version 0x2020023 The trouble is that the picture gets periodically darker about 2 times a second. It almost looks like if a windmill were casting shadows. Another strange thing is that i often have to use "pvr250-setchannel -a off" or else I could not set the channel: Dec 22 18:24:05 babylon kernel: cxm0: video decoder failed to lock Dec 22 18:24:15 babylon kernel: cxm0: video decoder failed to lock I hope that anybody can help me to this great card working. -- Bye Frank From owner-freebsd-multimedia@FreeBSD.ORG Sun Dec 24 19:21:43 2006 Return-Path: X-Original-To: freebsd-multimedia@freebsd.org Delivered-To: freebsd-multimedia@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id C879116A407 for ; Sun, 24 Dec 2006 19:21:43 +0000 (UTC) (envelope-from torfinn.ingolfsen@broadpark.no) Received: from osl1smout1.broadpark.no (osl1smout1.broadpark.no [80.202.4.58]) by mx1.freebsd.org (Postfix) with ESMTP id 8123213C46E for ; Sun, 24 Dec 2006 19:21:43 +0000 (UTC) (envelope-from torfinn.ingolfsen@broadpark.no) Received: from osl1sminn1.broadpark.no ([80.202.4.59]) by osl1smout1.broadpark.no (Sun Java System Messaging Server 6.1 HotFix 0.05 (built Oct 21 2004)) with ESMTP id <0JAS004Q4LS6HT90@osl1smout1.broadpark.no> for freebsd-multimedia@freebsd.org; Sun, 24 Dec 2006 20:21:42 +0100 (CET) Received: from kg-work.kg4.no ([80.203.66.169]) by osl1sminn1.broadpark.no (Sun Java System Messaging Server 6.1 HotFix 0.05 (built Oct 21 2004)) with SMTP id <0JAS000HHLS6F7G0@osl1sminn1.broadpark.no> for freebsd-multimedia@freebsd.org; Sun, 24 Dec 2006 20:21:42 +0100 (CET) Date: Sun, 24 Dec 2006 20:21:41 +0100 From: Torfinn Ingolfsen X-Face: "t9w2,-X@O^I`jVW\sonI3.,36KBLZE*AL[y9lL[PyFD*r_S:dIL9c[8Y>V42R0"!"yb_zN,f#%.[PYYNq; m"_0v; ~rUM2Yy!zmkh)3&U|u!=T(zyv,MHJv"nDH>OJ`t(@mil461d_B'Uo|'nMwlKe0Mv=kvV?Nh@>Hb<3s_z2jYgZhPb@?Wi^x1a~Hplz1.zH In-reply-to: <20061224013310.e1bff589.torfinn.ingolfsen@broadpark.no> To: freebsd-multimedia@freebsd.org Message-id: <20061224202141.ee639af7.torfinn.ingolfsen@broadpark.no> MIME-version: 1.0 X-Mailer: Sylpheed version 2.2.10 (GTK+ 2.10.6; i386-portbld-freebsd6.2) Content-type: multipart/mixed; boundary="Boundary_(ID_acTZitsvut79bMkzdIkvGA)" References: <6300771b0612181401i72e7cc58ta08e12de8d68d4d0@mail.gmail.com> <20061218232247.GQ4364@wantadilla.lemis.com> <6300771b0612181533m6ece3f38p379c78a75912d10d@mail.gmail.com> <6300771b0612181534h3158342aw554869660fc707ea@mail.gmail.com> <20061218234041.GU4364@wantadilla.lemis.com> <4588D859.1010301@xs4all.nl> <20061220072001.GN4364@wantadilla.lemis.com> <20061222181656.23bd88e6.torfinn.ingolfsen@broadpark.no> <20061222225305.GS78631@wantadilla.lemis.com> <20061224013310.e1bff589.torfinn.ingolfsen@broadpark.no> X-Content-Filtered-By: Mailman/MimeDel 2.1.5 Subject: Re: MythTV port committed (was: Possible FreeBSD port?) X-BeenThere: freebsd-multimedia@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Multimedia discussions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 24 Dec 2006 19:21:43 -0000 This is a multi-part message in MIME format. --Boundary_(ID_acTZitsvut79bMkzdIkvGA) Content-type: text/plain; charset=US-ASCII Content-transfer-encoding: 7BIT On Sun, 24 Dec 2006 01:33:10 +0100 Torfinn Ingolfsen wrote: > And that is the point at which I'm stuck now. Further searching (some might even call it extensive searching) and lots of "tried it - didn't work" later, I found a patch that allows me to compile the MythTV port under FreeBSD/amd 64. I extracted the patch from here: http://www.phaze.org/mythtv/obsd_myth.patch I couldn't find any references or credits, so I don't know who created this patch. The patch is in the attached file. I have compiled MythTV, but proceeding to test it now. :-) -- Regards, Torfinn Ingolfsen, Norway --Boundary_(ID_acTZitsvut79bMkzdIkvGA)-- From owner-freebsd-multimedia@FreeBSD.ORG Sun Dec 24 22:01:57 2006 Return-Path: X-Original-To: freebsd-multimedia@freebsd.org Delivered-To: freebsd-multimedia@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id B048716A417 for ; Sun, 24 Dec 2006 22:01:57 +0000 (UTC) (envelope-from torfinn.ingolfsen@broadpark.no) Received: from osl1smout1.broadpark.no (osl1smout1.broadpark.no [80.202.4.58]) by mx1.freebsd.org (Postfix) with ESMTP id 720C913C480 for ; Sun, 24 Dec 2006 22:01:57 +0000 (UTC) (envelope-from torfinn.ingolfsen@broadpark.no) Received: from osl1sminn1.broadpark.no ([80.202.4.59]) by osl1smout1.broadpark.no (Sun Java System Messaging Server 6.1 HotFix 0.05 (built Oct 21 2004)) with ESMTP id <0JAS0094ET78KD40@osl1smout1.broadpark.no> for freebsd-multimedia@freebsd.org; Sun, 24 Dec 2006 23:01:56 +0100 (CET) Received: from kg-work.kg4.no ([80.203.66.169]) by osl1sminn1.broadpark.no (Sun Java System Messaging Server 6.1 HotFix 0.05 (built Oct 21 2004)) with SMTP id <0JAS002GGT78QWH0@osl1sminn1.broadpark.no> for freebsd-multimedia@freebsd.org; Sun, 24 Dec 2006 23:01:56 +0100 (CET) Date: Sun, 24 Dec 2006 23:01:55 +0100 From: Torfinn Ingolfsen X-Face: "t9w2,-X@O^I`jVW\sonI3.,36KBLZE*AL[y9lL[PyFD*r_S:dIL9c[8Y>V42R0"!"yb_zN,f#%.[PYYNq; m"_0v; ~rUM2Yy!zmkh)3&U|u!=T(zyv,MHJv"nDH>OJ`t(@mil461d_B'Uo|'nMwlKe0Mv=kvV?Nh@>Hb<3s_z2jYgZhPb@?Wi^x1a~Hplz1.zH To: freebsd-multimedia@freebsd.org Message-id: <20061224230155.fc0a6c6a.torfinn.ingolfsen@broadpark.no> MIME-version: 1.0 X-Mailer: Sylpheed version 2.2.10 (GTK+ 2.10.6; i386-portbld-freebsd6.2) Content-type: text/plain; charset=US-ASCII Content-transfer-encoding: 7BIT Subject: MythTV port - status report X-BeenThere: freebsd-multimedia@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Multimedia discussions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 24 Dec 2006 22:01:57 -0000 Hi, Just a short status report on the MythTV port. System: an amd64 machine running root@kg-quiet# uname -a FreeBSD kg-quiet.kg4.no 6.1-STABLE FreeBSD 6.1-STABLE #10: Wed Oct 11 19:49:47 CEST 2006 root@kg-quiet.kg4.no:/usr/obj/usr/src/sys/QUIET amd64 with a Hauppauge PVR-350 card in it, using the pvr250 driver (multimedia/pvr250). mythtv-setup runs, but immediately display the warning about the backend running. In this case, the backend is NOT running, but I don't know if this affects anything. I get one error message in the shell (from where I start mythtv-setup) which might be related: ps: Process environment requires procfs(5) When I get to the second screen in mythtv-setup ("2. Capture Cards"), I set up my card as a "MPEG-2 encoder card (PVR-x50, PVR-500)", and use /dev/cxm0 as video device. It says "Probed info: failed to probe", but I carry on and select "Television" as default input. On screen 3 ("3. Video Sources") I st up one source, called TV, which uses tv_grab_no. So far, no problems. Screen 4 ("4. Input Connections") is blank (as in "no lines of information") and I get these error messages in the shell: Could not query inputs. eno: Inappropriate ioctl for device (25) Perhaps the driver I'm using isn't up to the task? I tried setting the card up as an analog card also, but that didn't work either. Also, when I start mythbackend I get this in the logfile: root@kg-quiet# less /var/log/mythbackend.log 2006-12-24 22:57:58.577 Using runtime prefix = /usr/local 2006-12-24 22:57:58.601 New DB connection, total: 1 2006-12-24 22:57:58.613 Connected to database 'mythconverg' at host: localhost 2006-12-24 22:57:58.619 Current Schema Version: 1158 Starting up as the master server. 2006-12-24 22:57:58.633 New DB connection, total: 2 2006-12-24 22:57:58.634 Connected to database 'mythconverg' at host: localhost 2006-12-24 22:57:58.638 EITHelper: localtime offset 1:00:00 2006-12-24 22:57:58.659 TVRec(2) Error: Problem finding starting channel, setting to default of '3'. 2006-12-24 22:57:58.661 ChannelBase(2) Error: InitializeInputs(): Could not get inputs for the capturecard. Perhaps you have forgotten to bind video sources to your card's inputs? ERROR: no valid capture cards are defined in the database. Perhaps you should read the installation instructions? 2006-12-24 22:57:58.674 Main::Starting HttpServer 2006-12-24 22:57:58.680 Main::Registering HttpStatus Extension 2006-12-24 22:57:58.722 mythbackend version: 0.20.20060828-3 www.mythtv.org 2006-12-24 22:57:58.726 Enabled verbose msgs: important general 2006-12-24 22:57:58.728 AutoExpire: Found 0 recorders w/max rate of 0 MiB/min 2006-12-24 22:57:58.734 AutoExpire: Required Free Space: 0.0 GB w/freq: 10 min Whew! More info later. -- Regards, Torfinn Ingfolfsen, Norway From owner-freebsd-multimedia@FreeBSD.ORG Sun Dec 24 22:06:42 2006 Return-Path: X-Original-To: freebsd-multimedia@freebsd.org Delivered-To: freebsd-multimedia@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id B077216A415 for ; Sun, 24 Dec 2006 22:06:42 +0000 (UTC) (envelope-from torfinn.ingolfsen@broadpark.no) Received: from osl1smout1.broadpark.no (osl1smout1.broadpark.no [80.202.4.58]) by mx1.freebsd.org (Postfix) with ESMTP id 6D39F13C475 for ; Sun, 24 Dec 2006 22:06:42 +0000 (UTC) (envelope-from torfinn.ingolfsen@broadpark.no) Received: from osl1sminn1.broadpark.no ([80.202.4.59]) by osl1smout1.broadpark.no (Sun Java System Messaging Server 6.1 HotFix 0.05 (built Oct 21 2004)) with ESMTP id <0JAS009OETF5KE40@osl1smout1.broadpark.no> for freebsd-multimedia@freebsd.org; Sun, 24 Dec 2006 23:06:41 +0100 (CET) Received: from kg-work.kg4.no ([80.203.66.169]) by osl1sminn1.broadpark.no (Sun Java System Messaging Server 6.1 HotFix 0.05 (built Oct 21 2004)) with SMTP id <0JAS003X7TF5V950@osl1sminn1.broadpark.no> for freebsd-multimedia@freebsd.org; Sun, 24 Dec 2006 23:06:41 +0100 (CET) Date: Sun, 24 Dec 2006 23:06:41 +0100 From: Torfinn Ingolfsen X-Face: "t9w2,-X@O^I`jVW\sonI3.,36KBLZE*AL[y9lL[PyFD*r_S:dIL9c[8Y>V42R0"!"yb_zN,f#%.[PYYNq; m"_0v; ~rUM2Yy!zmkh)3&U|u!=T(zyv,MHJv"nDH>OJ`t(@mil461d_B'Uo|'nMwlKe0Mv=kvV?Nh@>Hb<3s_z2jYgZhPb@?Wi^x1a~Hplz1.zH In-reply-to: <20061220072001.GN4364@wantadilla.lemis.com> To: freebsd-multimedia@freebsd.org Message-id: <20061224230641.2ab74d87.torfinn.ingolfsen@broadpark.no> MIME-version: 1.0 X-Mailer: Sylpheed version 2.2.10 (GTK+ 2.10.6; i386-portbld-freebsd6.2) Content-type: text/plain; charset=US-ASCII Content-transfer-encoding: 7BIT References: <6300771b0612181401i72e7cc58ta08e12de8d68d4d0@mail.gmail.com> <20061218232247.GQ4364@wantadilla.lemis.com> <6300771b0612181533m6ece3f38p379c78a75912d10d@mail.gmail.com> <6300771b0612181534h3158342aw554869660fc707ea@mail.gmail.com> <20061218234041.GU4364@wantadilla.lemis.com> <4588D859.1010301@xs4all.nl> <20061220072001.GN4364@wantadilla.lemis.com> Subject: Re: MythTV port committed (was: Possible FreeBSD port?) X-BeenThere: freebsd-multimedia@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Multimedia discussions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 24 Dec 2006 22:06:42 -0000 On Wed, 20 Dec 2006 17:50:01 +1030 Greg 'groggy' Lehey wrote: > to the build. Please try it out and contact me with any problems you > may have. I have changed the mythbackend startup script a bit, so it works more like it does under KnoppMyth, and also so I can get a logfile :-) --- /usr/local/etc/rc.d/mythbackend.org Sun Dec 24 22:43:30 2006 +++ /usr/local/etc/rc.d/mythbackend Sun Dec 24 22:57:33 2006 @@ -12,16 +12,19 @@ # DO NOT CHANGE THESE DEFAULT VALUES HERE # mythbackend_enable=${mythbackend_enable-"NO"} +mythbackend_logfile=${mythbackend_logfile-"/var/log/mythbackend.log"} +mythbackend_pidfile=${mythbackend_pidfile-"/var/run/mythbackend.pid"} PATH=${PATH}:/usr/local/bin . /etc/rc.subr name="mythbackend" rcvar=`set_rcvar` -command="/usr/local/bin/mythbackend &" +command="/usr/local/bin/mythbackend" +flags=" --daemon --logfile ${mythbackend_logfile} --pidfile ${mythbackend_pidfile}" load_rc_config $name -start_cmd="echo \"Starting ${name}.\"; ${command}" +start_cmd="echo \"Starting ${name}.\"; ${command} ${flags}" run_rc_command "$1" Note; I haven't checked if my changes follows proper style. -- Regards, Torfinn Ingolfsen, Norway From owner-freebsd-multimedia@FreeBSD.ORG Sun Dec 24 22:59:01 2006 Return-Path: X-Original-To: freebsd-multimedia@freebsd.org Delivered-To: freebsd-multimedia@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id D6AD016A403 for ; Sun, 24 Dec 2006 22:59:01 +0000 (UTC) (envelope-from usleepless@gmail.com) Received: from nf-out-0910.google.com (nf-out-0910.google.com [64.233.182.191]) by mx1.freebsd.org (Postfix) with ESMTP id 7266E13C466 for ; Sun, 24 Dec 2006 22:59:01 +0000 (UTC) (envelope-from usleepless@gmail.com) Received: by nf-out-0910.google.com with SMTP id x37so3980972nfc for ; Sun, 24 Dec 2006 14:59:00 -0800 (PST) DomainKey-Signature: a=rsa-sha1; q=dns; c=nofws; s=beta; d=gmail.com; h=received:message-id:date:from:to:subject:in-reply-to:mime-version:content-type:content-transfer-encoding:content-disposition:references; b=gBih3Nyz6MMaXkybuIIij8/c6p0DlFRpucyoJUrIC7JKAwE2hA78Ytxs0bazMRyDKfUOPuu/TLnSsKRbNIUWDnIHcLjoRvjKTM1OdIqNW1He/gtZ6ybmHPy9FpqkEvh3xp9L0spgKQLLK+6SE+hZy7v8Rji9y9467yHKOZa5koc= Received: by 10.78.20.13 with SMTP id 13mr63726hut.1166999543237; Sun, 24 Dec 2006 14:32:23 -0800 (PST) Received: by 10.78.124.8 with HTTP; Sun, 24 Dec 2006 14:32:23 -0800 (PST) Message-ID: Date: Sun, 24 Dec 2006 23:32:23 +0100 From: usleepless@gmail.com To: freebsd-multimedia@freebsd.org In-Reply-To: MIME-Version: 1.0 Content-Type: text/plain; charset=ISO-8859-1; format=flowed Content-Transfer-Encoding: 7bit Content-Disposition: inline References: <20061224230155.fc0a6c6a.torfinn.ingolfsen@broadpark.no> Subject: Fwd: MythTV port - status report X-BeenThere: freebsd-multimedia@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Multimedia discussions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 24 Dec 2006 22:59:01 -0000 ---------- Forwarded message ---------- From: usleepless@gmail.com Date: Sun, 24 Dec 2006 23:31:33 +0100 Subject: Re: MythTV port - status report To: Torfinn Ingolfsen Torfinn, List, On 12/24/06, Torfinn Ingolfsen wrote: > Hi, > > Just a short status report on the MythTV port. > System: > an amd64 machine running > root@kg-quiet# uname -a > FreeBSD kg-quiet.kg4.no 6.1-STABLE FreeBSD 6.1-STABLE #10: Wed Oct 11 > 19:49:47 CEST 2006 root@kg-quiet.kg4.no:/usr/obj/usr/src/sys/QUIET > amd64 > > with a Hauppauge PVR-350 card in it, using the pvr250 driver > (multimedia/pvr250). > > mythtv-setup runs, but immediately display the warning about the backend > running. In this case, the backend is NOT running, but I don't know if this > affects anything. > I get one error message in the shell (from where I start mythtv-setup) which > might be related: > ps: Process environment requires procfs(5) > > When I get to the second screen in mythtv-setup ("2. Capture Cards"), I set > up my card as a "MPEG-2 encoder card (PVR-x50, PVR-500)", and use /dev/cxm0 > as video device. It says "Probed info: failed to probe", but I carry on and > select "Television" as default input. > On screen 3 ("3. Video Sources") I st up one source, called TV, which uses > tv_grab_no. So far, no problems. > Screen 4 ("4. Input Connections") is blank (as in "no lines of information") > and I get these error messages in the shell: > Could not query inputs. > eno: Inappropriate ioctl for device (25) > > Perhaps the driver I'm using isn't up to the task? > I tried setting the card up as an analog card also, but that didn't work > either. > > Also, when I start mythbackend I get this in the logfile: > root@kg-quiet# less /var/log/mythbackend.log > 2006-12-24 22:57:58.577 Using runtime prefix = /usr/local > 2006-12-24 22:57:58.601 New DB connection, total: 1 > 2006-12-24 22:57:58.613 Connected to database 'mythconverg' at host: > localhost > 2006-12-24 22:57:58.619 Current Schema Version: 1158 > Starting up as the master server. > 2006-12-24 22:57:58.633 New DB connection, total: 2 > 2006-12-24 22:57:58.634 Connected to database 'mythconverg' at host: > localhost > 2006-12-24 22:57:58.638 EITHelper: localtime offset 1:00:00 > 2006-12-24 22:57:58.659 TVRec(2) Error: Problem finding starting channel, > setting to default of '3'. > 2006-12-24 22:57:58.661 ChannelBase(2) Error: InitializeInputs(): > Could not get inputs for the capturecard. > Perhaps you have forgotten to bind video > sources to your card's inputs? this can have at least 2 reasons: 1. you haven't completed the setup properly. 2. the device you are using doesn't support the enumerate-inputs-v4l2-ioctl. are you planning on running a backend on fbsd? or just a frontend? please keep posting your progress and problems. i am reading along. regards, usleep PS: forgot to include the list From owner-freebsd-multimedia@FreeBSD.ORG Sun Dec 24 23:00:46 2006 Return-Path: X-Original-To: freebsd-multimedia@freebsd.org Delivered-To: freebsd-multimedia@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id B0F7016A403 for ; Sun, 24 Dec 2006 23:00:46 +0000 (UTC) (envelope-from torfinn.ingolfsen@broadpark.no) Received: from osl1smout1.broadpark.no (osl1smout1.broadpark.no [80.202.4.58]) by mx1.freebsd.org (Postfix) with ESMTP id 5858013C489 for ; Sun, 24 Dec 2006 23:00:46 +0000 (UTC) (envelope-from torfinn.ingolfsen@broadpark.no) Received: from osl1sminn1.broadpark.no ([80.202.4.59]) by osl1smout1.broadpark.no (Sun Java System Messaging Server 6.1 HotFix 0.05 (built Oct 21 2004)) with ESMTP id <0JAS0093ZVX9KEA0@osl1smout1.broadpark.no> for freebsd-multimedia@freebsd.org; Mon, 25 Dec 2006 00:00:45 +0100 (CET) Received: from kg-work.kg4.no ([80.203.66.169]) by osl1sminn1.broadpark.no (Sun Java System Messaging Server 6.1 HotFix 0.05 (built Oct 21 2004)) with SMTP id <0JAS0049CVX8KU60@osl1sminn1.broadpark.no> for freebsd-multimedia@freebsd.org; Mon, 25 Dec 2006 00:00:45 +0100 (CET) Date: Mon, 25 Dec 2006 00:00:44 +0100 From: Torfinn Ingolfsen X-Face: "t9w2,-X@O^I`jVW\sonI3.,36KBLZE*AL[y9lL[PyFD*r_S:dIL9c[8Y>V42R0"!"yb_zN,f#%.[PYYNq; m"_0v; ~rUM2Yy!zmkh)3&U|u!=T(zyv,MHJv"nDH>OJ`t(@mil461d_B'Uo|'nMwlKe0Mv=kvV?Nh@>Hb<3s_z2jYgZhPb@?Wi^x1a~Hplz1.zH In-reply-to: <20061224230155.fc0a6c6a.torfinn.ingolfsen@broadpark.no> To: freebsd-multimedia@freebsd.org Message-id: <20061225000044.6670e21f.torfinn.ingolfsen@broadpark.no> MIME-version: 1.0 X-Mailer: Sylpheed version 2.2.10 (GTK+ 2.10.6; i386-portbld-freebsd6.2) Content-type: multipart/mixed; boundary="Boundary_(ID_9Na4/mHqdjM3em8G5jOH/Q)" References: <20061224230155.fc0a6c6a.torfinn.ingolfsen@broadpark.no> Subject: Re: MythTV port - status report X-BeenThere: freebsd-multimedia@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Multimedia discussions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 24 Dec 2006 23:00:46 -0000 This is a multi-part message in MIME format. --Boundary_(ID_9Na4/mHqdjM3em8G5jOH/Q) Content-type: text/plain; charset=US-ASCII Content-transfer-encoding: 7BIT One more thing: It seems tha MythTV has ... well, problems to communicate with the backend. Here is one example: I run mythfilldatabase, and it fetches data and parses it. when it comes to updating the database, it says that it can't connect to the backend?? See attached script output (mythfilldatabase.out) for details. (Note: both backend and database are running, and everything happens on the same machine. I can manually connect to the database, both as root and user 'mythtv'). I can even run the status web page (http://mythbackend:6544/) from another machine without problems. The mythbackend log file shows errors like this: Mutex unlock failure: Operation not permitted Mutex unlock failure: Operation not permitted 2006-12-24 23:29:12.951 MainServer::HandleAnnounce Monitor 2006-12-24 23:29:12.952 adding: kg-quiet.kg4.no as a client (events: 1) Mutex unlock failure: Operation not permitted Mutex unlock failure: Operation not permitted Mutex unlock failure: Operation not permitted Mutex unlock failure: Operation not permitted So far I haven't figured out what this problem is, and how to fix it. -- Regards, Torfinn Ingolfsen, Norway --Boundary_(ID_9Na4/mHqdjM3em8G5jOH/Q) Content-type: application/octet-stream; name=mytfilldatabase.out Content-transfer-encoding: base64 Content-disposition: attachment; filename=mytfilldatabase.out U2NyaXB0IHN0YXJ0ZWQgb24gU3VuIERlYyAyNCAyMzoyNzo0OSAyMDA2CnRpbmdvQGtnLXF1aWV0 JCBteXRoZmlsbGRhdGFiYXNlDQoyMDA2LTEyLTI0IDIzOjI3OjU1Ljg2OSBVc2luZyBydW50aW1l IHByZWZpeCA9IC91c3IvbG9jYWwNCjIwMDYtMTItMjQgMjM6Mjc6NTUuODg4IE5ldyBEQiBjb25u ZWN0aW9uLCB0b3RhbDogMQ0KMjAwNi0xMi0yNCAyMzoyNzo1NS45MDAgQ29ubmVjdGVkIHRvIGRh dGFiYXNlICdteXRoY29udmVyZycgYXQgaG9zdDogbG9jYWxob3N0DQoyMDA2LTEyLTI0IDIzOjI3 OjU1LjkxNCBOZXcgREIgY29ubmVjdGlvbiwgdG90YWw6IDINCjIwMDYtMTItMjQgMjM6Mjc6NTUu OTE0IENvbm5lY3RlZCB0byBkYXRhYmFzZSAnbXl0aGNvbnZlcmcnIGF0IGhvc3Q6IGxvY2FsaG9z dA0KMjAwNi0xMi0yNCAyMzoyNzo1NS45MjEgVXBkYXRpbmcgc291cmNlICMxIChUVikgd2l0aCBn cmFiYmVyIHR2X2dyYWJfbm8NCjIwMDYtMTItMjQgMjM6Mjc6NTUuOTIzIA0KMjAwNi0xMi0yNCAy MzoyNzo1NS45MjMgQ2hlY2tpbmcgZGF5IEAgb2Zmc2V0IDAsIGRhdGU6IFN1biBEZWMgMjQgMjAw Ng0KMjAwNi0xMi0yNCAyMzoyNzo1NS45MzAgRGF0YSByZWZyZXNoIG5lZWRlZCBiZWNhdXNlIG5v IGRhdGEgZXhpc3RzIGZvciBkYXkgQCBvZmZzZXQgLTEgZnJvbSA2UE0gLSBtaWRuaWdodC4gIFVu YWJsZSB0byBjYWxjdWxhdGUgaG93IG11Y2ggd2Ugc2hvdWxkIGhhdmUgZm9yIHRoZSBjdXJyZW50 IGRheSBzbyBhIHJlZnJlc2ggaXMgYmVpbmcgZm9yY2VkLg0KMjAwNi0xMi0yNCAyMzoyNzo1NS45 MzAgUmVmcmVzaGluZyBkYXRhIGZvciBTdW4gRGVjIDI0IDIwMDYNCjIwMDYtMTItMjQgMjM6Mjc6 NTUuOTMxIC0tLS0tLS0tLS0tLS0tLS0tIFN0YXJ0IG9mIFhNTFRWIG91dHB1dCAtLS0tLS0tLS0t LS0tLS0tLQ0KMjAwNi0xMi0yNCAyMzoyNzo1NS45MzEgTmV3IERCIGNvbm5lY3Rpb24sIHRvdGFs OiAzDQoyMDA2LTEyLTI0IDIzOjI3OjU1LjkzMiBDb25uZWN0ZWQgdG8gZGF0YWJhc2UgJ215dGhj b252ZXJnJyBhdCBob3N0OiBsb2NhbGhvc3QNCmZldGNoaW5nIGNoYW5uZWwgbmFtZXM6ICMjIyMj IyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjDQpmZXRjaGluZyBk YXRhOiAjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjcmVtb3Zp bmcgYmFkIGNoYXJhY3RlcnM6ICeSJyBhdCAvdXNyL2xvY2FsL2Jpbi90dl9ncmFiX25vIGxpbmUg NDI1Lg0KIyMjIw0KMjAwNi0xMi0yNCAyMzoyODoyNC45OTggLS0tLS0tLS0tLS0tLS0tLS0tIEVu ZCBvZiBYTUxUViBvdXRwdXQgLS0tLS0tLS0tLS0tLS0tLS0tDQoyMDA2LTEyLTI0IDIzOjI4OjI1 LjAyMyBOZXcgREIgY29ubmVjdGlvbiwgdG90YWw6IDQNCjIwMDYtMTItMjQgMjM6Mjg6MjUuMDI0 IENvbm5lY3RlZCB0byBkYXRhYmFzZSAnbXl0aGNvbnZlcmcnIGF0IGhvc3Q6IGxvY2FsaG9zdA0K MjAwNi0xMi0yNCAyMzoyODoyNS4wNzUgVXBkYXRpbmcgaWNvbnMgZm9yIHNvdXJjZWlkOiAxDQoy MDA2LTEyLTI0IDIzOjI4OjI1LjA3NyBOZXcgREIgY29ubmVjdGlvbiwgdG90YWw6IDUNCjIwMDYt MTItMjQgMjM6Mjg6MjUuMDc3IENvbm5lY3RlZCB0byBkYXRhYmFzZSAnbXl0aGNvbnZlcmcnIGF0 IGhvc3Q6IGxvY2FsaG9zdA0KVXBkYXRlZCBwcm9ncmFtczogMCAgVW5jaGFuZ2VkIHByb2dyYW1z OiAzMDENCjIwMDYtMTItMjQgMjM6Mjg6MjUuNjE1IA0KMjAwNi0xMi0yNCAyMzoyODoyNS42MTUg Q2hlY2tpbmcgZGF5IEAgb2Zmc2V0IDEsIGRhdGU6IE1vbiBEZWMgMjUgMjAwNg0KMjAwNi0xMi0y NCAyMzoyODoyNS42MTUgUmVmcmVzaGluZyBkYXRhIGZvciBNb24gRGVjIDI1IDIwMDYNCjIwMDYt MTItMjQgMjM6Mjg6MjUuNjE2IC0tLS0tLS0tLS0tLS0tLS0tIFN0YXJ0IG9mIFhNTFRWIG91dHB1 dCAtLS0tLS0tLS0tLS0tLS0tLQ0KZmV0Y2hpbmcgY2hhbm5lbCBuYW1lczogIyMjIyMjIyMjIyMj IyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMNCmZldGNoaW5nIGRhdGE6ICMj IyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjDQoyMDA2LTEy LTI0IDIzOjI5OjAzLjQ2NyAtLS0tLS0tLS0tLS0tLS0tLS0gRW5kIG9mIFhNTFRWIG91dHB1dCAt LS0tLS0tLS0tLS0tLS0tLS0NCjIwMDYtMTItMjQgMjM6Mjk6MDMuNTIzIFVwZGF0aW5nIGljb25z IGZvciBzb3VyY2VpZDogMQ0KcmVtb3ZpbmcgY29uZmxpY3RpbmcgcHJvZ3JhbTogdGNtY24ubm8g VGhlIERldmlsIE1ha2VzIFRocmVlIDIwMDYxMjI1MDQzMDAwLTIwMDYxMjI1MDYwMDAwDQpjb25m bGljdGVkIHdpdGggICAgICAgICAgICAgOiB0Y21jbi5ubyBLcmFtcGV0dmlsbGluZ2VuZSAyMDA2 MTIyNTA1MDAwMC0yMDA2MTIyNTA1MzAwMA0KDQpVcGRhdGVkIHByb2dyYW1zOiAwICBVbmNoYW5n ZWQgcHJvZ3JhbXM6IDMwNw0KMjAwNi0xMi0yNCAyMzoyOTowMy45ODIgDQoyMDA2LTEyLTI0IDIz OjI5OjAzLjk4MiBDaGVja2luZyBkYXkgQCBvZmZzZXQgMiwgZGF0ZTogVHVlIERlYyAyNiAyMDA2 DQoyMDA2LTEyLTI0IDIzOjI5OjAzLjk4OSBEYXRhIGlzIGFscmVhZHkgcHJlc2VudCBmb3IgVHVl IERlYyAyNiAyMDA2LCBza2lwcGluZw0KMjAwNi0xMi0yNCAyMzoyOTowMy45ODkgDQoyMDA2LTEy LTI0IDIzOjI5OjAzLjk5MCBDaGVja2luZyBkYXkgQCBvZmZzZXQgMywgZGF0ZTogV2VkIERlYyAy NyAyMDA2DQoyMDA2LTEyLTI0IDIzOjI5OjAzLjk5NiBEYXRhIGlzIGFscmVhZHkgcHJlc2VudCBm b3IgV2VkIERlYyAyNyAyMDA2LCBza2lwcGluZw0KMjAwNi0xMi0yNCAyMzoyOTowMy45OTcgDQoy MDA2LTEyLTI0IDIzOjI5OjAzLjk5NyBDaGVja2luZyBkYXkgQCBvZmZzZXQgNCwgZGF0ZTogVGh1 IERlYyAyOCAyMDA2DQoyMDA2LTEyLTI0IDIzOjI5OjA0LjAwNSBEYXRhIGlzIGFscmVhZHkgcHJl c2VudCBmb3IgVGh1IERlYyAyOCAyMDA2LCBza2lwcGluZw0KMjAwNi0xMi0yNCAyMzoyOTowNC4w MDUgDQoyMDA2LTEyLTI0IDIzOjI5OjA0LjAwNiBDaGVja2luZyBkYXkgQCBvZmZzZXQgNSwgZGF0 ZTogRnJpIERlYyAyOSAyMDA2DQoyMDA2LTEyLTI0IDIzOjI5OjA0LjAxMiBEYXRhIGlzIGFscmVh ZHkgcHJlc2VudCBmb3IgRnJpIERlYyAyOSAyMDA2LCBza2lwcGluZw0KMjAwNi0xMi0yNCAyMzoy OTowNC4wMTIgDQoyMDA2LTEyLTI0IDIzOjI5OjA0LjAxMyBDaGVja2luZyBkYXkgQCBvZmZzZXQg NiwgZGF0ZTogU2F0IERlYyAzMCAyMDA2DQoyMDA2LTEyLTI0IDIzOjI5OjA0LjAxOSBEYXRhIGlz IGFscmVhZHkgcHJlc2VudCBmb3IgU2F0IERlYyAzMCAyMDA2LCBza2lwcGluZw0KMjAwNi0xMi0y NCAyMzoyOTowNC4wNDcgRGF0YSBmZXRjaGluZyBjb21wbGV0ZS4NCjIwMDYtMTItMjQgMjM6Mjk6 MDQuMDQ5IEFkanVzdGluZyBwcm9ncmFtIGRhdGFiYXNlIGVuZCB0aW1lcy4NCjIwMDYtMTItMjQg MjM6Mjk6MDQuMDcwICAgICAwIHJlcGxhY2VtZW50cyBtYWRlDQoyMDA2LTEyLTI0IDIzOjI5OjA0 LjA3MSBNYXJraW5nIGdlbmVyaWMgZXBpc29kZXMuDQoyMDA2LTEyLTI0IDIzOjI5OjA0LjA5MCAg ICAgRm91bmQgMA0KMjAwNi0xMi0yNCAyMzoyOTowNC4wOTEgTWFya2luZyByZXBlYXRzLg0KMjAw Ni0xMi0yNCAyMzoyOTowNC4xMTAgICAgIEZvdW5kIDANCjIwMDYtMTItMjQgMjM6Mjk6MDQuMTEw IFVubWFya2luZyBuZXcgZXBpc29kZSByZWJyb2FkY2FzdCByZXBlYXRzLg0KMjAwNi0xMi0yNCAy MzoyOTowNC4xMjggICAgIEZvdW5kIDANCjIwMDYtMTItMjQgMjM6Mjk6MDQuMTgwIE1hcmtpbmcg ZXBpc29kZSBmaXJzdCBzaG93aW5ncy4NCjIwMDYtMTItMjQgMjM6Mjk6MDUuMDM0ICAgICBGb3Vu ZCAxMzY3DQoyMDA2LTEyLTI0IDIzOjI5OjA1LjAzNCBNYXJraW5nIGVwaXNvZGUgbGFzdCBzaG93 aW5ncy4NCjIwMDYtMTItMjQgMjM6Mjk6MDUuOTI5ICAgICBGb3VuZCAxMzY3DQoyMDA2LTEyLTI0 IDIzOjI5OjA1LjkzNSANCj09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09 PT09PT09PT09PT09PT09PT09PT09PQ0KfCBBdHRlbXB0aW5nIHRvIGNvbnRhY3QgdGhlIG1hc3Rl ciBiYWNrZW5kIGZvciByZXNjaGVkdWxpbmcuICB8DQp8IElmIHRoZSBtYXN0ZXIgaXMgbm90IHJ1 bm5pbmcsIHJlc2NoZWR1bGluZyB3aWxsIGhhcHBlbiB3aGVuIHwNCnwgdGhlIG1hc3RlciBiYWNr ZW5kIGlzIHJlc3RhcnRlZC4gICAgICAgICAgICAgICAgICAgICAgICAgICAgfA0KPT09PT09PT09 PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09DQoy MDA2LTEyLTI0IDIzOjI5OjA1LjkzOSBDb25uZWN0aW5nIHRvIGJhY2tlbmQgc2VydmVyOiAxMjcu MC4wLjE6NjU0MyAodHJ5IDEgb2YgNSkNCjIwMDYtMTItMjQgMjM6Mjk6MDUuOTQ3IFVzaW5nIHBy b3RvY29sIHZlcnNpb24gMzANCjIwMDYtMTItMjQgMjM6Mjk6MTIuOTUwIE15dGhTb2NrZXQoNWEz NjAwOjExKTogcmVhZFN0cmluZ0xpc3Q6IEVycm9yLCB0aW1lb3V0IChxdWljaykuDQoyMDA2LTEy LTI0IDIzOjI5OjEyLjk1NCBNeXRoU29ja2V0KDVhMzYwMDotMSk6IHdyaXRlU3RyaW5nTGlzdDog RXJyb3IsIGNhbGxlZCB3aXRoIHVuY29ubmVjdGVkIHNvY2tldC4NCjIwMDYtMTItMjQgMjM6Mjk6 MTIuOTU1IE15dGhTb2NrZXQoNWEzNjAwOi0xKTogcmVhZFN0cmluZ0xpc3Q6IEVycm9yLCBjYWxs ZWQgd2l0aCB1bmNvbm5lY3RlZCBzb2NrZXQuDQoyMDA2LTEyLTI0IDIzOjI5OjEyLjk1NSBDb25u ZWN0aW9uIHRvIGJhY2tlbmQgc2VydmVyIGxvc3QNCjIwMDYtMTItMjQgMjM6Mjk6MTIuOTU1IENv bm5lY3RpbmcgdG8gYmFja2VuZCBzZXJ2ZXI6IDEyNy4wLjAuMTo2NTQzICh0cnkgMSBvZiA1KQ0K MjAwNi0xMi0yNCAyMzoyOToxMi45NTcgVXNpbmcgcHJvdG9jb2wgdmVyc2lvbiAzMA0KMjAwNi0x Mi0yNCAyMzoyOToxOS45NTcgTXl0aFNvY2tldCg1YTM2MDA6MTMpOiByZWFkU3RyaW5nTGlzdDog RXJyb3IsIHRpbWVvdXQgKHF1aWNrKS4NCjIwMDYtMTItMjQgMjM6Mjk6MTkuOTU4IE15dGhTb2Nr ZXQoNWEzNjAwOi0xKTogd3JpdGVTdHJpbmdMaXN0OiBFcnJvciwgaW52YWxpZCBzdHJpbmcgbGlz dC4NCjIwMDYtMTItMjQgMjM6Mjk6MTkuOTU4IE15dGhTb2NrZXQoNWEzNjAwOi0xKTogcmVhZFN0 cmluZ0xpc3Q6IEVycm9yLCBjYWxsZWQgd2l0aCB1bmNvbm5lY3RlZCBzb2NrZXQuDQoyMDA2LTEy LTI0IDIzOjI5OjE5Ljk1OCBSZWNvbm5lY3Rpb24gdG8gYmFja2VuZCBzZXJ2ZXIgZmFpbGVkDQoy MDA2LTEyLTI0IDIzOjI5OjE5Ljk1OCBFcnJvciByZXNjaGVkdWxpbmcgaWQgLTEgaW4gU2NoZWR1 bGVkUmVjb3JkaW5nOjpzaWduYWxDaGFuZ2UNCjIwMDYtMTItMjQgMjM6Mjk6MTkuOTU5IENvbm5l Y3RpbmcgdG8gYmFja2VuZCBzZXJ2ZXI6IDEyNy4wLjAuMTo2NTQzICh0cnkgMSBvZiA1KQ0KMjAw Ni0xMi0yNCAyMzoyOToxOS45NjAgVXNpbmcgcHJvdG9jb2wgdmVyc2lvbiAzMA0KMjAwNi0xMi0y NCAyMzoyOToyNi45NjQgTXl0aFNvY2tldCg1YTM2MDA6MTUpOiByZWFkU3RyaW5nTGlzdDogRXJy b3IsIHRpbWVvdXQgKHF1aWNrKS4NCjIwMDYtMTItMjQgMjM6Mjk6MjYuOTY1IE15dGhTb2NrZXQo NWEzNjAwOi0xKTogd3JpdGVTdHJpbmdMaXN0OiBFcnJvciwgY2FsbGVkIHdpdGggdW5jb25uZWN0 ZWQgc29ja2V0Lg0KMjAwNi0xMi0yNCAyMzoyOToyNi45NjUgTXl0aFNvY2tldCg1YTM2MDA6LTEp OiByZWFkU3RyaW5nTGlzdDogRXJyb3IsIGNhbGxlZCB3aXRoIHVuY29ubmVjdGVkIHNvY2tldC4N CjIwMDYtMTItMjQgMjM6Mjk6MjYuOTY1IENvbm5lY3Rpb24gdG8gYmFja2VuZCBzZXJ2ZXIgbG9z dA0KMjAwNi0xMi0yNCAyMzoyOToyNi45NjUgQ29ubmVjdGluZyB0byBiYWNrZW5kIHNlcnZlcjog MTI3LjAuMC4xOjY1NDMgKHRyeSAxIG9mIDUpDQoyMDA2LTEyLTI0IDIzOjI5OjI2Ljk3NSBVc2lu ZyBwcm90b2NvbCB2ZXJzaW9uIDMwDQoyMDA2LTEyLTI0IDIzOjI5OjMzLjk3OSBNeXRoU29ja2V0 KDVhMzYwMDoxNSk6IHJlYWRTdHJpbmdMaXN0OiBFcnJvciwgdGltZW91dCAocXVpY2spLg0KMjAw Ni0xMi0yNCAyMzoyOTozMy45ODAgTXl0aFNvY2tldCg1YTM2MDA6LTEpOiB3cml0ZVN0cmluZ0xp c3Q6IEVycm9yLCBpbnZhbGlkIHN0cmluZyBsaXN0Lg0KMjAwNi0xMi0yNCAyMzoyOTozMy45ODAg TXl0aFNvY2tldCg1YTM2MDA6LTEpOiByZWFkU3RyaW5nTGlzdDogRXJyb3IsIGNhbGxlZCB3aXRo IHVuY29ubmVjdGVkIHNvY2tldC4NCjIwMDYtMTItMjQgMjM6Mjk6MzMuOTgwIFJlY29ubmVjdGlv biB0byBiYWNrZW5kIHNlcnZlciBmYWlsZWQNCjIwMDYtMTItMjQgMjM6Mjk6MzMuOTgzIG15dGhm aWxsZGF0YWJhc2UgcnVuIGNvbXBsZXRlLg0KdGluZ29Aa2ctcXVpZXQkIF5ECAgKU2NyaXB0IGRv bmUgb24gU3VuIERlYyAyNCAyMzoyOTo1MCAyMDA2Cg== --Boundary_(ID_9Na4/mHqdjM3em8G5jOH/Q)-- From owner-freebsd-multimedia@FreeBSD.ORG Sun Dec 24 23:13:23 2006 Return-Path: X-Original-To: freebsd-multimedia@freebsd.org Delivered-To: freebsd-multimedia@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 0543B16A403 for ; Sun, 24 Dec 2006 23:13:23 +0000 (UTC) (envelope-from torfinn.ingolfsen@broadpark.no) Received: from osl1smout1.broadpark.no (osl1smout1.broadpark.no [80.202.4.58]) by mx1.freebsd.org (Postfix) with ESMTP id B921013C475 for ; Sun, 24 Dec 2006 23:13:22 +0000 (UTC) (envelope-from torfinn.ingolfsen@broadpark.no) Received: from osl1sminn1.broadpark.no ([80.202.4.59]) by osl1smout1.broadpark.no (Sun Java System Messaging Server 6.1 HotFix 0.05 (built Oct 21 2004)) with ESMTP id <0JAS0098PWI9KDE0@osl1smout1.broadpark.no> for freebsd-multimedia@freebsd.org; Mon, 25 Dec 2006 00:13:21 +0100 (CET) Received: from kg-work.kg4.no ([80.203.66.169]) by osl1sminn1.broadpark.no (Sun Java System Messaging Server 6.1 HotFix 0.05 (built Oct 21 2004)) with SMTP id <0JAS004GXWI9L070@osl1sminn1.broadpark.no> for freebsd-multimedia@freebsd.org; Mon, 25 Dec 2006 00:13:21 +0100 (CET) Date: Mon, 25 Dec 2006 00:13:21 +0100 From: Torfinn Ingolfsen X-Face: "t9w2,-X@O^I`jVW\sonI3.,36KBLZE*AL[y9lL[PyFD*r_S:dIL9c[8Y>V42R0"!"yb_zN,f#%.[PYYNq; m"_0v; ~rUM2Yy!zmkh)3&U|u!=T(zyv,MHJv"nDH>OJ`t(@mil461d_B'Uo|'nMwlKe0Mv=kvV?Nh@>Hb<3s_z2jYgZhPb@?Wi^x1a~Hplz1.zH In-reply-to: To: freebsd-multimedia@freebsd.org Message-id: <20061225001321.5dfb2975.torfinn.ingolfsen@broadpark.no> MIME-version: 1.0 X-Mailer: Sylpheed version 2.2.10 (GTK+ 2.10.6; i386-portbld-freebsd6.2) Content-type: text/plain; charset=US-ASCII Content-transfer-encoding: 7BIT References: <20061224230155.fc0a6c6a.torfinn.ingolfsen@broadpark.no> Subject: Re: MythTV port - status report X-BeenThere: freebsd-multimedia@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Multimedia discussions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 24 Dec 2006 23:13:23 -0000 On Sun, 24 Dec 2006 23:31:33 +0100 usleepless@gmail.com wrote: > Torfinn, List, usleep, I think it is time for you to bug the Gmail people about proper mailing list handling - your message wasn't sent to the list. Again. > this can have at least 2 reasons: > 1. you haven't completed the setup properly. I *know* I haven't completed my mythtv-setup properly. :-) If you read the whole message you will see that I had some problems with that. > 2. the device you are using doesn't support the > enumerate-inputs-v4l2-ioctl. Ok, this is probably the reason. How can I find out if the pvr250 port supports this ioctl? any pointers to information? > are you planning on running a backend on fbsd? or just a frontend? If Greg's mythtv port becomes usable on amd64 with a PVR-350, I'm planning on running a backend on FreeBSD. The reason for that is easy: familiarity. I'm much more conformtable with FreeBSD than with the KnoppMyth box I'm running (debian). Don't even get me started on Ubuntu. I would laso like to have frontends on a feew of my FreeBSD machines - that way it is easy to fire it up just to check something, or watvh the news, or... > please keep posting your progress and problems. i am reading along. Wilco. -- Regards, Torfinn Ingolfsen, Norway From owner-freebsd-multimedia@FreeBSD.ORG Mon Dec 25 11:08:44 2006 Return-Path: X-Original-To: freebsd-multimedia@FreeBSD.org Delivered-To: freebsd-multimedia@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 0413D16A5BC for ; Mon, 25 Dec 2006 11:08:44 +0000 (UTC) (envelope-from owner-bugmaster@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [69.147.83.40]) by mx1.freebsd.org (Postfix) with ESMTP id E63E913C498 for ; Mon, 25 Dec 2006 11:08:43 +0000 (UTC) (envelope-from owner-bugmaster@FreeBSD.org) Received: from freefall.freebsd.org (linimon@localhost [127.0.0.1]) by freefall.freebsd.org (8.13.4/8.13.4) with ESMTP id kBPB8hRM034606 for ; Mon, 25 Dec 2006 11:08:43 GMT (envelope-from owner-bugmaster@FreeBSD.org) Received: (from linimon@localhost) by freefall.freebsd.org (8.13.4/8.13.4/Submit) id kBPB8gti034600 for freebsd-multimedia@FreeBSD.org; Mon, 25 Dec 2006 11:08:42 GMT (envelope-from owner-bugmaster@FreeBSD.org) Date: Mon, 25 Dec 2006 11:08:42 GMT Message-Id: <200612251108.kBPB8gti034600@freefall.freebsd.org> X-Authentication-Warning: freefall.freebsd.org: linimon set sender to owner-bugmaster@FreeBSD.org using -f From: FreeBSD bugmaster To: freebsd-multimedia@FreeBSD.org Cc: Subject: Current problem reports assigned to you X-BeenThere: freebsd-multimedia@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Multimedia discussions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 25 Dec 2006 11:08:44 -0000 Current FreeBSD problem reports Critical problems Serious problems S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/63204 multimedia [sound] /dev/mixer broken with ESS Maestro-2E (still o f kern/73987 multimedia [sound] Nforce2 MB sound problem o kern/79905 multimedia [sound] sis7018 sound module problem o kern/79912 multimedia [sound] sound broken for 2 VIA chipsets: interrupt sto o kern/81146 multimedia [sound] Sound isn't working AT ALL for Sis7012 onboard o kern/82043 multimedia [sound] snd_emu10k1 - mixer does not work. o kern/90214 multimedia [sound] memory leaks in snd_via8233 o kern/94279 multimedia [snd_neomagic] snd_neomagic crashes on FreeBSD 5.4 and o kern/96538 multimedia [sound] emu10k1-driver inverts channels o kern/97535 multimedia [snd_mss] doesn't work in 6.0-RELEASE and above for Cr o kern/98167 multimedia [sound] [es137x] [patch] ES1370 mixer volumes incorrec o kern/98752 multimedia [sound] Intel ich6 82801 FB - on Packard Bell A8810 la f kern/99920 multimedia [snd_ich] Not support integrated audio on ICH7R chip ( o kern/104626 multimedia [sound] FreeBSD 6.2 does not support SoundBlaster Audi o kern/104874 multimedia [snd_emu10k1] kldload snd_emu10k1 hangs system p kern/106829 multimedia [PATCH]: snd_ich driver fails with nvidia MCP04 chipse o kern/107051 multimedia [sound] only 2 channels output works for the ALC850 (o 17 problems total. Non-critical problems S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/37600 multimedia [sound] [partial patch] t4dwave drive doesn't record. f kern/59208 multimedia [sound] [patch] reduce pops and crackles and fix selec f kern/60599 multimedia [bktr] [partial patch] No sound for ATI TV Wonder (ste o kern/60677 multimedia [sound] [patch] No reaction of volume controy key on I o kern/72995 multimedia [sound] Intel ICH2 (82801BA) - sound nearly inaudible o kern/79678 multimedia [sound] sound works except recording from any source o kern/80465 multimedia [sound] pcm0:record:0: record interrupt timeout (Acer o kern/80632 multimedia pcm driver missing support for CMI8738 auxillary input o kern/83697 multimedia [snd_mss] [patch] support, docs added for full-duplex, f kern/84311 multimedia [sound] 82801FB/FR/FW/FRW Intel High Definition Audio f ports/86899 multimedia multimedia/mjpegtools - lavplay/glav claims "No video o kern/87782 multimedia [sound] snd_t4dwave and pcm0:record:0: record interrup f kern/88820 multimedia [sound] Erratic recognition of VIA 8285 sound card by o kern/92512 multimedia [sound] distorted mono output with emu10k1 f kern/92557 multimedia [sound] Contrary to 6.0 release notes, snd_csa does no o i386/93986 multimedia [pcm] Acer TravelMate 4652LMi pcm0 channel dead o kern/95086 multimedia [sound] uaudio line in problem with sbdm lx o kern/97609 multimedia [sound] Load Sound Module - VIA8233 - fails o kern/98496 multimedia [snd_ich] some functions don't work in my sound kernel o kern/98504 multimedia [sound] Sound is distorted with SB Live 5.1 o kern/100859 multimedia [snd_ich] snd_ich broken on GIGABYTE 915 system o kern/101417 multimedia [sound] 4-speakers output not possible on Asus A8V-Del f kern/104011 multimedia [sound] soundcard "82801G (ICH7 Family) High Definitio o i386/105600 multimedia [snd_mss] can not detect PC-9821 V166 internal sound 24 problems total. From owner-freebsd-multimedia@FreeBSD.ORG Tue Dec 26 00:34:43 2006 Return-Path: X-Original-To: freebsd-multimedia@freebsd.org Delivered-To: freebsd-multimedia@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 7686716A403 for ; Tue, 26 Dec 2006 00:34:43 +0000 (UTC) (envelope-from torfinn.ingolfsen@broadpark.no) Received: from osl1smout1.broadpark.no (osl1smout1.broadpark.no [80.202.4.58]) by mx1.freebsd.org (Postfix) with ESMTP id 369F413C46D for ; Tue, 26 Dec 2006 00:34:43 +0000 (UTC) (envelope-from torfinn.ingolfsen@broadpark.no) Received: from osl1sminn1.broadpark.no ([80.202.4.59]) by osl1smout1.broadpark.no (Sun Java System Messaging Server 6.1 HotFix 0.05 (built Oct 21 2004)) with ESMTP id <0JAU004I3UXUNCC0@osl1smout1.broadpark.no> for freebsd-multimedia@freebsd.org; Tue, 26 Dec 2006 01:34:42 +0100 (CET) Received: from kg-work.kg4.no ([80.203.66.169]) by osl1sminn1.broadpark.no (Sun Java System Messaging Server 6.1 HotFix 0.05 (built Oct 21 2004)) with SMTP id <0JAU004M7UXUZFZ0@osl1sminn1.broadpark.no> for freebsd-multimedia@freebsd.org; Tue, 26 Dec 2006 01:34:42 +0100 (CET) Date: Tue, 26 Dec 2006 01:34:41 +0100 From: Torfinn Ingolfsen X-Face: "t9w2,-X@O^I`jVW\sonI3.,36KBLZE*AL[y9lL[PyFD*r_S:dIL9c[8Y>V42R0"!"yb_zN,f#%.[PYYNq; m"_0v; ~rUM2Yy!zmkh)3&U|u!=T(zyv,MHJv"nDH>OJ`t(@mil461d_B'Uo|'nMwlKe0Mv=kvV?Nh@>Hb<3s_z2jYgZhPb@?Wi^x1a~Hplz1.zH In-reply-to: <20061225000044.6670e21f.torfinn.ingolfsen@broadpark.no> To: freebsd-multimedia@freebsd.org Message-id: <20061226013441.9dc242e3.torfinn.ingolfsen@broadpark.no> MIME-version: 1.0 X-Mailer: Sylpheed version 2.2.10 (GTK+ 2.10.6; i386-portbld-freebsd6.2) Content-type: text/plain; charset=US-ASCII Content-transfer-encoding: 7BIT References: <20061224230155.fc0a6c6a.torfinn.ingolfsen@broadpark.no> <20061225000044.6670e21f.torfinn.ingolfsen@broadpark.no> Subject: Re: MythTV port - status report X-BeenThere: freebsd-multimedia@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Multimedia discussions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 26 Dec 2006 00:34:43 -0000 On Mon, 25 Dec 2006 00:00:44 +0100 Torfinn Ingolfsen wrote: > It seems tha MythTV has ... well, problems to communicate with the > backend. Ok, I have investigated this problem a litle further. I have found the following: - all three of mythtv-setup, mythfilldatabase and mythfrontend have this problem - different ip address configuration in mythtv-setup doesn't change anything. I can use '127.0.0.1', 'localhost' or the real ip address of my server (it has to be the same in mythfrontend of course). - I have checked the database with mysqlcheck - it is ok. All I find on Google (when searching for Mythsocket problems and related terms) is references to wrong ip addresses, blocked ports and so on. Obviously, since everything is on the same machine, none of these things apply in my situation. To be sure, I have checked /etc/hosts.allow - it doesn't block anything. Currently installing mythtv on an i386 machine, just to see if I get the same troubles there. It haven't got a TV card (and no space for one either) so I'm unsure about how much I can test. we'll see. -- Regards, Torfinn Ingolfsen, Norway From owner-freebsd-multimedia@FreeBSD.ORG Tue Dec 26 00:46:30 2006 Return-Path: X-Original-To: freebsd-multimedia@freebsd.org Delivered-To: freebsd-multimedia@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 9B86F16A407 for ; Tue, 26 Dec 2006 00:46:30 +0000 (UTC) (envelope-from torfinn.ingolfsen@broadpark.no) Received: from osl1smout1.broadpark.no (osl1smout1.broadpark.no [80.202.4.58]) by mx1.freebsd.org (Postfix) with ESMTP id 5B4B013C46D for ; Tue, 26 Dec 2006 00:46:30 +0000 (UTC) (envelope-from torfinn.ingolfsen@broadpark.no) Received: from osl1sminn1.broadpark.no ([80.202.4.59]) by osl1smout1.broadpark.no (Sun Java System Messaging Server 6.1 HotFix 0.05 (built Oct 21 2004)) with ESMTP id <0JAU004XRVHHN0C0@osl1smout1.broadpark.no> for freebsd-multimedia@freebsd.org; Tue, 26 Dec 2006 01:46:29 +0100 (CET) Received: from kg-work.kg4.no ([80.203.66.169]) by osl1sminn1.broadpark.no (Sun Java System Messaging Server 6.1 HotFix 0.05 (built Oct 21 2004)) with SMTP id <0JAU00G90VHHJQ10@osl1sminn1.broadpark.no> for freebsd-multimedia@freebsd.org; Tue, 26 Dec 2006 01:46:29 +0100 (CET) Date: Tue, 26 Dec 2006 01:46:28 +0100 From: Torfinn Ingolfsen X-Face: "t9w2,-X@O^I`jVW\sonI3.,36KBLZE*AL[y9lL[PyFD*r_S:dIL9c[8Y>V42R0"!"yb_zN,f#%.[PYYNq; m"_0v; ~rUM2Yy!zmkh)3&U|u!=T(zyv,MHJv"nDH>OJ`t(@mil461d_B'Uo|'nMwlKe0Mv=kvV?Nh@>Hb<3s_z2jYgZhPb@?Wi^x1a~Hplz1.zH In-reply-to: <20061226013441.9dc242e3.torfinn.ingolfsen@broadpark.no> To: freebsd-multimedia@freebsd.org Message-id: <20061226014628.54766a4c.torfinn.ingolfsen@broadpark.no> MIME-version: 1.0 X-Mailer: Sylpheed version 2.2.10 (GTK+ 2.10.6; i386-portbld-freebsd6.2) Content-type: text/plain; charset=US-ASCII Content-transfer-encoding: 7BIT References: <20061224230155.fc0a6c6a.torfinn.ingolfsen@broadpark.no> <20061225000044.6670e21f.torfinn.ingolfsen@broadpark.no> <20061226013441.9dc242e3.torfinn.ingolfsen@broadpark.no> Subject: Re: MythTV port - status report X-BeenThere: freebsd-multimedia@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Multimedia discussions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 26 Dec 2006 00:46:30 -0000 On Tue, 26 Dec 2006 01:34:41 +0100 Torfinn Ingolfsen wrote: > All I find on Google (when searching for Mythsocket problems and > related terms) is references to wrong ip addresses, blocked ports and Hmm, I guess MythSocket refers to communicating with the mythbackend, not with the database? Or am I mistaken? One more thought: I have installer mysql-server-50 without any options. Does that impact anything? I see that there are at least two options related to threads, should I enable one or the other, or doesn't it matter? -- Regards, Torfinn Ingolfsen, Norway From owner-freebsd-multimedia@FreeBSD.ORG Tue Dec 26 01:35:54 2006 Return-Path: X-Original-To: freebsd-multimedia@freebsd.org Delivered-To: freebsd-multimedia@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 5FA7716A407 for ; Tue, 26 Dec 2006 01:35:54 +0000 (UTC) (envelope-from torfinn.ingolfsen@broadpark.no) Received: from osl1smout1.broadpark.no (osl1smout1.broadpark.no [80.202.4.58]) by mx1.freebsd.org (Postfix) with ESMTP id 1E51213C46E for ; Tue, 26 Dec 2006 01:35:54 +0000 (UTC) (envelope-from torfinn.ingolfsen@broadpark.no) Received: from osl1sminn1.broadpark.no ([80.202.4.59]) by osl1smout1.broadpark.no (Sun Java System Messaging Server 6.1 HotFix 0.05 (built Oct 21 2004)) with ESMTP id <0JAU004ITXRTN7E0@osl1smout1.broadpark.no> for freebsd-multimedia@freebsd.org; Tue, 26 Dec 2006 02:35:53 +0100 (CET) Received: from kg-work.kg4.no ([80.203.66.169]) by osl1sminn1.broadpark.no (Sun Java System Messaging Server 6.1 HotFix 0.05 (built Oct 21 2004)) with SMTP id <0JAU00FXHXRSF9I0@osl1sminn1.broadpark.no> for freebsd-multimedia@freebsd.org; Tue, 26 Dec 2006 02:35:53 +0100 (CET) Date: Tue, 26 Dec 2006 02:35:52 +0100 From: Torfinn Ingolfsen X-Face: "t9w2,-X@O^I`jVW\sonI3.,36KBLZE*AL[y9lL[PyFD*r_S:dIL9c[8Y>V42R0"!"yb_zN,f#%.[PYYNq; m"_0v; ~rUM2Yy!zmkh)3&U|u!=T(zyv,MHJv"nDH>OJ`t(@mil461d_B'Uo|'nMwlKe0Mv=kvV?Nh@>Hb<3s_z2jYgZhPb@?Wi^x1a~Hplz1.zH In-reply-to: <20061226013441.9dc242e3.torfinn.ingolfsen@broadpark.no> To: freebsd-multimedia@freebsd.org Message-id: <20061226023552.7b4ef0c8.torfinn.ingolfsen@broadpark.no> MIME-version: 1.0 X-Mailer: Sylpheed version 2.2.10 (GTK+ 2.10.6; i386-portbld-freebsd6.2) Content-type: text/plain; charset=US-ASCII Content-transfer-encoding: 7BIT References: <20061224230155.fc0a6c6a.torfinn.ingolfsen@broadpark.no> <20061225000044.6670e21f.torfinn.ingolfsen@broadpark.no> <20061226013441.9dc242e3.torfinn.ingolfsen@broadpark.no> Subject: Re: MythTV port - status report X-BeenThere: freebsd-multimedia@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Multimedia discussions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 26 Dec 2006 01:35:54 -0000 On Tue, 26 Dec 2006 01:34:41 +0100 Torfinn Ingolfsen wrote: > Currently installing mythtv on an i386 machine, just to see if I get > the same troubles there. It haven't got a TV card (and no space for Aha, this is interesting. tingo@kg-work$ uname -a FreeBSD kg-work.kg4.no 6.2-PRERELEASE FreeBSD 6.2-PRERELEASE #1: Sat Nov 18 13:59:20 CET 2006 root@kg-work.kg4.no:/usr/obj/usr/src/sys/SS51G i386 The last part of 'mythfilldatabase --manual': =============================================================== | Attempting to contact the master backend for rescheduling. | | If the master is not running, rescheduling will happen when | | the master backend is restarted. | =============================================================== 2006-12-26 02:27:12.798 Connecting to backend server: 127.0.0.1:6543 (try 1 of 5) 2006-12-26 02:27:12.809 Using protocol version 30 2006-12-26 02:27:19.815 MythSocket(8129000:21): readStringList: Error, timeout (quick). 2006-12-26 02:27:19.823 MythSocket(8129000:-1): writeStringList: Error, called with unconnected socket. 2006-12-26 02:27:19.823 MythSocket(8129000:-1): readStringList: Error, called with unconnected socket. 2006-12-26 02:27:19.823 Connection to backend server lost 2006-12-26 02:27:19.824 Connecting to backend server: 127.0.0.1:6543 (try 1 of 5) 2006-12-26 02:27:19.830 Using protocol version 30 2006-12-26 02:27:26.832 MythSocket(8129000:23): readStringList: Error, timeout (quick). 2006-12-26 02:27:26.833 MythSocket(8129000:-1): writeStringList: Error, invalid string list. 2006-12-26 02:27:26.834 MythSocket(8129000:-1): readStringList: Error, called with unconnected socket. 2006-12-26 02:27:26.835 Reconnection to backend server failed 2006-12-26 02:27:26.835 Error rescheduling id -1 in ScheduledRecording::signalChange 2006-12-26 02:27:26.838 Connecting to backend server: 127.0.0.1:6543 (try 1 of 5) 2006-12-26 02:27:26.842 Using protocol version 30 2006-12-26 02:27:33.845 MythSocket(8129000:23): readStringList: Error, timeout (quick). 2006-12-26 02:27:33.846 MythSocket(8129000:-1): writeStringList: Error, called with unconnected socket. 2006-12-26 02:27:33.847 MythSocket(8129000:-1): readStringList: Error, called with unconnected socket. 2006-12-26 02:27:33.847 Connection to backend server lost 2006-12-26 02:27:33.848 Connecting to backend server: 127.0.0.1:6543 (try 1 of 5) 2006-12-26 02:27:33.852 Using protocol version 30 2006-12-26 02:27:40.855 MythSocket(8129000:23): readStringList: Error, timeout (quick). 2006-12-26 02:27:40.856 MythSocket(8129000:-1): writeStringList: Error, invalid string list. 2006-12-26 02:27:40.856 MythSocket(8129000:-1): readStringList: Error, called with unconnected socket. 2006-12-26 02:27:40.857 Reconnection to backend server failed 2006-12-26 02:27:40.866 mythfilldatabase run complete. ICE default IO error handler doing an exit(), pid = 32935, errno = 32 I'm using mysql 5.0 with this (also using mysql 5.0 on the amd64 machine): root@kg-work# portversion -v | grep mysql mysql-client-5.0.27 = up-to-date with port mysql-server-5.0.27 = up-to-date with port qt-mysql-plugin-3.3.5 = up-to-date with port are you people using the same version of mysql? Or are you using another version? Any hints welcome. -- Regards, Torfinn Ingolfsen, Norway From owner-freebsd-multimedia@FreeBSD.ORG Tue Dec 26 03:25:42 2006 Return-Path: X-Original-To: freebsd-multimedia@freebsd.org Delivered-To: freebsd-multimedia@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id BB6AB16A407 for ; Tue, 26 Dec 2006 03:25:42 +0000 (UTC) (envelope-from josh@tcbug.org) Received: from sccrmhc15.comcast.net (sccrmhc15.comcast.net [63.240.77.85]) by mx1.freebsd.org (Postfix) with ESMTP id 8959313C487 for ; Tue, 26 Dec 2006 03:25:42 +0000 (UTC) (envelope-from josh@tcbug.org) Received: from gimpy (c-24-118-186-172.hsd1.mn.comcast.net[24.118.186.172]) by comcast.net (sccrmhc15) with ESMTP id <20061226031217015004ucofe>; Tue, 26 Dec 2006 03:12:17 +0000 From: Josh Paetzel To: freebsd-multimedia@freebsd.org Date: Mon, 25 Dec 2006 21:12:16 -0600 User-Agent: KMail/1.9.4 MIME-Version: 1.0 Content-Type: text/plain; charset="us-ascii" Content-Transfer-Encoding: 7bit Content-Disposition: inline Message-Id: <200612252112.16751.josh@tcbug.org> Cc: Subject: Troubles with WinTV-PVR 150 X-BeenThere: freebsd-multimedia@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Multimedia discussions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 26 Dec 2006 03:25:42 -0000 Been trying to make a WinTV-PVR 150 go with FBSD 6.1-R-p11 Here's what I've done and where I'm at: added to kernel: device iicbus device iicbb device smbus make patch-iicbb in /usr/ports/multimedia/pvrxxx/ recompile kernel and boot into it Unzip the three following files out of cd-analogue-pvr-pci-26.zip: HcwMakoB.ROM (20 apr 2005 size 14264) HcwMakoC.ROM (9 feb 2006 size 16382) hcwPVRP2.sys (14 sep 2005 size 824512) and rename HcwMakoC.ROM -> HcwMakoA.ROM Move stuff to /usr/ports/distfiles, hack pvrxxx port's distinfo to use the correct files and sizes and so forth. edit work/modules/cxm/cxm/fbsd-compat.c #thef.size = 14264; thef.size = 16382; installed multimedia/pvrxxx kldload cxm_iic kldload cxm In dmesg: cxm0: mem 0xdc000000-0xdfffffff irq 17 at device 12.0 on pci0 cxm_iic0: on cxm0 iicbb0: on cxm_iic0 iicbus0: on iicbb0 master-only tuner code 112 cxm0: unknown tuner code 0x70 tuner_type = -1 cxm0: could not initialize tuner iicbus0: detached iicbb0: detached cxm_iic0: detached device_attach: cxm0 attach returned 6 edit cxm_eeprom.c and add case 0x70: recompile pvrxxx kldload cxm_iic and cxm again cxm0: mem 0xdc000000-0xdfffffff irq 17 at device 12.0 on pci0 cxm_iic0: on cxm0 iicbb0: on cxm_iic0 iicbus0: on iicbb0 master-only tuner code 112 tuner_type = 7 cxm0: Philips FI1246 MK2 tuner <2>cxm 0-0000: loaded /lib/modules/v4l-cx25840.fw firmware (14264 bytes) <2>cxm debug 0-0000: decoder set input (0) <2>cxm debug 0-0000: now setting Tuner input <2>cxm debug 0-0000: set audio input (0) <2>cxm debug 0-0000: set audio input (0) cxm0: Eeprom NTSC <2>tda 0-0000: switching to v4l2 <2>tda 0-0000: configure for: NTSC-M <2>tda 0-0000: writing: b=0xd4 c=0x30 e=0x44 could not start iic bus probed 54 probed 136 probed 160 probed 194 probed 224 probed 226 probed 228 probed 230 <2>tda 0-0000: i2c i/o error: rc == 2 (should be 4) read error <2>tda 0-0000: i2c i/o error: rc == -215889125 (should be 1) <2>tda 0-0000: read: 0x 0 <2>tda 0-0000: after power on : no <2>tda 0-0000: afc : - 12.5 kHz <2>tda 0-0000: fmif level : low <2>tda 0-0000: afc window : out <2>tda 0-0000: vfi level : low <2>cxm 0-0000: Video signal: not present <2>cxm 0-0000: Detected format: NTSC-M <2>cxm 0-0000: Detected audio mode: mono <2>cxm 0-0000: Detected audio standard: BTSC <2>cxm 0-0000: Audio muted: yes <2>cxm 0-0000: Audio microcontroller: running <2>cxm 0-0000: Configured audio standard: automatic detection <2>cxm 0-0000: Configured audio system: BTSC <2>cxm 0-0000: Specified standard: NTSC-M <2>cxm 0-0000: Specified input: Tuner <2>cxm 0-0000: Specified audio input: Tuner <2>cxm 0-0000: Specified audioclock freq: 48 kHz <2>cxm 0-0000: Preferred audio mode: stereo cxm0: [GIANT-LOCKED] cxm0: encoder firmware version 0x2050032 pvr250-setchannel 30 ioctl( tfd, BT848_GAUDIO ) failed.: Device not configured mplayer /dev/cxm0 static in window and spams to dmesg: device cxm0 opened cxm0: encoder dma not enough buffer space free cxm0: encoder dma not already in progress cxm0: encoder dma not enough buffer space free cxm0: encoder dma not already in progress cxm0: encoder dma not enough buffer space free cxm0: encoder dma not already in progress cxm0: encoder dma not enough buffer space free endlessly Any hints on where to go from here? -- Thanks, Josh Paetzel From owner-freebsd-multimedia@FreeBSD.ORG Tue Dec 26 04:54:03 2006 Return-Path: X-Original-To: freebsd-multimedia@freebsd.org Delivered-To: freebsd-multimedia@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 1364216A403 for ; Tue, 26 Dec 2006 04:54:03 +0000 (UTC) (envelope-from redchin@gmail.com) Received: from nf-out-0910.google.com (nf-out-0910.google.com [64.233.182.189]) by mx1.freebsd.org (Postfix) with ESMTP id A544213C46D for ; Tue, 26 Dec 2006 04:54:02 +0000 (UTC) (envelope-from redchin@gmail.com) Received: by nf-out-0910.google.com with SMTP id x37so4379067nfc for ; Mon, 25 Dec 2006 20:54:01 -0800 (PST) DomainKey-Signature: a=rsa-sha1; q=dns; c=nofws; s=beta; d=gmail.com; h=received:message-id:date:from:to:subject:mime-version:content-type; b=pZxpB1Pcpte8ndK37aMAURAY68Q+ACoWLEvCEEf7lkp+OQV8WAi4xIPJY7DTQBjQiYxaxl2vndHMYulTSWwVEAeDmei80wR5jHyhZ+2Lv4zSRCDXz+anL593DYe4uNoBxmZgbKfvah3AeeXLznAjTJEw/Xhc1TWLKeHOzOWHw10= Received: by 10.82.111.8 with SMTP id j8mr523897buc.1167107158187; Mon, 25 Dec 2006 20:25:58 -0800 (PST) Received: by 10.82.113.20 with HTTP; Mon, 25 Dec 2006 20:25:58 -0800 (PST) Message-ID: <1d3ed48c0612252025mb702d9sd1ff939ba9e87efe@mail.gmail.com> Date: Mon, 25 Dec 2006 20:25:58 -0800 From: "Kevin Downey" To: freebsd-multimedia@freebsd.org MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8; format=flowed Content-Transfer-Encoding: 7bit Content-Disposition: inline X-Content-Filtered-By: Mailman/MimeDel 2.1.5 Subject: snd_solo does it work? X-BeenThere: freebsd-multimedia@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Multimedia discussions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 26 Dec 2006 04:54:03 -0000 I have an old i-series (made by acer) thinkpad. %cat /dev/sndstat FreeBSD Audio Driver (newpcm) Installed devices: pcm0: at io 0x7000,0x7080,0x70c0 irq 5 kld snd_solo (1p/1r/0v channels duplex default) % but no sound. snd_solo is the only drive that gives me this and it is the one that sticks if I kldload snd_driver.ko I am not sure as to its exact sound chip, since it is a japanese model and I could not really find anything with matching specs on what I do know on thinkwiki. I had sound working about a year and a half ago but of course I blew that install away along with all its configs. this thread suggest there was some problem with the snd_solo driver: http://lists.freebsd.org/pipermail/freebsd-multimedia/2006-January/003425.html The links to the patch files no longer work. Is there any more current information on the status of snd_solo? -- The biggest problem with communication is the illusion that it has occurred. From owner-freebsd-multimedia@FreeBSD.ORG Tue Dec 26 08:06:55 2006 Return-Path: X-Original-To: freebsd-multimedia@freebsd.org Delivered-To: freebsd-multimedia@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 852D416A407 for ; Tue, 26 Dec 2006 08:06:55 +0000 (UTC) (envelope-from pyunyh@gmail.com) Received: from wx-out-0506.google.com (wx-out-0506.google.com [66.249.82.231]) by mx1.freebsd.org (Postfix) with ESMTP id 30C8813C466 for ; Tue, 26 Dec 2006 08:06:55 +0000 (UTC) (envelope-from pyunyh@gmail.com) Received: by wx-out-0506.google.com with SMTP id s18so3636585wxc for ; Tue, 26 Dec 2006 00:06:54 -0800 (PST) DomainKey-Signature: a=rsa-sha1; q=dns; c=nofws; s=beta; d=gmail.com; h=received:date:from:to:cc:subject:message-id:reply-to:references:mime-version:content-type:content-disposition:in-reply-to:user-agent; b=OW/owQA9NvTnlHmKRCFGZ8pSw2i50dE2diP75ZmHom8nkWB6qqfOwdL50rlmh41UWSHkGW/nGKigStRoFEZ0SQwz+JZ89jWBx9Mbp321YUxmbHuTOWGOQ7mhxYok8ZrlI3w/CO+E3fmYphRSZpqhxheoYy49p/sHWS+ymd4tM/8= Received: by 10.70.9.4 with SMTP id 4mr23164615wxi.1167118950814; Mon, 25 Dec 2006 23:42:30 -0800 (PST) Received: from michelle.cdnetworks.co.kr ( [211.53.35.84]) by mx.google.com with ESMTP id 7sm24666138wrl.2006.12.25.23.42.29; Mon, 25 Dec 2006 23:42:30 -0800 (PST) Received: from michelle.cdnetworks.co.kr (localhost.cdnetworks.co.kr [127.0.0.1]) by michelle.cdnetworks.co.kr (8.13.5/8.13.5) with ESMTP id kBQ7eiig003087 (version=TLSv1/SSLv3 cipher=DHE-RSA-AES256-SHA bits=256 verify=NO); Tue, 26 Dec 2006 16:40:44 +0900 (KST) (envelope-from pyunyh@gmail.com) Received: (from yongari@localhost) by michelle.cdnetworks.co.kr (8.13.5/8.13.5/Submit) id kBQ7eh3q003086; Tue, 26 Dec 2006 16:40:43 +0900 (KST) (envelope-from pyunyh@gmail.com) Date: Tue, 26 Dec 2006 16:40:43 +0900 From: Pyun YongHyeon To: Kevin Downey Message-ID: <20061226074043.GD994@cdnetworks.co.kr> References: <1d3ed48c0612252025mb702d9sd1ff939ba9e87efe@mail.gmail.com> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <1d3ed48c0612252025mb702d9sd1ff939ba9e87efe@mail.gmail.com> User-Agent: Mutt/1.4.2.1i Cc: freebsd-multimedia@freebsd.org Subject: Re: snd_solo does it work? X-BeenThere: freebsd-multimedia@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list Reply-To: pyunyh@gmail.com List-Id: Multimedia discussions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 26 Dec 2006 08:06:55 -0000 On Mon, Dec 25, 2006 at 08:25:58PM -0800, Kevin Downey wrote: > I have an old i-series (made by acer) thinkpad. > %cat /dev/sndstat > FreeBSD Audio Driver (newpcm) > Installed devices: > pcm0: at io 0x7000,0x7080,0x70c0 irq 5 kld > snd_solo (1p/1r/0v channels duplex default) > % > but no sound. snd_solo is the only drive that gives me this and it is the > one that sticks if I kldload snd_driver.ko > > I am not sure as to its exact sound chip, since it is a japanese model and > I could not really find anything with matching specs on what I do know on > thinkwiki. I had sound working about a year and a half ago but of course I > blew that install away along with all its configs. this thread suggest > there was some problem with the snd_solo driver: > http://lists.freebsd.org/pipermail/freebsd-multimedia/2006-January/003425.html > The links to the patch files no longer work. > > Is there any more current information on the status of snd_solo? > Maybe Ariff and other interesting developers want to know more details for your hardware. Please post dmesg ouput generated with bootverbose option. What's your FreeBSD version? Did CURRENT also show the same issue? -- Regards, Pyun YongHyeon From owner-freebsd-multimedia@FreeBSD.ORG Tue Dec 26 15:01:50 2006 Return-Path: X-Original-To: freebsd-multimedia@freebsd.org Delivered-To: freebsd-multimedia@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 0F7DB16A403 for ; Tue, 26 Dec 2006 15:01:50 +0000 (UTC) (envelope-from usleepless@gmail.com) Received: from ug-out-1314.google.com (ug-out-1314.google.com [66.249.92.173]) by mx1.freebsd.org (Postfix) with ESMTP id 9D05A13C46E for ; Tue, 26 Dec 2006 15:01:49 +0000 (UTC) (envelope-from usleepless@gmail.com) Received: by ug-out-1314.google.com with SMTP id o2so3165904uge for ; Tue, 26 Dec 2006 07:01:48 -0800 (PST) DomainKey-Signature: a=rsa-sha1; q=dns; c=nofws; s=beta; d=gmail.com; h=received:message-id:date:from:to:subject:cc:in-reply-to:mime-version:content-type:content-transfer-encoding:content-disposition:references; b=br155jtxsTX5X9eSdatkLYYs8ZmtRgXFT0XOx0SlMFAyiu92hxmPq4cNGEzcspLtkJ+8HFOyho/hQPdNKpoqC8roRS7g3+TkCKDpXwk8DiIbzN8Hza7Yc7o/CF8TcyZU3axetbgNk4Nqx8bKJ8EEayJwdaHkJih3R9ikN169uy0= Received: by 10.78.204.20 with SMTP id b20mr801356hug.1167145308170; Tue, 26 Dec 2006 07:01:48 -0800 (PST) Received: by 10.78.124.8 with HTTP; Tue, 26 Dec 2006 07:01:47 -0800 (PST) Message-ID: Date: Tue, 26 Dec 2006 16:01:47 +0100 From: usleepless@gmail.com To: "Torfinn Ingolfsen" In-Reply-To: <20061226023552.7b4ef0c8.torfinn.ingolfsen@broadpark.no> MIME-Version: 1.0 Content-Type: text/plain; charset=ISO-8859-1; format=flowed Content-Transfer-Encoding: 7bit Content-Disposition: inline References: <20061224230155.fc0a6c6a.torfinn.ingolfsen@broadpark.no> <20061225000044.6670e21f.torfinn.ingolfsen@broadpark.no> <20061226013441.9dc242e3.torfinn.ingolfsen@broadpark.no> <20061226023552.7b4ef0c8.torfinn.ingolfsen@broadpark.no> Cc: freebsd-multimedia@freebsd.org Subject: Re: MythTV port - status report X-BeenThere: freebsd-multimedia@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Multimedia discussions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 26 Dec 2006 15:01:50 -0000 Torfinn, On 12/26/06, Torfinn Ingolfsen wrote: > On Tue, 26 Dec 2006 01:34:41 +0100 > Torfinn Ingolfsen wrote: > > > Currently installing mythtv on an i386 machine, just to see if I get > > the same troubles there. It haven't got a TV card (and no space for > > Aha, this is interesting. > tingo@kg-work$ uname -a > FreeBSD kg-work.kg4.no 6.2-PRERELEASE FreeBSD 6.2-PRERELEASE #1: Sat Nov 18 > 13:59:20 CET 2006 root@kg-work.kg4.no:/usr/obj/usr/src/sys/SS51G i386 > > The last part of 'mythfilldatabase --manual': > =============================================================== > | Attempting to contact the master backend for rescheduling. | > | If the master is not running, rescheduling will happen when | > | the master backend is restarted. | > =============================================================== > 2006-12-26 02:27:12.798 Connecting to backend server: 127.0.0.1:6543 (try 1 > of 5) > 2006-12-26 02:27:12.809 Using protocol version 30 > 2006-12-26 02:27:19.815 MythSocket(8129000:21): readStringList: Error, > timeout (quick). > 2006-12-26 02:27:19.823 MythSocket(8129000:-1): writeStringList: Error, > called with unconnected socket. > 2006-12-26 02:27:19.823 MythSocket(8129000:-1): readStringList: Error, > called with unconnected socket. > 2006-12-26 02:27:19.823 Connection to backend server lost > 2006-12-26 02:27:19.824 Connecting to backend server: 127.0.0.1:6543 (try 1 > of 5) > 2006-12-26 02:27:19.830 Using protocol version 30 > 2006-12-26 02:27:26.832 MythSocket(8129000:23): readStringList: Error, > timeout (quick). > 2006-12-26 02:27:26.833 MythSocket(8129000:-1): writeStringList: Error, > invalid string list. > 2006-12-26 02:27:26.834 MythSocket(8129000:-1): readStringList: Error, > called with unconnected socket. > 2006-12-26 02:27:26.835 Reconnection to backend server failed > 2006-12-26 02:27:26.835 Error rescheduling id -1 in > ScheduledRecording::signalChange > 2006-12-26 02:27:26.838 Connecting to backend server: 127.0.0.1:6543 (try 1 > of 5) > 2006-12-26 02:27:26.842 Using protocol version 30 > 2006-12-26 02:27:33.845 MythSocket(8129000:23): readStringList: Error, > timeout (quick). > 2006-12-26 02:27:33.846 MythSocket(8129000:-1): writeStringList: Error, > called with unconnected socket. > 2006-12-26 02:27:33.847 MythSocket(8129000:-1): readStringList: Error, > called with unconnected socket. > 2006-12-26 02:27:33.847 Connection to backend server lost > 2006-12-26 02:27:33.848 Connecting to backend server: 127.0.0.1:6543 (try 1 > of 5) > 2006-12-26 02:27:33.852 Using protocol version 30 > 2006-12-26 02:27:40.855 MythSocket(8129000:23): readStringList: Error, > timeout (quick). > 2006-12-26 02:27:40.856 MythSocket(8129000:-1): writeStringList: Error, > invalid string list. > 2006-12-26 02:27:40.856 MythSocket(8129000:-1): readStringList: Error, > called with unconnected socket. > 2006-12-26 02:27:40.857 Reconnection to backend server failed > 2006-12-26 02:27:40.866 mythfilldatabase run complete. > ICE default IO error handler doing an exit(), pid = 32935, errno = 32 > > > I'm using mysql 5.0 with this (also using mysql 5.0 on the amd64 machine): > root@kg-work# portversion -v | grep mysql > mysql-client-5.0.27 = up-to-date with port > mysql-server-5.0.27 = up-to-date with port > qt-mysql-plugin-3.3.5 = up-to-date with port > > are you people using the same version of mysql? Or are you using another > version? > Any hints welcome. i am using postgresql, but that won't work with stock-mythtv. i would'nt be surprised if the ReadStringList errors are caused by mythtv relying on usleep doing a context-switch. the "backend" is the mythtv-backend. patch mythcontext.h to undefine usleep: int mythsleep2(unsigned int microsec,char *file,int line); #undef usleep #define usleep(x) mythsleep2(x,__FILE__,__LINE__) and mythcontext.cpp: int mythsleep2(unsigned int microsec, char *file, int line) { fprintf(stderr,"sleep: %s : %d\n", file,line); /* sync(); */ QWaitCondition qw_sleep; /* pthread_yield(); geen RTC voor normale pthreads!!! */ qw_sleep.wait(microsec / 1000 + 1); } or any other yield you can think of. you might try different treading style as well. regards, usleep From owner-freebsd-multimedia@FreeBSD.ORG Tue Dec 26 15:11:39 2006 Return-Path: X-Original-To: freebsd-multimedia@freebsd.org Delivered-To: freebsd-multimedia@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 6D3FC16A407 for ; Tue, 26 Dec 2006 15:11:39 +0000 (UTC) (envelope-from usleepless@gmail.com) Received: from ug-out-1314.google.com (ug-out-1314.google.com [66.249.92.174]) by mx1.freebsd.org (Postfix) with ESMTP id D539713C46E for ; Tue, 26 Dec 2006 15:11:38 +0000 (UTC) (envelope-from usleepless@gmail.com) Received: by ug-out-1314.google.com with SMTP id o2so3167839uge for ; Tue, 26 Dec 2006 07:11:37 -0800 (PST) DomainKey-Signature: a=rsa-sha1; q=dns; c=nofws; s=beta; d=gmail.com; h=received:message-id:date:from:to:subject:cc:in-reply-to:mime-version:content-type:content-transfer-encoding:content-disposition:references; b=o0Y8zC45v6WuFZwk+18E6a+bQFhRPdoxin7ZYjHv/MarZrYBT/+XLnho5RE9OFmIbaqYMkGrBoQOMawqFHHwyy56HDTzqlUFCw1981a+rWxu/1L45GWgfz9LLYCiS2miH7SXvl5VGNvCLNkW+P7+seuQLc1lkEY/+qR4QJrnQf8= Received: by 10.78.180.18 with SMTP id c18mr2075252huf.1167145896850; Tue, 26 Dec 2006 07:11:36 -0800 (PST) Received: by 10.78.124.8 with HTTP; Tue, 26 Dec 2006 07:11:36 -0800 (PST) Message-ID: Date: Tue, 26 Dec 2006 16:11:36 +0100 From: usleepless@gmail.com To: "Josh Paetzel" In-Reply-To: <200612252112.16751.josh@tcbug.org> MIME-Version: 1.0 Content-Type: text/plain; charset=ISO-8859-1; format=flowed Content-Transfer-Encoding: 7bit Content-Disposition: inline References: <200612252112.16751.josh@tcbug.org> Cc: freebsd-multimedia@freebsd.org Subject: Re: Troubles with WinTV-PVR 150 X-BeenThere: freebsd-multimedia@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Multimedia discussions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 26 Dec 2006 15:11:39 -0000 Josh, List, On 12/26/06, Josh Paetzel wrote: > Been trying to make a WinTV-PVR 150 go with FBSD 6.1-R-p11 > > Here's what I've done and where I'm at: > > added to kernel: > > device iicbus > device iicbb > device smbus > > make patch-iicbb in /usr/ports/multimedia/pvrxxx/ > > recompile kernel and boot into it > > Unzip the three following files out of cd-analogue-pvr-pci-26.zip: > > HcwMakoB.ROM (20 apr 2005 size 14264) > HcwMakoC.ROM (9 feb 2006 size 16382) > hcwPVRP2.sys (14 sep 2005 size 824512) > > and rename HcwMakoC.ROM -> HcwMakoA.ROM > > Move stuff to /usr/ports/distfiles, hack pvrxxx port's distinfo to use > the correct files and sizes and so forth. > > edit work/modules/cxm/cxm/fbsd-compat.c > #thef.size = 14264; > thef.size = 16382; > > installed multimedia/pvrxxx > > kldload cxm_iic > kldload cxm > > In dmesg: > > cxm0: mem 0xdc000000-0xdfffffff irq 17 at > device 12.0 on > pci0 > cxm_iic0: on cxm0 > iicbb0: on cxm_iic0 > iicbus0: on iicbb0 master-only > tuner code 112 > cxm0: unknown tuner code 0x70 > tuner_type = -1 > cxm0: could not initialize tuner > iicbus0: detached > iicbb0: detached > cxm_iic0: detached > device_attach: cxm0 attach returned 6 > > edit cxm_eeprom.c and add > > case 0x70: > > recompile pvrxxx > > kldload cxm_iic and cxm again > > cxm0: mem 0xdc000000-0xdfffffff irq 17 at > device 12.0 on pci0 > cxm_iic0: on cxm0 > iicbb0: on cxm_iic0 > iicbus0: on iicbb0 master-only > tuner code 112 > tuner_type = 7 > cxm0: Philips FI1246 MK2 tuner > <2>cxm 0-0000: loaded /lib/modules/v4l-cx25840.fw firmware (14264 > bytes) > <2>cxm debug 0-0000: decoder set input (0) > <2>cxm debug 0-0000: now setting Tuner input > <2>cxm debug 0-0000: set audio input (0) > <2>cxm debug 0-0000: set audio input (0) > cxm0: Eeprom NTSC > <2>tda 0-0000: switching to v4l2 > <2>tda 0-0000: configure for: NTSC-M > <2>tda 0-0000: writing: b=0xd4 c=0x30 e=0x44 > could not start iic bus > probed 54 > probed 136 > probed 160 > probed 194 > probed 224 > probed 226 > probed 228 > probed 230 > <2>tda 0-0000: i2c i/o error: rc == 2 (should be 4) > read error > <2>tda 0-0000: i2c i/o error: rc == -215889125 (should be 1) > <2>tda 0-0000: read: 0x 0 > <2>tda 0-0000: after power on : no > <2>tda 0-0000: afc : - 12.5 kHz > <2>tda 0-0000: fmif level : low > <2>tda 0-0000: afc window : out > <2>tda 0-0000: vfi level : low > <2>cxm 0-0000: Video signal: not present > <2>cxm 0-0000: Detected format: NTSC-M > <2>cxm 0-0000: Detected audio mode: mono > <2>cxm 0-0000: Detected audio standard: BTSC > <2>cxm 0-0000: Audio muted: yes > <2>cxm 0-0000: Audio microcontroller: running > <2>cxm 0-0000: Configured audio standard: automatic detection > <2>cxm 0-0000: Configured audio system: BTSC > <2>cxm 0-0000: Specified standard: NTSC-M > <2>cxm 0-0000: Specified input: Tuner > <2>cxm 0-0000: Specified audio input: Tuner > <2>cxm 0-0000: Specified audioclock freq: 48 kHz > <2>cxm 0-0000: Preferred audio mode: stereo > cxm0: [GIANT-LOCKED] > cxm0: encoder firmware version 0x2050032 > > pvr250-setchannel 30 > ioctl( tfd, BT848_GAUDIO ) failed.: Device not configured > > mplayer /dev/cxm0 > static in window > > and spams to dmesg: > device cxm0 opened > cxm0: encoder dma not enough buffer space free > cxm0: encoder dma not already in progress > cxm0: encoder dma not enough buffer space free > cxm0: encoder dma not already in progress > cxm0: encoder dma not enough buffer space free > cxm0: encoder dma not already in progress > cxm0: encoder dma not enough buffer space free > endlessly > > Any hints on where to go from here? you did a lot of thing _right. that's good. i need to check wether your choice for the tuner-type is correct ( will do in a moment ). my guess is that the "encoder dma not enough buffer space free" msgs will be gone if you run "mplayer -cache 4000 /dev/cxm0". if that is the case, your only problem seems to be tuning to the channel. try something like "pvr250-setchannel -a on -t -m X ( your choice ) 425.34". and doublecheck your cable. regards, usleep PS: there is something dodgy about your tuner, i am gonna check it now. > > -- > Thanks, > > Josh Paetzel > From owner-freebsd-multimedia@FreeBSD.ORG Tue Dec 26 15:16:52 2006 Return-Path: X-Original-To: freebsd-multimedia@freebsd.org Delivered-To: freebsd-multimedia@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 796EA16A407 for ; Tue, 26 Dec 2006 15:16:52 +0000 (UTC) (envelope-from usleepless@gmail.com) Received: from wr-out-0506.google.com (wr-out-0506.google.com [64.233.184.239]) by mx1.freebsd.org (Postfix) with ESMTP id 1C1C613C481 for ; Tue, 26 Dec 2006 15:16:52 +0000 (UTC) (envelope-from usleepless@gmail.com) Received: by wr-out-0506.google.com with SMTP id 71so66859wri for ; Tue, 26 Dec 2006 07:16:51 -0800 (PST) DomainKey-Signature: a=rsa-sha1; q=dns; c=nofws; s=beta; d=gmail.com; h=received:message-id:date:from:to:subject:cc:in-reply-to:mime-version:content-type:content-transfer-encoding:content-disposition:references; b=fbFGxYOCt5uqyxSERBvbNOvB0NJsI/VMG4hWKXUOStSfUGbEh9NhMel6RG6cCfwhX3NbuTUP6n0NLYh5SnJizfMfHDGoFOuxKyso6jVxdfyF02mVsv8CsxD3amw/X7dU6+LzqX61CJJlrUQw1Pbaprpk1ms/oxFvca+2TNrEBxM= Received: by 10.78.181.13 with SMTP id d13mr2076350huf.1167146210890; Tue, 26 Dec 2006 07:16:50 -0800 (PST) Received: by 10.78.124.8 with HTTP; Tue, 26 Dec 2006 07:16:50 -0800 (PST) Message-ID: Date: Tue, 26 Dec 2006 16:16:50 +0100 From: usleepless@gmail.com To: "Josh Paetzel" In-Reply-To: <200612252112.16751.josh@tcbug.org> MIME-Version: 1.0 Content-Type: text/plain; charset=ISO-8859-1; format=flowed Content-Transfer-Encoding: 7bit Content-Disposition: inline References: <200612252112.16751.josh@tcbug.org> Cc: freebsd-multimedia@freebsd.org Subject: Re: Troubles with WinTV-PVR 150 X-BeenThere: freebsd-multimedia@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Multimedia discussions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 26 Dec 2006 15:16:52 -0000 Josh, On 12/26/06, Josh Paetzel wrote: > Been trying to make a WinTV-PVR 150 go with FBSD 6.1-R-p11 > > Here's what I've done and where I'm at: > > added to kernel: > > device iicbus > device iicbb > device smbus > > make patch-iicbb in /usr/ports/multimedia/pvrxxx/ > > recompile kernel and boot into it > > Unzip the three following files out of cd-analogue-pvr-pci-26.zip: > > HcwMakoB.ROM (20 apr 2005 size 14264) > HcwMakoC.ROM (9 feb 2006 size 16382) > hcwPVRP2.sys (14 sep 2005 size 824512) > > and rename HcwMakoC.ROM -> HcwMakoA.ROM > > Move stuff to /usr/ports/distfiles, hack pvrxxx port's distinfo to use > the correct files and sizes and so forth. > > edit work/modules/cxm/cxm/fbsd-compat.c > #thef.size = 14264; > thef.size = 16382; > > installed multimedia/pvrxxx > > kldload cxm_iic > kldload cxm > > In dmesg: > > cxm0: mem 0xdc000000-0xdfffffff irq 17 at > device 12.0 on > pci0 > cxm_iic0: on cxm0 > iicbb0: on cxm_iic0 > iicbus0: on iicbb0 master-only > tuner code 112 > cxm0: unknown tuner code 0x70 > tuner_type = -1 > cxm0: could not initialize tuner > iicbus0: detached > iicbb0: detached > cxm_iic0: detached > device_attach: cxm0 attach returned 6 > > edit cxm_eeprom.c and add > > case 0x70: in which case statement did you add it? if i check ivtv's ( linuxs ) tveeprom.c, your tuner is a TUNER_TCL_2002N type of thing. regards, usleep > > recompile pvrxxx > > kldload cxm_iic and cxm again > > cxm0: mem 0xdc000000-0xdfffffff irq 17 at > device 12.0 on pci0 > cxm_iic0: on cxm0 > iicbb0: on cxm_iic0 > iicbus0: on iicbb0 master-only > tuner code 112 > tuner_type = 7 > cxm0: Philips FI1246 MK2 tuner > <2>cxm 0-0000: loaded /lib/modules/v4l-cx25840.fw firmware (14264 > bytes) > <2>cxm debug 0-0000: decoder set input (0) > <2>cxm debug 0-0000: now setting Tuner input > <2>cxm debug 0-0000: set audio input (0) > <2>cxm debug 0-0000: set audio input (0) > cxm0: Eeprom NTSC > <2>tda 0-0000: switching to v4l2 > <2>tda 0-0000: configure for: NTSC-M > <2>tda 0-0000: writing: b=0xd4 c=0x30 e=0x44 > could not start iic bus > probed 54 > probed 136 > probed 160 > probed 194 > probed 224 > probed 226 > probed 228 > probed 230 > <2>tda 0-0000: i2c i/o error: rc == 2 (should be 4) > read error > <2>tda 0-0000: i2c i/o error: rc == -215889125 (should be 1) > <2>tda 0-0000: read: 0x 0 > <2>tda 0-0000: after power on : no > <2>tda 0-0000: afc : - 12.5 kHz > <2>tda 0-0000: fmif level : low > <2>tda 0-0000: afc window : out > <2>tda 0-0000: vfi level : low > <2>cxm 0-0000: Video signal: not present > <2>cxm 0-0000: Detected format: NTSC-M > <2>cxm 0-0000: Detected audio mode: mono > <2>cxm 0-0000: Detected audio standard: BTSC > <2>cxm 0-0000: Audio muted: yes > <2>cxm 0-0000: Audio microcontroller: running > <2>cxm 0-0000: Configured audio standard: automatic detection > <2>cxm 0-0000: Configured audio system: BTSC > <2>cxm 0-0000: Specified standard: NTSC-M > <2>cxm 0-0000: Specified input: Tuner > <2>cxm 0-0000: Specified audio input: Tuner > <2>cxm 0-0000: Specified audioclock freq: 48 kHz > <2>cxm 0-0000: Preferred audio mode: stereo > cxm0: [GIANT-LOCKED] > cxm0: encoder firmware version 0x2050032 > > pvr250-setchannel 30 > ioctl( tfd, BT848_GAUDIO ) failed.: Device not configured > > mplayer /dev/cxm0 > static in window > > and spams to dmesg: > device cxm0 opened > cxm0: encoder dma not enough buffer space free > cxm0: encoder dma not already in progress > cxm0: encoder dma not enough buffer space free > cxm0: encoder dma not already in progress > cxm0: encoder dma not enough buffer space free > cxm0: encoder dma not already in progress > cxm0: encoder dma not enough buffer space free > endlessly > > Any hints on where to go from here? > > -- > Thanks, > > Josh Paetzel > From owner-freebsd-multimedia@FreeBSD.ORG Tue Dec 26 16:55:52 2006 Return-Path: X-Original-To: freebsd-multimedia@freebsd.org Delivered-To: freebsd-multimedia@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id A189D16A407 for ; Tue, 26 Dec 2006 16:55:52 +0000 (UTC) (envelope-from torfinn.ingolfsen@broadpark.no) Received: from osl1smout1.broadpark.no (osl1smout1.broadpark.no [80.202.4.58]) by mx1.freebsd.org (Postfix) with ESMTP id 5A82713C47A for ; Tue, 26 Dec 2006 16:55:52 +0000 (UTC) (envelope-from torfinn.ingolfsen@broadpark.no) Received: from osl1sminn1.broadpark.no ([80.202.4.59]) by osl1smout1.broadpark.no (Sun Java System Messaging Server 6.1 HotFix 0.05 (built Oct 21 2004)) with ESMTP id <0JAW00KM14D3RM70@osl1smout1.broadpark.no> for freebsd-multimedia@freebsd.org; Tue, 26 Dec 2006 17:55:51 +0100 (CET) Received: from kg-work.kg4.no ([80.203.66.169]) by osl1sminn1.broadpark.no (Sun Java System Messaging Server 6.1 HotFix 0.05 (built Oct 21 2004)) with SMTP id <0JAW0036C4D3TWV0@osl1sminn1.broadpark.no> for freebsd-multimedia@freebsd.org; Tue, 26 Dec 2006 17:55:51 +0100 (CET) Date: Tue, 26 Dec 2006 17:55:51 +0100 From: Torfinn Ingolfsen X-Face: "t9w2,-X@O^I`jVW\sonI3.,36KBLZE*AL[y9lL[PyFD*r_S:dIL9c[8Y>V42R0"!"yb_zN,f#%.[PYYNq; m"_0v; ~rUM2Yy!zmkh)3&U|u!=T(zyv,MHJv"nDH>OJ`t(@mil461d_B'Uo|'nMwlKe0Mv=kvV?Nh@>Hb<3s_z2jYgZhPb@?Wi^x1a~Hplz1.zH In-reply-to: To: freebsd-multimedia@freebsd.org Message-id: <20061226175551.503d11f1.torfinn.ingolfsen@broadpark.no> MIME-version: 1.0 X-Mailer: Sylpheed version 2.2.10 (GTK+ 2.10.6; i386-portbld-freebsd6.2) Content-type: multipart/mixed; boundary="Boundary_(ID_RbE4Nrtj6pJfIYzRWj/kdA)" References: <20061224230155.fc0a6c6a.torfinn.ingolfsen@broadpark.no> <20061225000044.6670e21f.torfinn.ingolfsen@broadpark.no> <20061226013441.9dc242e3.torfinn.ingolfsen@broadpark.no> <20061226023552.7b4ef0c8.torfinn.ingolfsen@broadpark.no> X-Content-Filtered-By: Mailman/MimeDel 2.1.5 Subject: Re: MythTV port - status report X-BeenThere: freebsd-multimedia@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Multimedia discussions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 26 Dec 2006 16:55:52 -0000 This is a multi-part message in MIME format. --Boundary_(ID_RbE4Nrtj6pJfIYzRWj/kdA) Content-type: text/plain; charset=US-ASCII Content-transfer-encoding: 7BIT On Tue, 26 Dec 2006 16:01:47 +0100 usleepless@gmail.com wrote: > Torfinn, Thanks for helping out. > i would'nt be surprised if the ReadStringList errors are caused by > mythtv relying on usleep doing a context-switch. the "backend" is the > mythtv-backend. Ugh, that's bad. Really bad. > patch mythcontext.h to undefine usleep: And these patches can go anywhere in the file(s)? As long as they are not in another context (like #if #else #endif for example) of course. I took the patches verbatim from you mail (see attached files) but my first try was not very successful: cd libmyth && make -f Makefile g++ -c -pipe -I/usr/local/include/artsc -D_REENTRANT -I/usr/local/include/glib-2.0 -I/usr/local/lib/glib-2.0/include -g -Wall -W -O3 -pthread -Wall -Wno-switch -fomit-frame-pointer -DPIC -fPIC -DUSING_FREEBOX -D_GNU_SOURCE -D_FILE_OFFSET_BITS=64 -DPREFIX=\"/usr/local\" -DLIBDIR=\"/usr/local/lib\" -DUSING_OSS -DUSE_ARTS -DUSING_XRANDR -DQT_NO_DEBUG -DQT_THREAD_SUPPORT -DQT_SHARED -DQT_TABLET_SUPPORT -I/usr/local/share/qt/mkspecs/freebsd-g++ -I. -I../../../../../../../local/include -I../../../../../../../X11R6/include -I../libmythsamplerate -I../libmythsoundtouch -I../.. -I.. -I../../../../../../../local/include -I/usr/X11R6/include -o lcddevice.o lcddevice.cpp In file included from mythdialogs.h:15, from lcddevice.cpp:12: ../../../../../../../X11R6/include/qthread.h:113: error: expected identifier before string constant ../../../../../../../X11R6/include/qthread.h:113: error: expected `,' or `...' before string constant ../../../../../../../X11R6/include/qthread.h:113: error: ISO C++ forbids declaration of `parameter' with no type *** Error code 1 Stop in /usr/ports/multimedia/mythtv/work/mythtv-0.20/libs/libmyth. *** Error code 1 Stop in /usr/ports/multimedia/mythtv/work/mythtv-0.20/libs. *** Error code 1 Stop in /usr/ports/multimedia/mythtv/work/mythtv-0.20. *** Error code 1 Stop in /usr/ports/multimedia/mythtv. I will have to look closer at that, perhaps I made a mistake when implementing the patches. > you might try different treading style as well. What? sorry, but I'm not very experienced with this sort of thing. How do I change "threading style"? -- Regards, Torfinn --Boundary_(ID_RbE4Nrtj6pJfIYzRWj/kdA)-- From owner-freebsd-multimedia@FreeBSD.ORG Wed Dec 27 03:52:10 2006 Return-Path: X-Original-To: freebsd-multimedia@freebsd.org Delivered-To: freebsd-multimedia@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 1AF0316A403 for ; Wed, 27 Dec 2006 03:52:10 +0000 (UTC) (envelope-from redchin@gmail.com) Received: from nf-out-0910.google.com (nf-out-0910.google.com [64.233.182.189]) by mx1.freebsd.org (Postfix) with ESMTP id 998B313C466 for ; Wed, 27 Dec 2006 03:52:09 +0000 (UTC) (envelope-from redchin@gmail.com) Received: by nf-out-0910.google.com with SMTP id x37so4695184nfc for ; Tue, 26 Dec 2006 19:52:08 -0800 (PST) DomainKey-Signature: a=rsa-sha1; q=dns; c=nofws; s=beta; d=gmail.com; h=received:message-id:date:from:to:subject:cc:in-reply-to:mime-version:content-type:references; b=dpLAGQBLtxvwpJetB9qGKru+s10XOy7GS+zZiyAfK1zKguxqXtk4ISd7SHcpqiv0HXkt8b/z5LZhFz+9ohCWxLAX7+09X2JH1vIotfq2NfaNK4E3tyY19FJtDeQrhM6PwNWdyA8cU0ALhxVS9wptfPe9KoEfDEO4GyJd+Niafyc= Received: by 10.82.183.19 with SMTP id g19mr383525buf.1167191528404; Tue, 26 Dec 2006 19:52:08 -0800 (PST) Received: by 10.82.113.20 with HTTP; Tue, 26 Dec 2006 19:52:08 -0800 (PST) Message-ID: <1d3ed48c0612261952u5e6b91cy4831f251c7d88163@mail.gmail.com> Date: Tue, 26 Dec 2006 19:52:08 -0800 From: "Kevin Downey" To: pyunyh@gmail.com In-Reply-To: <20061226074043.GD994@cdnetworks.co.kr> MIME-Version: 1.0 Content-Type: multipart/mixed; boundary="----=_Part_81842_15593737.1167191528367" References: <1d3ed48c0612252025mb702d9sd1ff939ba9e87efe@mail.gmail.com> <20061226074043.GD994@cdnetworks.co.kr> Cc: freebsd-multimedia@freebsd.org Subject: Re: snd_solo does it work? X-BeenThere: freebsd-multimedia@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Multimedia discussions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 27 Dec 2006 03:52:10 -0000 ------=_Part_81842_15593737.1167191528367 Content-Type: text/plain; charset=UTF-8; format=flowed Content-Transfer-Encoding: 7bit Content-Disposition: inline On 12/25/06, Pyun YongHyeon wrote: > On Mon, Dec 25, 2006 at 08:25:58PM -0800, Kevin Downey wrote: > > I have an old i-series (made by acer) thinkpad. > > %cat /dev/sndstat > > FreeBSD Audio Driver (newpcm) > > Installed devices: > > pcm0: at io 0x7000,0x7080,0x70c0 irq 5 kld > > snd_solo (1p/1r/0v channels duplex default) > > % > > but no sound. snd_solo is the only drive that gives me this and it is the > > one that sticks if I kldload snd_driver.ko > > > > I am not sure as to its exact sound chip, since it is a japanese model and > > I could not really find anything with matching specs on what I do know on > > thinkwiki. I had sound working about a year and a half ago but of course I > > blew that install away along with all its configs. this thread suggest > > there was some problem with the snd_solo driver: > > http://lists.freebsd.org/pipermail/freebsd-multimedia/2006-January/003425.html > > The links to the patch files no longer work. > > > > Is there any more current information on the status of snd_solo? > > > > Maybe Ariff and other interesting developers want to know more > details for your hardware. > Please post dmesg ouput generated with bootverbose option. > What's your FreeBSD version? Did CURRENT also show the same issue? > > -- > Regards, > Pyun YongHyeon > I was sort of hoping for a "yes it does" or "no it doesn't" from other people who use the snd_solo driver, but here: $ uname -a FreeBSD koebeest.nexus.lan 6.2-PRERELEASE FreeBSD 6.2-PRERELEASE #0: Mon Dec 25 11:48:50 PST 2006 kpd@koebeest.nexus.lan:/usr/obj/usr/src/sys/GENERIC i386 $ I set boot_verbose="YES" in /boot/loader.conf in the hopes that this is the way to get a verbose boot without having to be at the console. I will attach the dmesg in the hopes that gmail/mailman/whatever else it goes through doesn't stip it. I have not tried -CURRENT. -- The biggest problem with communication is the illusion that it has occurred. ------=_Part_81842_15593737.1167191528367 Content-Type: text/plain; name=dmesg.koebeest.txt; charset=ANSI_X3.4-1968 Content-Transfer-Encoding: base64 X-Attachment-Id: f_ew77mjoa Content-Disposition: attachment; filename="dmesg.koebeest.txt" Q29weXJpZ2h0IChjKSAxOTkyLTIwMDYgVGhlIEZyZWVCU0QgUHJvamVjdC4KQ29weXJpZ2h0IChj KSAxOTc5LCAxOTgwLCAxOTgzLCAxOTg2LCAxOTg4LCAxOTg5LCAxOTkxLCAxOTkyLCAxOTkzLCAx OTk0CglUaGUgUmVnZW50cyBvZiB0aGUgVW5pdmVyc2l0eSBvZiBDYWxpZm9ybmlhLiBBbGwgcmln aHRzIHJlc2VydmVkLgpGcmVlQlNEIGlzIGEgcmVnaXN0ZXJlZCB0cmFkZW1hcmsgb2YgVGhlIEZy ZWVCU0QgRm91bmRhdGlvbi4KRnJlZUJTRCA2LjItUFJFUkVMRUFTRSAjMDogTW9uIERlYyAyNSAx MTo0ODo1MCBQU1QgMjAwNgogICAga3BkQGtvZWJlZXN0Lm5leHVzLmxhbjovdXNyL29iai91c3Iv c3JjL3N5cy9HRU5FUklDClRpbWVjb3VudGVyICJpODI1NCIgZnJlcXVlbmN5IDExOTMxODIgSHog cXVhbGl0eSAwCkNQVTogSW50ZWwgQ2VsZXJvbiAoNDk4Ljk3LU1IeiA2ODYtY2xhc3MgQ1BVKQog IE9yaWdpbiA9ICJHZW51aW5lSW50ZWwiICBJZCA9IDB4NjgxICBTdGVwcGluZyA9IDEKICBGZWF0 dXJlcz0weDM4M2Y5ZmY8RlBVLFZNRSxERSxQU0UsVFNDLE1TUixQQUUsTUNFLENYOCxTRVAsTVRS UixQR0UsTUNBLENNT1YsUEFULFBTRTM2LE1NWCxGWFNSLFNTRT4KcmVhbCBtZW1vcnkgID0gNjcw NDMzMjggKDYzIE1CKQphdmFpbCBtZW1vcnkgPSA1NjAwODcwNCAoNTMgTUIpCmtiZDEgYXQga2Jk bXV4MAphdGhfaGFsOiAwLjkuMTcuMiAoQVI1MjEwLCBBUjUyMTEsIEFSNTIxMiwgUkY1MTExLCBS RjUxMTIsIFJGMjQxMywgUkY1NDEzKQphY3BpMDogPElCTSBOQUdBTk8+IG9uIG1vdGhlcmJvYXJk CmFjcGkwOiBQb3dlciBCdXR0b24gKGZpeGVkKQpUaW1lY291bnRlciAiQUNQSS1zYWZlIiBmcmVx dWVuY3kgMzU3OTU0NSBIeiBxdWFsaXR5IDEwMDAKYWNwaV90aW1lcjA6IDwyNC1iaXQgdGltZXIg YXQgMy41Nzk1NDVNSHo+IHBvcnQgMHhmMDA4LTB4ZjAwYiBvbiBhY3BpMAphY3BpX2VjMDogPEVt YmVkZGVkIENvbnRyb2xsZXI6IEdQRSAweDk+IHBvcnQgMHg2MiwweDY2IG9uIGFjcGkwCmNwdTA6 IDxBQ1BJIENQVT4gb24gYWNwaTAKYWNwaV9idXR0b24wOiA8U2xlZXAgQnV0dG9uPiBvbiBhY3Bp MApwY2liMDogPEFDUEkgSG9zdC1QQ0kgYnJpZGdlPiBwb3J0IDB4Y2Y4LTB4Y2ZmIG9uIGFjcGkw CnBjaTA6IDxBQ1BJIFBDSSBidXM+IG9uIHBjaWIwCmFncDA6IDxJbnRlbCA4MjQ0M0JYICg0NDAg QlgpIGhvc3QgdG8gUENJIGJyaWRnZT4gbWVtIDB4ZTAwMDAwMDAtMHhlM2ZmZmZmZiBhdCBkZXZp Y2UgMC4wIG9uIHBjaTAKcGNpYjE6IDxQQ0ktUENJIGJyaWRnZT4gYXQgZGV2aWNlIDEuMCBvbiBw Y2kwCnBjaTE6IDxQQ0kgYnVzPiBvbiBwY2liMQpwY2kxOiA8ZGlzcGxheSwgVkdBPiBhdCBkZXZp Y2UgMC4wIChubyBkcml2ZXIgYXR0YWNoZWQpCmlzYWIwOiA8UENJLUlTQSBicmlkZ2U+IGF0IGRl dmljZSAyLjAgb24gcGNpMAppc2EwOiA8SVNBIGJ1cz4gb24gaXNhYjAKYXRhcGNpMDogPEludGVs IFBJSVg0IFVETUEzMyBjb250cm9sbGVyPiBwb3J0IDB4MWYwLTB4MWY3LDB4M2Y2LDB4MTcwLTB4 MTc3LDB4Mzc2LDB4OTA0MC0weDkwNGYgYXQgZGV2aWNlIDIuMSBvbiBwY2kwCmF0YTA6IDxBVEEg Y2hhbm5lbCAwPiBvbiBhdGFwY2kwCmF0YTE6IDxBVEEgY2hhbm5lbCAxPiBvbiBhdGFwY2kwCnVo Y2kwOiA8SW50ZWwgODIzNzFBQi9FQiAoUElJWDQpIFVTQiBjb250cm9sbGVyPiBwb3J0IDB4OTAw MC0weDkwMWYgaXJxIDExIGF0IGRldmljZSAyLjIgb24gcGNpMAp1aGNpMDogW0dJQU5ULUxPQ0tF RF0KdXNiMDogPEludGVsIDgyMzcxQUIvRUIgKFBJSVg0KSBVU0IgY29udHJvbGxlcj4gb24gdWhj aTAKdXNiMDogVVNCIHJldmlzaW9uIDEuMAp1aHViMDogSW50ZWwgVUhDSSByb290IGh1YiwgY2xh c3MgOS8wLCByZXYgMS4wMC8xLjAwLCBhZGRyIDEKdWh1YjA6IDIgcG9ydHMgd2l0aCAyIHJlbW92 YWJsZSwgc2VsZiBwb3dlcmVkCnBjaTA6IDxicmlkZ2U+IGF0IGRldmljZSAyLjMgKG5vIGRyaXZl ciBhdHRhY2hlZCkKcGNpMDogPHNpbXBsZSBjb21tcz4gYXQgZGV2aWNlIDYuMCAobm8gZHJpdmVy IGF0dGFjaGVkKQpwY20wOiA8RVNTIFNvbG8tMSAodW5rbm93biB2ZW5kb3IpPiBwb3J0IDB4NzAw MC0weDcwM2YsMHg3MDgwLTB4NzA4ZiwweDcwYzAtMHg3MGNmLDB4NzQwMC0weDc0MDMsMHg3NDQw LTB4NzQ0MyBpcnEgNSBhdCBkZXZpY2UgOC4wIG9uIHBjaTAKY2JiMDogPFRJMTQxMCBQQ0ktQ2Fy ZEJ1cyBCcmlkZ2U+IGlycSAxMSBhdCBkZXZpY2UgOS4wIG9uIHBjaTAKY2FyZGJ1czA6IDxDYXJk QnVzIGJ1cz4gb24gY2JiMApwY2NhcmQwOiA8MTYtYml0IFBDQ2FyZCBidXM+IG9uIGNiYjAKYWNw aV9saWQwOiA8Q29udHJvbCBNZXRob2QgTGlkIFN3aXRjaD4gb24gYWNwaTAKYWNwaV9hY2FkMDog PEFDIEFkYXB0ZXI+IG9uIGFjcGkwCmJhdHRlcnkwOiA8QUNQSSBDb250cm9sIE1ldGhvZCBCYXR0 ZXJ5PiBvbiBhY3BpMAphY3BpX3R6MDogPFRoZXJtYWwgWm9uZT4gb24gYWNwaTAKYXRrYmRjMDog PEtleWJvYXJkIGNvbnRyb2xsZXIgKGk4MDQyKT4gcG9ydCAweDYwLDB4NjQgaXJxIDEgb24gYWNw aTAKYXRrYmQwOiA8QVQgS2V5Ym9hcmQ+IGlycSAxIG9uIGF0a2JkYzAKa2JkMCBhdCBhdGtiZDAK YXRrYmQwOiBbR0lBTlQtTE9DS0VEXQpmZGMwOiA8ZmxvcHB5IGRyaXZlIGNvbnRyb2xsZXI+IHBv cnQgMHgzZjAtMHgzZjUsMHgzZjcgaXJxIDYgZHJxIDIgb24gYWNwaTAKZmRjMDogW0ZBU1RdCmZk MDogPDE0NDAtS0IgMy41IiBkcml2ZT4gb24gZmRjMCBkcml2ZSAwCnBwYzA6IDxFQ1AgcGFyYWxs ZWwgcHJpbnRlciBwb3J0PiBwb3J0IDB4Mzc4LTB4MzdiLDB4Nzc4LTB4NzdiIGlycSA3IGRycSAx IG9uIGFjcGkwCnBwYzA6IEdlbmVyaWMgY2hpcHNldCAoTklCQkxFLW9ubHkpIGluIENPTVBBVElC TEUgbW9kZQpwcGJ1czA6IDxQYXJhbGxlbCBwb3J0IGJ1cz4gb24gcHBjMApwbGlwMDogPFBMSVAg bmV0d29yayBpbnRlcmZhY2U+IG9uIHBwYnVzMApscHQwOiA8UHJpbnRlcj4gb24gcHBidXMwCmxw dDA6IEludGVycnVwdC1kcml2ZW4gcG9ydApwcGkwOiA8UGFyYWxsZWwgSS9PPiBvbiBwcGJ1czAK c2lvMDogPDE2NTUwQS1jb21wYXRpYmxlIENPTSBwb3J0PiBwb3J0IDB4M2Y4LTB4M2ZmIGlycSA0 IGZsYWdzIDB4MTAgb24gYWNwaTAKc2lvMDogdHlwZSAxNjU1MEEKcHNtMDogPFBTLzIgTW91c2U+ IGlycSAxMiBvbiBhdGtiZGMwCnBzbTA6IFtHSUFOVC1MT0NLRURdCnBzbTA6IG1vZGVsIEdlbmVy aWMgUFMvMiBtb3VzZSwgZGV2aWNlIElEIDAKcG10aW1lcjAgb24gaXNhMApvcm0wOiA8SVNBIE9w dGlvbiBST00+IGF0IGlvbWVtIDB4YzAwMDAtMHhjZmZmZiBvbiBpc2EwCnNjMDogPFN5c3RlbSBj b25zb2xlPiBhdCBmbGFncyAweDEwMCBvbiBpc2EwCnNjMDogVkdBIDwxNiB2aXJ0dWFsIGNvbnNv bGVzLCBmbGFncz0weDMwMD4Kc2lvMTogY29uZmlndXJlZCBpcnEgMyBub3QgaW4gYml0bWFwIG9m IHByb2JlZCBpcnFzIDAKc2lvMTogcG9ydCBtYXkgbm90IGJlIGVuYWJsZWQKdmdhMDogPEdlbmVy aWMgSVNBIFZHQT4gYXQgcG9ydCAweDNjMC0weDNkZiBpb21lbSAweGEwMDAwLTB4YmZmZmYgb24g aXNhMApUaW1lY291bnRlciAiVFNDIiBmcmVxdWVuY3kgNDk4OTY5MjYwIEh6IHF1YWxpdHkgODAw ClRpbWVjb3VudGVycyB0aWNrIGV2ZXJ5IDEuMDAwIG1zZWMKd2kwOiA8VGhlIExpbmtzeXMgR3Jv dXAsIEluYy4gSW5zdGFudCBXaXJlbGVzcyBOZXR3b3JrIFBDIENhcmQ+IGF0IHBvcnQgMHgxMDAt MHgxM2YgaXJxIDExIGZ1bmN0aW9uIDAgY29uZmlnIDEgb24gcGNjYXJkMAp3aTA6IHVzaW5nIFJG OlBSSVNNMyhQQ01DSUEpCndpMDogSW50ZXJzaWwgRmlybXdhcmU6IFByaW1hcnkgKDEuMS4wKSwg U3RhdGlvbiAoMS40LjIpCndpMDogRXRoZXJuZXQgYWRkcmVzczogMDA6MDY6MjU6YWI6ZjI6YjgK YWQwOiA1NzI5TUIgPElCTSBEQVJBLTIwNjAwMCBBUjJPQTUxQT4gYXQgYXRhMC1tYXN0ZXIgVURN QTMzCmFjZDA6IENEUk9NIDxDRC0yMjRFLzEuNkE+IGF0IGF0YTEtbWFzdGVyIFVETUEzMwpUcnlp bmcgdG8gbW91bnQgcm9vdCBmcm9tIHVmczovZGV2L2FkMHMxYQo= ------=_Part_81842_15593737.1167191528367-- From owner-freebsd-multimedia@FreeBSD.ORG Wed Dec 27 04:30:33 2006 Return-Path: X-Original-To: freebsd-multimedia@freebsd.org Delivered-To: freebsd-multimedia@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id C2ADC16A412 for ; Wed, 27 Dec 2006 04:30:33 +0000 (UTC) (envelope-from pyunyh@gmail.com) Received: from wx-out-0506.google.com (wx-out-0506.google.com [66.249.82.228]) by mx1.freebsd.org (Postfix) with ESMTP id 7F80013C463 for ; Wed, 27 Dec 2006 04:30:33 +0000 (UTC) (envelope-from pyunyh@gmail.com) Received: by wx-out-0506.google.com with SMTP id s18so3900637wxc for ; Tue, 26 Dec 2006 20:30:32 -0800 (PST) DomainKey-Signature: a=rsa-sha1; q=dns; c=nofws; s=beta; d=gmail.com; h=received:date:from:to:cc:subject:message-id:reply-to:references:mime-version:content-type:content-disposition:in-reply-to:user-agent; b=I+dIoKmOIoLZ+cMrIJGoTsKkhIIPXvCwRydZ3VO/12YVZlYTid7OPipI/CidYc3p22tYVboYkpm6JWmPZFtm/NqB36Exet7qXi6h3JeWaNljuG34oCPP4Sjw/0JyySTq+PWukdGVgjJyppqEHgbQcJze1huURHww8n+iqt7LbV8= Received: by 10.70.80.6 with SMTP id d6mr24803913wxb.1167193832210; Tue, 26 Dec 2006 20:30:32 -0800 (PST) Received: from michelle.cdnetworks.co.kr ( [211.53.35.84]) by mx.google.com with ESMTP id 25sm21830408wra.2006.12.26.20.30.30; Tue, 26 Dec 2006 20:30:31 -0800 (PST) Received: from michelle.cdnetworks.co.kr (localhost.cdnetworks.co.kr [127.0.0.1]) by michelle.cdnetworks.co.kr (8.13.5/8.13.5) with ESMTP id kBR4SubA006354 (version=TLSv1/SSLv3 cipher=DHE-RSA-AES256-SHA bits=256 verify=NO); Wed, 27 Dec 2006 13:28:56 +0900 (KST) (envelope-from pyunyh@gmail.com) Received: (from yongari@localhost) by michelle.cdnetworks.co.kr (8.13.5/8.13.5/Submit) id kBR4SuFf006353; Wed, 27 Dec 2006 13:28:56 +0900 (KST) (envelope-from pyunyh@gmail.com) Date: Wed, 27 Dec 2006 13:28:56 +0900 From: Pyun YongHyeon To: Kevin Downey Message-ID: <20061227042856.GB5551@cdnetworks.co.kr> References: <1d3ed48c0612252025mb702d9sd1ff939ba9e87efe@mail.gmail.com> <20061226074043.GD994@cdnetworks.co.kr> <1d3ed48c0612261952u5e6b91cy4831f251c7d88163@mail.gmail.com> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <1d3ed48c0612261952u5e6b91cy4831f251c7d88163@mail.gmail.com> User-Agent: Mutt/1.4.2.1i Cc: freebsd-multimedia@freebsd.org Subject: Re: snd_solo does it work? X-BeenThere: freebsd-multimedia@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list Reply-To: pyunyh@gmail.com List-Id: Multimedia discussions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 27 Dec 2006 04:30:33 -0000 On Tue, Dec 26, 2006 at 07:52:08PM -0800, Kevin Downey wrote: > On 12/25/06, Pyun YongHyeon wrote: > >On Mon, Dec 25, 2006 at 08:25:58PM -0800, Kevin Downey wrote: > > > I have an old i-series (made by acer) thinkpad. > > > %cat /dev/sndstat > > > FreeBSD Audio Driver (newpcm) > > > Installed devices: > > > pcm0: at io 0x7000,0x7080,0x70c0 irq 5 kld > > > snd_solo (1p/1r/0v channels duplex default) > > > % > > > but no sound. snd_solo is the only drive that gives me this and it is > > the > > > one that sticks if I kldload snd_driver.ko > > > > > > I am not sure as to its exact sound chip, since it is a japanese model > > and > > > I could not really find anything with matching specs on what I do know > > on > > > thinkwiki. I had sound working about a year and a half ago but of > > course I > > > blew that install away along with all its configs. this thread suggest > > > there was some problem with the snd_solo driver: > > > > > http://lists.freebsd.org/pipermail/freebsd-multimedia/2006-January/003425.html > > > The links to the patch files no longer work. > > > > > > Is there any more current information on the status of snd_solo? > > > > > > >Maybe Ariff and other interesting developers want to know more > >details for your hardware. > >Please post dmesg ouput generated with bootverbose option. > >What's your FreeBSD version? Did CURRENT also show the same issue? > > > >-- > >Regards, > >Pyun YongHyeon > > > I was sort of hoping for a "yes it does" or "no it doesn't" from other Last time I tried it worked well. > people who use the snd_solo driver, but here: > $ uname -a > FreeBSD koebeest.nexus.lan 6.2-PRERELEASE FreeBSD 6.2-PRERELEASE #0: > Mon Dec 25 11:48:50 PST 2006 > kpd@koebeest.nexus.lan:/usr/obj/usr/src/sys/GENERIC i386 > $ > > I set boot_verbose="YES" in /boot/loader.conf in the hopes that this > is the way to get a verbose boot without having to be at the console. > I will attach the dmesg in the hopes that gmail/mailman/whatever else > it goes through doesn't stip it. > I have not tried -CURRENT. > How about booting without ACPI? -- Regards, Pyun YongHyeon From owner-freebsd-multimedia@FreeBSD.ORG Wed Dec 27 04:45:27 2006 Return-Path: X-Original-To: freebsd-multimedia@freebsd.org Delivered-To: freebsd-multimedia@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 7FC9616A407 for ; Wed, 27 Dec 2006 04:45:27 +0000 (UTC) (envelope-from redchin@gmail.com) Received: from nf-out-0910.google.com (nf-out-0910.google.com [64.233.182.188]) by mx1.freebsd.org (Postfix) with ESMTP id 1CCD813C474 for ; Wed, 27 Dec 2006 04:45:26 +0000 (UTC) (envelope-from redchin@gmail.com) Received: by nf-out-0910.google.com with SMTP id x37so4706943nfc for ; Tue, 26 Dec 2006 20:45:26 -0800 (PST) DomainKey-Signature: a=rsa-sha1; q=dns; c=nofws; s=beta; d=gmail.com; h=received:message-id:date:from:to:subject:cc:in-reply-to:mime-version:content-type:content-transfer-encoding:content-disposition:references; b=VNC/P2c2ILCcw5if/o6O5Xc5biYZ1++SzZzpL8AUueeSgwRGKfnlI5u9/6EZKPAC/5ef1nMwPlRNtrDoRya3PQMlJVva59t2sLHq0fAqMJ89bLGep4z3Nn1RWlABQOb2v/YoJHFbV/5gjEH5kpjChJMqYtb6A+c8OgcilBfDeJA= Received: by 10.82.169.4 with SMTP id r4mr673869bue.1167194725939; Tue, 26 Dec 2006 20:45:25 -0800 (PST) Received: by 10.82.113.20 with HTTP; Tue, 26 Dec 2006 20:45:25 -0800 (PST) Message-ID: <1d3ed48c0612262045l4a3f5b7oc1bf3364e4218fd4@mail.gmail.com> Date: Tue, 26 Dec 2006 20:45:25 -0800 From: "Kevin Downey" To: pyunyh@gmail.com In-Reply-To: <20061227042856.GB5551@cdnetworks.co.kr> MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8; format=flowed Content-Transfer-Encoding: 7bit Content-Disposition: inline References: <1d3ed48c0612252025mb702d9sd1ff939ba9e87efe@mail.gmail.com> <20061226074043.GD994@cdnetworks.co.kr> <1d3ed48c0612261952u5e6b91cy4831f251c7d88163@mail.gmail.com> <20061227042856.GB5551@cdnetworks.co.kr> Cc: freebsd-multimedia@freebsd.org Subject: Re: snd_solo does it work? X-BeenThere: freebsd-multimedia@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Multimedia discussions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 27 Dec 2006 04:45:27 -0000 I feel like such an idiot. This laptop had an external volume knob. Sorry for spaming the list. -- The biggest problem with communication is the illusion that it has occurred. From owner-freebsd-multimedia@FreeBSD.ORG Wed Dec 27 14:32:15 2006 Return-Path: X-Original-To: freebsd-multimedia@freebsd.org Delivered-To: freebsd-multimedia@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 8294516A407 for ; Wed, 27 Dec 2006 14:32:15 +0000 (UTC) (envelope-from scuppers@gmail.com) Received: from nz-out-0506.google.com (nz-out-0506.google.com [64.233.162.236]) by mx1.freebsd.org (Postfix) with ESMTP id 47B3413C466 for ; Wed, 27 Dec 2006 14:32:15 +0000 (UTC) (envelope-from scuppers@gmail.com) Received: by nz-out-0506.google.com with SMTP id i11so1810080nzh for ; Wed, 27 Dec 2006 06:32:12 -0800 (PST) DomainKey-Signature: a=rsa-sha1; q=dns; c=nofws; s=beta; d=gmail.com; h=received:message-id:date:from:to:subject:mime-version:content-type; b=n2z1kKyDIHzdvPhrVIzejamCCdn3/dpd5/p3Ok0/ZhwQkEA2K1Vu98rtTkVyRXaoSRtA+4/zG50DmXO2nE8ev27i4dFXlfSlSyVHS2Vjq21Lzi+tZpyYNpXq+CDYHIR50yOuuoQpENDBQHXFi5W3zSxGmW6QXVigdv4PIlVGQtU= Received: by 10.35.112.4 with SMTP id p4mr24905627pym.1167228257602; Wed, 27 Dec 2006 06:04:17 -0800 (PST) Received: by 10.35.111.9 with HTTP; Wed, 27 Dec 2006 06:04:17 -0800 (PST) Message-ID: Date: Wed, 27 Dec 2006 09:04:17 -0500 From: "Scott Spare" To: freebsd-multimedia@freebsd.org MIME-Version: 1.0 Content-Type: text/plain; charset=ISO-8859-1; format=flowed Content-Transfer-Encoding: 7bit Content-Disposition: inline X-Content-Filtered-By: Mailman/MimeDel 2.1.5 Subject: Re: MythTV port X-BeenThere: freebsd-multimedia@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Multimedia discussions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 27 Dec 2006 14:32:15 -0000 usleepless, torfinn, et al: I have hardware and can test a MythTV port as needed. One machine is a 600mhz PIII with 384MB ram and ATI TV Wonder. The other is a 2GHz PIV with 512 and Hauppauge PVR-150 Let me know what I can do to help. From owner-freebsd-multimedia@FreeBSD.ORG Wed Dec 27 16:26:11 2006 Return-Path: X-Original-To: freebsd-multimedia@freebsd.org Delivered-To: freebsd-multimedia@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 0A32F16A407 for ; Wed, 27 Dec 2006 16:26:11 +0000 (UTC) (envelope-from josh@tcbug.org) Received: from sccrmhc15.comcast.net (sccrmhc15.comcast.net [204.127.200.85]) by mx1.freebsd.org (Postfix) with ESMTP id CBE3513C489 for ; Wed, 27 Dec 2006 16:26:10 +0000 (UTC) (envelope-from josh@tcbug.org) Received: from gimpy (c-24-118-186-172.hsd1.mn.comcast.net[24.118.186.172]) by comcast.net (sccrmhc15) with ESMTP id <2006122716261001500506fge>; Wed, 27 Dec 2006 16:26:10 +0000 From: Josh Paetzel To: freebsd-multimedia@freebsd.org Date: Wed, 27 Dec 2006 10:26:08 -0600 User-Agent: KMail/1.9.4 References: In-Reply-To: MIME-Version: 1.0 Content-Type: text/plain; charset="iso-8859-1" Content-Transfer-Encoding: 7bit Content-Disposition: inline Message-Id: <200612271026.08416.josh@tcbug.org> Subject: Re: MythTV port X-BeenThere: freebsd-multimedia@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Multimedia discussions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 27 Dec 2006 16:26:11 -0000 On Wednesday 27 December 2006 08:04, Scott Spare wrote: > usleepless, torfinn, et al: > I have hardware and can test a MythTV port as needed. > > One machine is a 600mhz PIII with 384MB ram and ATI TV Wonder. > The other is a 2GHz PIV with 512 and Hauppauge PVR-150 > > Let me know what I can do to help. I've been playing with multimedia/mythtv and my new PVR-150. The port wouldn't install without some hackage. (The /usr/local/etc/rc.d/mythwhatever.sh didn't exist) My main problem right now is getting myth to talk to the tuner on the card. If it wasn't for that I believe it would be completely functional. I am interested in testing and helping with this in whatever way I can. -- Thanks, Josh Paetzel From owner-freebsd-multimedia@FreeBSD.ORG Wed Dec 27 16:44:04 2006 Return-Path: X-Original-To: freebsd-multimedia@freebsd.org Delivered-To: freebsd-multimedia@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 0848F16A40F for ; Wed, 27 Dec 2006 16:44:04 +0000 (UTC) (envelope-from usleepless@gmail.com) Received: from an-out-0708.google.com (an-out-0708.google.com [209.85.132.250]) by mx1.freebsd.org (Postfix) with ESMTP id C151F13C470 for ; Wed, 27 Dec 2006 16:44:03 +0000 (UTC) (envelope-from usleepless@gmail.com) Received: by an-out-0708.google.com with SMTP id c24so1201450ana for ; Wed, 27 Dec 2006 08:44:03 -0800 (PST) DomainKey-Signature: a=rsa-sha1; q=dns; c=nofws; s=beta; d=gmail.com; h=received:message-id:date:from:to:subject:cc:in-reply-to:mime-version:content-type:content-transfer-encoding:content-disposition:references; b=b6W4RoNJMpHwMspEWRa4RhJ+xtMl8UunUpmzLBV3o/MzQJMQpIdDzz7M0fJgaKyoCK7CHE+su5fGziZMaWIpaPegH4oJ9WS4kBxrtA76sIlMYT6hW383cfg6Qfa4zkwreD8t2E3KpoiSKvWq2R+OMWwZAWSPPBAgjzujXygYkKQ= Received: by 10.78.185.15 with SMTP id i15mr3057huf.1167237842641; Wed, 27 Dec 2006 08:44:02 -0800 (PST) Received: by 10.78.124.8 with HTTP; Wed, 27 Dec 2006 08:44:02 -0800 (PST) Message-ID: Date: Wed, 27 Dec 2006 17:44:02 +0100 From: usleepless@gmail.com To: "Josh Paetzel" In-Reply-To: <200612271026.08416.josh@tcbug.org> MIME-Version: 1.0 Content-Type: text/plain; charset=ISO-8859-1; format=flowed Content-Transfer-Encoding: 7bit Content-Disposition: inline References: <200612271026.08416.josh@tcbug.org> Cc: freebsd-multimedia@freebsd.org Subject: Re: MythTV port X-BeenThere: freebsd-multimedia@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Multimedia discussions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 27 Dec 2006 16:44:04 -0000 Josh, On 12/27/06, Josh Paetzel wrote: > On Wednesday 27 December 2006 08:04, Scott Spare wrote: > > usleepless, torfinn, et al: > > I have hardware and can test a MythTV port as needed. > > > > One machine is a 600mhz PIII with 384MB ram and ATI TV Wonder. > > The other is a 2GHz PIV with 512 and Hauppauge PVR-150 > > > > Let me know what I can do to help. > > I've been playing with multimedia/mythtv and my new PVR-150. The port > wouldn't install without some hackage. > (The /usr/local/etc/rc.d/mythwhatever.sh didn't exist) > > My main problem right now is getting myth to talk to the tuner on the > card. If it wasn't for that I believe it would be completely > functional. you installed the pvrxxx port right? pvrxxx has a v4l2 interface which works for me with mythtv-0.18. i do remember commenting some stuff out in mpegrecorder.cpp though, will look it up. regards, usleep > > I am interested in testing and helping with this in whatever way I > can. > > -- > Thanks, > > Josh Paetzel > _______________________________________________ > freebsd-multimedia@freebsd.org mailing list > http://lists.freebsd.org/mailman/listinfo/freebsd-multimedia > To unsubscribe, send any mail to > "freebsd-multimedia-unsubscribe@freebsd.org" > From owner-freebsd-multimedia@FreeBSD.ORG Wed Dec 27 16:52:44 2006 Return-Path: X-Original-To: freebsd-multimedia@freebsd.org Delivered-To: freebsd-multimedia@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id AF03116A407 for ; Wed, 27 Dec 2006 16:52:44 +0000 (UTC) (envelope-from usleepless@gmail.com) Received: from wr-out-0506.google.com (wr-out-0506.google.com [64.233.184.233]) by mx1.freebsd.org (Postfix) with ESMTP id 65A6813C46D for ; Wed, 27 Dec 2006 16:52:44 +0000 (UTC) (envelope-from usleepless@gmail.com) Received: by wr-out-0506.google.com with SMTP id 55so1582872wri for ; Wed, 27 Dec 2006 08:52:43 -0800 (PST) DomainKey-Signature: a=rsa-sha1; q=dns; c=nofws; s=beta; d=gmail.com; h=received:message-id:date:from:to:subject:cc:in-reply-to:mime-version:content-type:content-transfer-encoding:content-disposition:references; b=fUWg38Kx8CsJOdoG08GqrjeGYH5iBRVjF6K/vdVSccd9v1N4PWUJ/DFEbmTutpBpeIOcMP5ZSmIZiX2INdks2vclfqJqgLxll3greE+5Tbosa+SLx7PmeCvlIq5w0rU7S6Xcy71WEPaF7cdwuSi+h6GT+RJ3+aMN3s5BPo6XxzQ= Received: by 10.78.201.10 with SMTP id y10mr1436286huf.1167238363060; Wed, 27 Dec 2006 08:52:43 -0800 (PST) Received: by 10.78.124.8 with HTTP; Wed, 27 Dec 2006 08:52:43 -0800 (PST) Message-ID: Date: Wed, 27 Dec 2006 17:52:43 +0100 From: usleepless@gmail.com To: "Josh Paetzel" In-Reply-To: MIME-Version: 1.0 Content-Type: text/plain; charset=ISO-8859-1; format=flowed Content-Transfer-Encoding: 7bit Content-Disposition: inline References: <200612271026.08416.josh@tcbug.org> Cc: freebsd-multimedia@freebsd.org Subject: Re: MythTV port X-BeenThere: freebsd-multimedia@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Multimedia discussions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 27 Dec 2006 16:52:44 -0000 Josh, On 12/27/06, usleepless@gmail.com wrote: > Josh, > > On 12/27/06, Josh Paetzel wrote: > > On Wednesday 27 December 2006 08:04, Scott Spare wrote: > > > usleepless, torfinn, et al: > > > I have hardware and can test a MythTV port as needed. > > > > > > One machine is a 600mhz PIII with 384MB ram and ATI TV Wonder. > > > The other is a 2GHz PIV with 512 and Hauppauge PVR-150 > > > > > > Let me know what I can do to help. > > > > I've been playing with multimedia/mythtv and my new PVR-150. The port > > wouldn't install without some hackage. > > (The /usr/local/etc/rc.d/mythwhatever.sh didn't exist) > > > > My main problem right now is getting myth to talk to the tuner on the > > card. If it wasn't for that I believe it would be completely > > functional. > > you installed the pvrxxx port right? pvrxxx has a v4l2 interface which > works for me with mythtv-0.18. > > i do remember commenting some stuff out in mpegrecorder.cpp though, > will look it up. so, looked it up. in mpegrecorder.cpp: 1. find "// only 48kHz". i commented the code about the audio_rate out. audio_rate should be 1. 2. a page down, a ioctl-call is made: if (ioctl(chanfd, VIDIOC_S_CTRL, &ctrl) < 0) { cerr << "Error setting codec params\n"; perror("VIDIOC_S_CTRL:"); return false; } i commented it out, since the pvrxxx port does not support this v4l2-ioctl yet. regards, usleep From owner-freebsd-multimedia@FreeBSD.ORG Wed Dec 27 17:37:06 2006 Return-Path: X-Original-To: freebsd-multimedia@freebsd.org Delivered-To: freebsd-multimedia@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id A955216A403 for ; Wed, 27 Dec 2006 17:37:06 +0000 (UTC) (envelope-from torfinn.ingolfsen@broadpark.no) Received: from osl1smout1.broadpark.no (osl1smout1.broadpark.no [80.202.4.58]) by mx1.freebsd.org (Postfix) with ESMTP id 6A13413C47C for ; Wed, 27 Dec 2006 17:37:06 +0000 (UTC) (envelope-from torfinn.ingolfsen@broadpark.no) Received: from osl1sminn1.broadpark.no ([80.202.4.59]) by osl1smout1.broadpark.no (Sun Java System Messaging Server 6.1 HotFix 0.05 (built Oct 21 2004)) with ESMTP id <0JAY00DUL0XT6SD0@osl1smout1.broadpark.no> for freebsd-multimedia@freebsd.org; Wed, 27 Dec 2006 18:37:05 +0100 (CET) Received: from kg-work.kg4.no ([80.203.66.169]) by osl1sminn1.broadpark.no (Sun Java System Messaging Server 6.1 HotFix 0.05 (built Oct 21 2004)) with SMTP id <0JAY007A80XT3MJ1@osl1sminn1.broadpark.no> for freebsd-multimedia@freebsd.org; Wed, 27 Dec 2006 18:37:05 +0100 (CET) Date: Wed, 27 Dec 2006 18:37:04 +0100 From: Torfinn Ingolfsen X-Face: "t9w2,-X@O^I`jVW\sonI3.,36KBLZE*AL[y9lL[PyFD*r_S:dIL9c[8Y>V42R0"!"yb_zN,f#%.[PYYNq; m"_0v; ~rUM2Yy!zmkh)3&U|u!=T(zyv,MHJv"nDH>OJ`t(@mil461d_B'Uo|'nMwlKe0Mv=kvV?Nh@>Hb<3s_z2jYgZhPb@?Wi^x1a~Hplz1.zH In-reply-to: To: freebsd-multimedia@freebsd.org Message-id: <20061227183704.374658c3.torfinn.ingolfsen@broadpark.no> MIME-version: 1.0 X-Mailer: Sylpheed version 2.2.10 (GTK+ 2.10.6; i386-portbld-freebsd6.2) Content-type: text/plain; charset=US-ASCII Content-transfer-encoding: 7BIT References: Subject: Re: MythTV port X-BeenThere: freebsd-multimedia@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Multimedia discussions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 27 Dec 2006 17:37:06 -0000 Hello, On Wed, 27 Dec 2006 09:04:17 -0500 Scott Spare wrote: > usleepless, torfinn, et al: > I have hardware and can test a MythTV port as needed. Great! We need more testers. Remember, I'm just a tester too, so any information I might have is based on what I have been able to pick up from developers and other users. > One machine is a 600mhz PIII with 384MB ram and ATI TV Wonder. > The other is a 2GHz PIV with 512 and Hauppauge PVR-150 Machines: both look fine to me. TV Cards: The PVR-150 should be fine, use the pvrxxx port as a driver. I don't know about the ATI TV Wonder. I think (somebody correct me if I'm wrong here) MythTV requires a v4l or v4l2 api to the driver (at least an api with most of the functions). > Let me know what I can do to help. Are you familiar with MythTV? If not, are you prepared to spend some time fiddling with it? It might take you a few hours, or even a few evenings to get a working setup. But in the end it is worth it. AFAIK, the situation is like this: the MythTV port is created, but there are not many success reports yet. Perhaps because not a lot of people have tried it yet, or perhaps because the port has problems. We know that usleep is using his own modified version of MythTV - that doesn't count as a positive report for the MythTV port, unless usleep also have tested the port. I would guess that the port works for Greg (the author of the port), but I don't really know. Comments to clear up this confusion is welcome. Anyway, I suggest that you install the port and try to see what you get from it. If both of your machines are "free" (or you have a spare hard drive), perhaps you could installe KnoppMyth (http://www.mysettopbox.tv/knoppmyth.html) on the PIII machine, that way you would have a working "reference" machine to check out Myth-related questions. Note: I see that the web page mentions KnoppMyth R5D1 (uss MythTV 0.19-fixes), but R5E50 have just been announced on the mythtv-users mailinglist: http://www.gossamer-threads.com/lists/mythtv/users/242706 As this is based on MythTV 0.20-fixes, it is closer to the MythTV port we have right now. FWIW, I'm still running KnoppMyth R5D1 on my main MythTV backend. It is in production, so I will upgrade it later, when I'm mentally ready. :-) HTH -- Regards, Torfinn Ingolfsen, Norway From owner-freebsd-multimedia@FreeBSD.ORG Wed Dec 27 22:10:25 2006 Return-Path: X-Original-To: freebsd-multimedia@hub.freebsd.org Delivered-To: freebsd-multimedia@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id C29D616A403; Wed, 27 Dec 2006 22:10:25 +0000 (UTC) (envelope-from edwin@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [69.147.83.40]) by mx1.freebsd.org (Postfix) with ESMTP id 9D44713C487; Wed, 27 Dec 2006 22:10:25 +0000 (UTC) (envelope-from edwin@FreeBSD.org) Received: from freefall.freebsd.org (edwin@localhost [127.0.0.1]) by freefall.freebsd.org (8.13.4/8.13.4) with ESMTP id kBRMAPmK090735; Wed, 27 Dec 2006 22:10:25 GMT (envelope-from edwin@freefall.freebsd.org) Received: (from edwin@localhost) by freefall.freebsd.org (8.13.4/8.13.4/Submit) id kBRMAPji090730; Wed, 27 Dec 2006 22:10:25 GMT (envelope-from edwin) Date: Wed, 27 Dec 2006 22:10:25 GMT From: Edwin Groothuis Message-Id: <200612272210.kBRMAPji090730@freefall.freebsd.org> To: edwin@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org, freebsd-multimedia@FreeBSD.org Cc: Subject: Re: ports/107256: [MAINT] multimedia/gstreamer: Add gstreamer-plugins-good dep X-BeenThere: freebsd-multimedia@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Multimedia discussions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 27 Dec 2006 22:10:25 -0000 Synopsis: [MAINT] multimedia/gstreamer: Add gstreamer-plugins-good dep Responsible-Changed-From-To: freebsd-ports-bugs->freebsd-multimedia Responsible-Changed-By: edwin Responsible-Changed-When: Wed Dec 27 22:10:24 UTC 2006 Responsible-Changed-Why: Over to maintainer http://www.freebsd.org/cgi/query-pr.cgi?pr=107256 From owner-freebsd-multimedia@FreeBSD.ORG Wed Dec 27 23:12:03 2006 Return-Path: X-Original-To: freebsd-multimedia@hub.freebsd.org Delivered-To: freebsd-multimedia@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id F290D16A412; Wed, 27 Dec 2006 23:12:02 +0000 (UTC) (envelope-from mezz@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [69.147.83.40]) by mx1.freebsd.org (Postfix) with ESMTP id E587E13C487; Wed, 27 Dec 2006 23:12:02 +0000 (UTC) (envelope-from mezz@FreeBSD.org) Received: from freefall.freebsd.org (mezz@localhost [127.0.0.1]) by freefall.freebsd.org (8.13.4/8.13.4) with ESMTP id kBRNC2Oi096456; Wed, 27 Dec 2006 23:12:02 GMT (envelope-from mezz@freefall.freebsd.org) Received: (from mezz@localhost) by freefall.freebsd.org (8.13.4/8.13.4/Submit) id kBRNC2QV096452; Wed, 27 Dec 2006 23:12:02 GMT (envelope-from mezz) Date: Wed, 27 Dec 2006 23:12:02 GMT From: Jeremy Messenger Message-Id: <200612272312.kBRNC2QV096452@freefall.freebsd.org> To: mezz@FreeBSD.org, freebsd-multimedia@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org Cc: Subject: Re: ports/107256: [MAINT] multimedia/gstreamer: Add gstreamer-plugins-good dep X-BeenThere: freebsd-multimedia@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Multimedia discussions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 27 Dec 2006 23:12:03 -0000 Synopsis: [MAINT] multimedia/gstreamer: Add gstreamer-plugins-good dep Class-Changed-From-To: change-request->maintainer-update Class-Changed-By: mezz Class-Changed-When: Wed Dec 27 23:09:49 UTC 2006 Class-Changed-Why: Actually, the 'multimedia/gstreamer' is a typo, which it is supposed to be 'multimedia/quodlibet' by looked at his patch. Therefore, it is correct that he is a maintainer. Responsible-Changed-From-To: freebsd-multimedia->freebsd-ports-bugs Responsible-Changed-By: mezz Responsible-Changed-When: Wed Dec 27 23:09:49 UTC 2006 Responsible-Changed-Why: Actually, the 'multimedia/gstreamer' is a typo, which it is supposed to be 'multimedia/quodlibet' by looked at his patch. Therefore, it is correct that he is a maintainer. http://www.freebsd.org/cgi/query-pr.cgi?pr=107256 From owner-freebsd-multimedia@FreeBSD.ORG Thu Dec 28 04:43:15 2006 Return-Path: X-Original-To: freebsd-multimedia@hub.freebsd.org Delivered-To: freebsd-multimedia@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 94D8116A403; Thu, 28 Dec 2006 04:43:15 +0000 (UTC) (envelope-from edwin@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [69.147.83.40]) by mx1.freebsd.org (Postfix) with ESMTP id 6E41513C46F; Thu, 28 Dec 2006 04:43:15 +0000 (UTC) (envelope-from edwin@FreeBSD.org) Received: from freefall.freebsd.org (edwin@localhost [127.0.0.1]) by freefall.freebsd.org (8.13.4/8.13.4) with ESMTP id kBS4hFpf033563; Thu, 28 Dec 2006 04:43:15 GMT (envelope-from edwin@freefall.freebsd.org) Received: (from edwin@localhost) by freefall.freebsd.org (8.13.4/8.13.4/Submit) id kBS4hF7L033559; Thu, 28 Dec 2006 04:43:15 GMT (envelope-from edwin) Date: Thu, 28 Dec 2006 04:43:15 GMT From: Edwin Groothuis Message-Id: <200612280443.kBS4hF7L033559@freefall.freebsd.org> To: edwin@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org, freebsd-multimedia@FreeBSD.org Cc: Subject: Re: ports/107261: [PATCH] Add required run dependency to audio/nas. X-BeenThere: freebsd-multimedia@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Multimedia discussions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 28 Dec 2006 04:43:15 -0000 Synopsis: [PATCH] Add required run dependency to audio/nas. Responsible-Changed-From-To: freebsd-ports-bugs->freebsd-multimedia Responsible-Changed-By: edwin Responsible-Changed-When: Thu Dec 28 04:43:14 UTC 2006 Responsible-Changed-Why: Over to maintainer http://www.freebsd.org/cgi/query-pr.cgi?pr=107261 From owner-freebsd-multimedia@FreeBSD.ORG Thu Dec 28 10:46:27 2006 Return-Path: X-Original-To: freebsd-multimedia@freebsd.org Delivered-To: freebsd-multimedia@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 8830B16A407 for ; Thu, 28 Dec 2006 10:46:27 +0000 (UTC) (envelope-from ryallsd@gmail.com) Received: from nf-out-0910.google.com (nf-out-0910.google.com [64.233.182.190]) by mx1.freebsd.org (Postfix) with ESMTP id 1745013C479 for ; Thu, 28 Dec 2006 10:46:26 +0000 (UTC) (envelope-from ryallsd@gmail.com) Received: by nf-out-0910.google.com with SMTP id x37so5128048nfc for ; Thu, 28 Dec 2006 02:46:25 -0800 (PST) DomainKey-Signature: a=rsa-sha1; q=dns; c=nofws; s=beta; d=gmail.com; h=received:message-id:date:from:to:subject:cc:in-reply-to:mime-version:content-type:content-transfer-encoding:content-disposition:references; b=s6cJAtHn697rMAK6PM2nDT3oouG8Dz1WP9M47aTdhCoJktmwA0pDNimdeCYFuku/ynuG0BZqp7Mh2N3BDgLcMkzw6Ytvr1HkB+6+jtfklcXMcRs85JwHVn2oEbgn+7FutYmI1bPfQCZGQEfigTWpYufjjjrFc12TtHpy3/f7jvQ= Received: by 10.82.152.16 with SMTP id z16mr493275bud.1167301823705; Thu, 28 Dec 2006 02:30:23 -0800 (PST) Received: by 10.82.154.7 with HTTP; Thu, 28 Dec 2006 02:30:23 -0800 (PST) Message-ID: Date: Thu, 28 Dec 2006 02:30:23 -0800 From: "Derrick Ryalls" To: "Torfinn Ingolfsen" In-Reply-To: <20061225001321.5dfb2975.torfinn.ingolfsen@broadpark.no> MIME-Version: 1.0 Content-Type: text/plain; charset=ISO-8859-1; format=flowed Content-Transfer-Encoding: 7bit Content-Disposition: inline References: <20061224230155.fc0a6c6a.torfinn.ingolfsen@broadpark.no> <20061225001321.5dfb2975.torfinn.ingolfsen@broadpark.no> Cc: freebsd-multimedia@freebsd.org Subject: Re: MythTV port - status report X-BeenThere: freebsd-multimedia@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Multimedia discussions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 28 Dec 2006 10:46:27 -0000 > > Torfinn, List, > > usleep, I think it is time for you to bug the Gmail people about proper > mailing list handling - your message wasn't sent to the list. Again. > > > this can have at least 2 reasons: > > 1. you haven't completed the setup properly. > > I *know* I haven't completed my mythtv-setup properly. :-) > If you read the whole message you will see that I had some problems > with that. > > > 2. the device you are using doesn't support the > > enumerate-inputs-v4l2-ioctl. > > Ok, this is probably the reason. How can I find out if the pvr250 port > supports this ioctl? any pointers to information? > This issue kinda fell off this thread with no mention of a possible solution. I have a PVR-250 card and tried installing the pvr250 port. I can stream video via mplayer /dev/cxm0 and set the channel, but when I run mythtv-setup, it says it failed to probe the device. I tried the original sys file from my windows install cd as well as a sys file from hauppage directly, both have the same result. Was there any determination/work-around for the ioctl issue? This card works with KnoppMyth (whichever version was .18 of Myth) FreeBSD 6.2 PRERELEASE, i386 From owner-freebsd-multimedia@FreeBSD.ORG Thu Dec 28 13:19:53 2006 Return-Path: X-Original-To: freebsd-multimedia@FreeBSD.org Delivered-To: freebsd-multimedia@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 4B86C16A412 for ; Thu, 28 Dec 2006 13:19:53 +0000 (UTC) (envelope-from steve@localhost.lu) Received: from linion.ion.lu (linion.ion.lu [80.90.47.168]) by mx1.freebsd.org (Postfix) with ESMTP id 7910D13C489 for ; Thu, 28 Dec 2006 13:19:52 +0000 (UTC) (envelope-from steve@localhost.lu) Received: (qmail 97628 invoked by uid 89); 28 Dec 2006 14:09:31 +0100 Received: from localhost (HELO ?127.0.0.1?) (steve@localhost.lu@127.0.0.1) by linion.ion.lu with SMTP; 28 Dec 2006 14:09:31 +0100 Message-ID: <4593C1C5.5060405@localhost.lu> Date: Thu, 28 Dec 2006 14:08:21 +0100 From: Steve Clement User-Agent: Thunderbird 1.5.0.9 (X11/20061222) MIME-Version: 1.0 To: freebsd-multimedia@FreeBSD.org Content-Type: text/plain; charset=ISO-8859-1; format=flowed Content-Transfer-Encoding: 7bit Cc: ariff@FreeBSD.org Subject: ICH7 snd_hda X-BeenThere: freebsd-multimedia@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Multimedia discussions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 28 Dec 2006 13:19:53 -0000 Hi List, hi Ariff Thanks for the good work on the sound system under FreeBSD, usually I don't need it for my servers but now with my new laptop on FreeBSD the need arouse. I have an ICH7 Intel Chip and that has the Intel High Definition Audio in it. I wondered what that plans are on including the snd_hda driver in any of the upcoming releases as it seems to be stable enough to listen to things and using the mic I used it for all my Video/Audio Playback and with mplayer it works fine I had some issues with Audacious but I think that is more an audacious problem than any low level sound driver issue. Also I feel a bit uncomfortable just plugging in any binary file into the /boot/kernel tree or fudging about with my /usr/src tree :) cheers a lot, Steve Clement From owner-freebsd-multimedia@FreeBSD.ORG Thu Dec 28 13:59:11 2006 Return-Path: X-Original-To: freebsd-multimedia@freebsd.org Delivered-To: freebsd-multimedia@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 2BF0B16A407 for ; Thu, 28 Dec 2006 13:59:11 +0000 (UTC) (envelope-from torfinn.ingolfsen@broadpark.no) Received: from osl1smout1.broadpark.no (osl1smout1.broadpark.no [80.202.4.58]) by mx1.freebsd.org (Postfix) with ESMTP id DDF2913C487 for ; Thu, 28 Dec 2006 13:59:10 +0000 (UTC) (envelope-from torfinn.ingolfsen@broadpark.no) Received: from osl1sminn1.broadpark.no ([80.202.4.59]) by osl1smout1.broadpark.no (Sun Java System Messaging Server 6.1 HotFix 0.05 (built Oct 21 2004)) with ESMTP id <0JAZ00AR6LILOC60@osl1smout1.broadpark.no> for freebsd-multimedia@freebsd.org; Thu, 28 Dec 2006 14:59:09 +0100 (CET) Received: from kg-work.kg4.no ([80.203.66.169]) by osl1sminn1.broadpark.no (Sun Java System Messaging Server 6.1 HotFix 0.05 (built Oct 21 2004)) with SMTP id <0JAZ00HZKLILFUB1@osl1sminn1.broadpark.no> for freebsd-multimedia@freebsd.org; Thu, 28 Dec 2006 14:59:09 +0100 (CET) Date: Thu, 28 Dec 2006 14:59:09 +0100 From: Torfinn Ingolfsen X-Face: "t9w2,-X@O^I`jVW\sonI3.,36KBLZE*AL[y9lL[PyFD*r_S:dIL9c[8Y>V42R0"!"yb_zN,f#%.[PYYNq; m"_0v; ~rUM2Yy!zmkh)3&U|u!=T(zyv,MHJv"nDH>OJ`t(@mil461d_B'Uo|'nMwlKe0Mv=kvV?Nh@>Hb<3s_z2jYgZhPb@?Wi^x1a~Hplz1.zH In-reply-to: To: freebsd-multimedia@freebsd.org Message-id: <20061228145909.bbb6d193.torfinn.ingolfsen@broadpark.no> MIME-version: 1.0 X-Mailer: Sylpheed version 2.2.10 (GTK+ 2.10.6; i386-portbld-freebsd6.2) Content-type: text/plain; charset=US-ASCII Content-transfer-encoding: 7BIT References: <20061224230155.fc0a6c6a.torfinn.ingolfsen@broadpark.no> <20061225001321.5dfb2975.torfinn.ingolfsen@broadpark.no> Subject: Re: MythTV port - status report X-BeenThere: freebsd-multimedia@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Multimedia discussions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 28 Dec 2006 13:59:11 -0000 On Thu, 28 Dec 2006 02:30:23 -0800 Derrick Ryalls wrote: > This issue kinda fell off this thread with no mention of a possible The answers(s) are probably delayed, because of the holiday season. > solution. I have a PVR-250 card and tried installing the pvr250 port. > I can stream video via mplayer /dev/cxm0 and set the channel, but > when I run mythtv-setup, it says it failed to probe the device. I > tried the original sys file from my windows install cd as well as a > sys file from hauppage directly, both have the same result. Was there > any determination/work-around for the ioctl issue? The problem is in the driver (ie. the pvr250 port). It needs to be fixed to include the necessary ioctls. I'm still waiting for hints on how to go about fixing it. Or you could use another driver, if one was available. I know usleep have support for pvr-250 / 350 cards as a goal for the pvrxx driver, but it just isn't there yet. > This card works with KnoppMyth (whichever version was .18 of Myth) Not surprising since the Linux driver (ivtv) has a v4l / v4l2 api, which I assume is complete. -- Regards, Torfinn Ingolfsen, Norway From owner-freebsd-multimedia@FreeBSD.ORG Thu Dec 28 17:36:37 2006 Return-Path: X-Original-To: freebsd-multimedia@freebsd.org Delivered-To: freebsd-multimedia@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 63AB616A407 for ; Thu, 28 Dec 2006 17:36:37 +0000 (UTC) (envelope-from torfinn.ingolfsen@broadpark.no) Received: from osl1smout1.broadpark.no (osl1smout1.broadpark.no [80.202.4.58]) by mx1.freebsd.org (Postfix) with ESMTP id 27D1B13C463 for ; Thu, 28 Dec 2006 17:36:37 +0000 (UTC) (envelope-from torfinn.ingolfsen@broadpark.no) Received: from osl1sminn1.broadpark.no ([80.202.4.59]) by osl1smout1.broadpark.no (Sun Java System Messaging Server 6.1 HotFix 0.05 (built Oct 21 2004)) with ESMTP id <0JAZ00EZ6VL0AM60@osl1smout1.broadpark.no> for freebsd-multimedia@freebsd.org; Thu, 28 Dec 2006 18:36:36 +0100 (CET) Received: from kg-work.kg4.no ([80.203.66.169]) by osl1sminn1.broadpark.no (Sun Java System Messaging Server 6.1 HotFix 0.05 (built Oct 21 2004)) with SMTP id <0JAZ000NYVKZ7XI0@osl1sminn1.broadpark.no> for freebsd-multimedia@freebsd.org; Thu, 28 Dec 2006 18:36:36 +0100 (CET) Date: Thu, 28 Dec 2006 18:36:35 +0100 From: Torfinn Ingolfsen X-Face: "t9w2,-X@O^I`jVW\sonI3.,36KBLZE*AL[y9lL[PyFD*r_S:dIL9c[8Y>V42R0"!"yb_zN,f#%.[PYYNq; m"_0v; ~rUM2Yy!zmkh)3&U|u!=T(zyv,MHJv"nDH>OJ`t(@mil461d_B'Uo|'nMwlKe0Mv=kvV?Nh@>Hb<3s_z2jYgZhPb@?Wi^x1a~Hplz1.zH To: freebsd-multimedia@freebsd.org Message-id: <20061228183635.b1502d94.torfinn.ingolfsen@broadpark.no> MIME-version: 1.0 X-Mailer: Sylpheed version 2.2.10 (GTK+ 2.10.6; i386-portbld-freebsd6.2) Content-type: text/plain; charset=US-ASCII Content-transfer-encoding: 7BIT Subject: Does kbtv work for you? X-BeenThere: freebsd-multimedia@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Multimedia discussions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 28 Dec 2006 17:36:37 -0000 Hello, Has anyone sucessfully compiled kbtv (multimedia/kbtv) recently? When I try it, one of the dependencies (py-kde) fails: c++ -c -Wno-deprecated-declarations -pipe -fPIC -O -pipe -Wall -W -DQT_NO_DEBUG -DQT_THREAD_SUPPORT -I. -I../extra/kde353 -I/usr/local/include -I/usr/local/include/kio -I../kio -I/usr/local/include/kparts -I/usr/local/include/python2.4 -I/usr/X11R6/mkspecs/freebsd-g++ -I/usr/X11R6/include -o sipkpartspart1.o sipkpartspart1.cpp In file included from sipkpartspart1.cpp:2707: sipkpartsKPartsGUIActivateEvent.h:39: error: invalid use of undefined type `struct KParts::GUIActivateEvent' /usr/local/include/kparts/part.h:49: error: forward declaration of `struct KParts::GUIActivateEvent' In file included from sipkpartspart1.cpp:2712: sipkpartsKPartsPartSelectEvent.h:39: error: invalid use of undefined type `struct KParts::PartSelectEvent' /usr/local/include/kparts/part.h:48: error: forward declaration of `struct KParts::PartSelectEvent' In file included from sipkpartspart1.cpp:2713: sipkpartsKPartsPartActivateEvent.h:39: error: invalid use of undefined type `struct KParts::PartActivateEvent' /usr/local/include/kparts/part.h:47: error: forward declaration of `struct KParts::PartActivateEvent' In file included from sipkpartspart1.cpp:15418: sipkpartsKPartsEvent.h:39: error: expected class-name before '{' token sipkpartsKPartsEvent.h:42: error: expected unqualified-id before '&' token sipkpartsKPartsEvent.h:42: error: expected `,' or `...' before '&' token sipkpartsKPartsEvent.h:42: error: ISO C++ forbids declaration of `parameter' with no type sipkpartspart1.cpp: In constructor `sipKParts_PartSelectEvent::sipKParts_PartSelectEvent(bool, KParts::Part*, QWidget*)': sipkpartspart1.cpp:15426: error: type `struct KParts::PartSelectEvent' is not a direct base of `sipKParts_PartSelectEvent' sipkpartspart1.cpp: In constructor `sipKParts_PartSelectEvent::sipKParts_PartSelectEvent(const KParts::PartSelectEvent&)': sipkpartspart1.cpp:15431: error: type `struct KParts::PartSelectEvent' is not a direct base of `sipKParts_PartSelectEvent' sipkpartspart1.cpp: In member function `const char* sipKParts_PartSelectEvent::eventName() const': sipkpartspart1.cpp:15451: error: `KParts::Event' has not been declared sipkpartspart1.cpp: In function `PyObject* meth_KParts_PartSelectEvent_selected(PyObject*, PyObject*)': sipkpartspart1.cpp:15469: error: invalid use of undefined type `struct KParts::PartSelectEvent' /usr/local/include/kparts/part.h:48: error: forward declaration of `struct KParts::PartSelectEvent' sipkpartspart1.cpp: In function `PyObject* meth_KParts_PartSelectEvent_part(PyObject*, PyObject*)': sipkpartspart1.cpp:15494: error: invalid use of undefined type `struct KParts::PartSelectEvent' /usr/local/include/kparts/part.h:48: error: forward declaration of `struct KParts::PartSelectEvent' sipkpartspart1.cpp: In function `PyObject* meth_KParts_PartSelectEvent_widget(PyObject*, PyObject*)': sipkpartspart1.cpp:15519: error: invalid use of undefined type `struct KParts::PartSelectEvent' /usr/local/include/kparts/part.h:48: error: forward declaration of `struct KParts::PartSelectEvent' sipkpartspart1.cpp: In function `PyObject* meth_KParts_PartSelectEvent_test(PyObject*, PyObject*)': sipkpartspart1.cpp:15544: error: incomplete type `KParts::PartSelectEvent' used in nested name specifier sipkpartspart1.cpp: In function `void* cast_KParts_PartSelectEvent(void*, sipWrapperType*)': sipkpartspart1.cpp:15566: error: `Event' is not a member of `KParts' sipkpartspart1.cpp:15566: error: expected primary-expression before ')' token sipkpartspart1.cpp:15566: error: expected primary-expression before '*' token sipkpartspart1.cpp:15566: error: expected primary-expression before ')' token sipkpartspart1.cpp: In function `void release_KParts_PartSelectEvent(void*, int)': sipkpartspart1.cpp:15580: warning: possible problem detected in invocation of delete operator: sipkpartspart1.cpp:15580: warning: invalid use of undefined type `struct KParts::PartSelectEvent' /usr/local/include/kparts/part.h:48: warning: forward declaration of `struct KParts::PartSelectEvent' sipkpartspart1.cpp:15580: note: neither the destructor nor the class-specific operator delete will be called, even if they are declared when the class is defined. *** Error code 1 Stop in /usr/ports/x11-toolkits/py-kde/work/PyKDE-3.16.0/kparts. *** Error code 1 Stop in /usr/ports/x11-toolkits/py-kde/work/PyKDE-3.16.0. *** Error code 1 Stop in /usr/ports/x11-toolkits/py-kde. ** Command failed [exit code 1]: /usr/bin/script -qa /tmp/portinstall.4744.32 env make ** Fix the problem and try again. ** Listing the failed packages (*:skipped / !:failed) ! x11-toolkits/py-kde (bad C++ code) ---> Packages processed: 0 done, 67 ignored, 0 skipped and 1 failed This is on root@kg-quiet# uname -a FreeBSD kg-quiet.kg4.no 6.1-STABLE FreeBSD 6.1-STABLE #10: Wed Oct 11 19:49:47 CEST 2006 root@kg-quiet.kg4.no:/usr/obj/usr/src/sys/QUIET amd64 -- Regards, Torfinn Ingolfsen, Norway From owner-freebsd-multimedia@FreeBSD.ORG Thu Dec 28 19:13:37 2006 Return-Path: X-Original-To: freebsd-multimedia@freebsd.org Delivered-To: freebsd-multimedia@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id B1C7616A415 for ; Thu, 28 Dec 2006 19:13:37 +0000 (UTC) (envelope-from josh@tcbug.org) Received: from sccrmhc15.comcast.net (sccrmhc15.comcast.net [63.240.77.85]) by mx1.freebsd.org (Postfix) with ESMTP id 7F67313C470 for ; Thu, 28 Dec 2006 19:13:37 +0000 (UTC) (envelope-from josh@tcbug.org) Received: from gimpy (c-24-118-186-172.hsd1.mn.comcast.net[24.118.186.172]) by comcast.net (sccrmhc15) with ESMTP id <200612281913250150050pjge>; Thu, 28 Dec 2006 19:13:36 +0000 From: Josh Paetzel To: freebsd-multimedia@freebsd.org Date: Thu, 28 Dec 2006 13:13:18 -0600 User-Agent: KMail/1.9.4 References: <20061228183635.b1502d94.torfinn.ingolfsen@broadpark.no> In-Reply-To: <20061228183635.b1502d94.torfinn.ingolfsen@broadpark.no> MIME-Version: 1.0 Content-Type: text/plain; charset="iso-8859-1" Content-Transfer-Encoding: quoted-printable Content-Disposition: inline Message-Id: <200612281313.18836.josh@tcbug.org> Cc: Subject: Re: Does kbtv work for you? X-BeenThere: freebsd-multimedia@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Multimedia discussions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 28 Dec 2006 19:13:37 -0000 On Thursday 28 December 2006 11:36, Torfinn Ingolfsen wrote: > Hello, > Has anyone sucessfully compiled kbtv (multimedia/kbtv) recently? > When I try it, one of the dependencies (py-kde) fails: > c++ -c -Wno-deprecated-declarations -pipe -fPIC -O -pipe -Wall -W > -DQT_NO_DEBUG -DQT_THREAD_SUPPORT -I. -I../extra/kde353 > -I/usr/local/include -I/usr/local/include/kio -I../kio > -I/usr/local/include/kparts -I/usr/local/include/python2.4 > -I/usr/X11R6/mkspecs/freebsd-g++ -I/usr/X11R6/include -o > sipkpartspart1.o sipkpartspart1.cpp In file included from > sipkpartspart1.cpp:2707: > sipkpartsKPartsGUIActivateEvent.h:39: error: invalid use of > undefined type `struct KParts::GUIActivateEvent' > /usr/local/include/kparts/part.h:49: error: forward declaration of > `struct KParts::GUIActivateEvent' In file included from > sipkpartspart1.cpp:2712: > sipkpartsKPartsPartSelectEvent.h:39: error: invalid use of > undefined type `struct KParts::PartSelectEvent' > /usr/local/include/kparts/part.h:48: error: forward declaration of > `struct KParts::PartSelectEvent' In file included from > sipkpartspart1.cpp:2713: > sipkpartsKPartsPartActivateEvent.h:39: error: invalid use of > undefined type `struct KParts::PartActivateEvent' > /usr/local/include/kparts/part.h:47: error: forward declaration of > `struct KParts::PartActivateEvent' In file included from > sipkpartspart1.cpp:15418: > sipkpartsKPartsEvent.h:39: error: expected class-name before '{' > token sipkpartsKPartsEvent.h:42: error: expected unqualified-id > before '&' token sipkpartsKPartsEvent.h:42: error: expected `,' or > `...' before '&' token sipkpartsKPartsEvent.h:42: error: ISO C++ > forbids declaration of `parameter' with no type sipkpartspart1.cpp: > In constructor > `sipKParts_PartSelectEvent::sipKParts_PartSelectEvent(bool, > KParts::Part*, QWidget*)': sipkpartspart1.cpp:15426: error: type > `struct KParts::PartSelectEvent' is not a direct base of > `sipKParts_PartSelectEvent' sipkpartspart1.cpp: In constructor > `sipKParts_PartSelectEvent::sipKParts_PartSelectEvent(const > KParts::PartSelectEvent&)': sipkpartspart1.cpp:15431: error: type > `struct KParts::PartSelectEvent' is not a direct base of > `sipKParts_PartSelectEvent' sipkpartspart1.cpp: In member function > `const char* sipKParts_PartSelectEvent::eventName() const': > sipkpartspart1.cpp:15451: error: `KParts::Event' has not been > declared sipkpartspart1.cpp: In function `PyObject* > meth_KParts_PartSelectEvent_selected(PyObject*, PyObject*)': > sipkpartspart1.cpp:15469: error: invalid use of undefined type > `struct KParts::PartSelectEvent' > /usr/local/include/kparts/part.h:48: error: forward declaration of > `struct KParts::PartSelectEvent' sipkpartspart1.cpp: In function > `PyObject* meth_KParts_PartSelectEvent_part(PyObject*, PyObject*)': > sipkpartspart1.cpp:15494: error: invalid use of undefined type > `struct KParts::PartSelectEvent' > /usr/local/include/kparts/part.h:48: error: forward declaration of > `struct KParts::PartSelectEvent' sipkpartspart1.cpp: In function > `PyObject* meth_KParts_PartSelectEvent_widget(PyObject*, > PyObject*)': sipkpartspart1.cpp:15519: error: invalid use of > undefined type `struct KParts::PartSelectEvent' > /usr/local/include/kparts/part.h:48: error: forward declaration of > `struct KParts::PartSelectEvent' sipkpartspart1.cpp: In function > `PyObject* meth_KParts_PartSelectEvent_test(PyObject*, PyObject*)': > sipkpartspart1.cpp:15544: error: incomplete type > `KParts::PartSelectEvent' used in nested name specifier > sipkpartspart1.cpp: In function `void* > cast_KParts_PartSelectEvent(void*, sipWrapperType*)': > sipkpartspart1.cpp:15566: error: `Event' is not a member of > `KParts' sipkpartspart1.cpp:15566: error: expected > primary-expression before ')' token sipkpartspart1.cpp:15566: > error: expected primary-expression before '*' token > sipkpartspart1.cpp:15566: error: expected primary-expression before > ')' token sipkpartspart1.cpp: In function `void > release_KParts_PartSelectEvent(void*, int)': > sipkpartspart1.cpp:15580: warning: possible problem detected in > invocation of delete operator: sipkpartspart1.cpp:15580: warning: > invalid use of undefined type `struct KParts::PartSelectEvent' > /usr/local/include/kparts/part.h:48: warning: forward declaration > of `struct KParts::PartSelectEvent' sipkpartspart1.cpp:15580: note: > neither the destructor nor the class-specific operator delete will > be called, even if they are declared when the class is defined. *** > Error code 1 > > Stop in /usr/ports/x11-toolkits/py-kde/work/PyKDE-3.16.0/kparts. > *** Error code 1 > > Stop in /usr/ports/x11-toolkits/py-kde/work/PyKDE-3.16.0. > *** Error code 1 > > Stop in /usr/ports/x11-toolkits/py-kde. > ** Command failed [exit code 1]: /usr/bin/script -qa > /tmp/portinstall.4744.32 env make ** Fix the problem and try again. > ** Listing the failed packages (*:skipped / !:failed) > ! x11-toolkits/py-kde (bad C++ code) > ---> Packages processed: 0 done, 67 ignored, 0 skipped and 1 > failed > > This is on > root@kg-quiet# uname -a > FreeBSD kg-quiet.kg4.no 6.1-STABLE FreeBSD 6.1-STABLE #10: Wed Oct > 11 19:49:47 CEST 2006 =20 > root@kg-quiet.kg4.no:/usr/obj/usr/src/sys/QUIET amd64 =3D=3D=3D> Registering installation for kbtv-1.1.3 =3D=3D=3Droot@gimpy /usr/ports/multimedia/kbtv #=20 # uname -a =46reeBSD gimpy.tcbug.org 6.2-RC2 FreeBSD 6.2-RC2 #7: Thu Dec 28=20 00:26:22 CST 2006 root@gimpy.tcbug.org:/usr/obj/usr/src/sys/GIMPY =20 i386 # pkg_info | grep -i py =2E.. py24-kde-3.16.0,1 Python Bindings for KDE3 =2E... =46rom a ports tree from this morning. =2D-=20 Thanks, Josh Paetzel From owner-freebsd-multimedia@FreeBSD.ORG Thu Dec 28 22:35:39 2006 Return-Path: X-Original-To: freebsd-multimedia@freebsd.org Delivered-To: freebsd-multimedia@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 5BBC916A403 for ; Thu, 28 Dec 2006 22:35:39 +0000 (UTC) (envelope-from ryallsd@gmail.com) Received: from nf-out-0910.google.com (nf-out-0910.google.com [64.233.182.189]) by mx1.freebsd.org (Postfix) with ESMTP id C2C4913C46D for ; Thu, 28 Dec 2006 22:35:38 +0000 (UTC) (envelope-from ryallsd@gmail.com) Received: by nf-out-0910.google.com with SMTP id x37so5293601nfc for ; Thu, 28 Dec 2006 14:35:37 -0800 (PST) DomainKey-Signature: a=rsa-sha1; q=dns; c=nofws; s=beta; d=gmail.com; h=received:message-id:date:from:to:subject:cc:in-reply-to:mime-version:content-type:content-transfer-encoding:content-disposition:references; b=RmqHR2JdrVxgehzBdeIEh4K6nXMXUMUX/0Mz3sWRFMXy8E3ueKCNLP41MvT3RWNu5oLofQ+0Xy2nCGbUd8Zwkk0NcrKX4o2Uio5ggxqIeMbvgpHjCqDYKR7YnlFkGHO9GQYlvOYQrLgGEx1DPDdCFMs3AKl7zkaiNecNGwuJ6HQ= Received: by 10.82.113.6 with SMTP id l6mr1112899buc.1167345337251; Thu, 28 Dec 2006 14:35:37 -0800 (PST) Received: by 10.82.154.7 with HTTP; Thu, 28 Dec 2006 14:35:36 -0800 (PST) Message-ID: Date: Thu, 28 Dec 2006 14:35:36 -0800 From: "Derrick Ryalls" To: "Torfinn Ingolfsen" In-Reply-To: <20061228145909.bbb6d193.torfinn.ingolfsen@broadpark.no> MIME-Version: 1.0 Content-Type: text/plain; charset=ISO-8859-1; format=flowed Content-Transfer-Encoding: 7bit Content-Disposition: inline References: <20061224230155.fc0a6c6a.torfinn.ingolfsen@broadpark.no> <20061225001321.5dfb2975.torfinn.ingolfsen@broadpark.no> <20061228145909.bbb6d193.torfinn.ingolfsen@broadpark.no> Cc: freebsd-multimedia@freebsd.org Subject: Re: MythTV port - status report X-BeenThere: freebsd-multimedia@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Multimedia discussions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 28 Dec 2006 22:35:39 -0000 On 12/28/06, Torfinn Ingolfsen wrote: > On Thu, 28 Dec 2006 02:30:23 -0800 > Derrick Ryalls wrote: > > > This issue kinda fell off this thread with no mention of a possible > > The answers(s) are probably delayed, because of the holiday season. > > > solution. I have a PVR-250 card and tried installing the pvr250 port. > > I can stream video via mplayer /dev/cxm0 and set the channel, but > > when I run mythtv-setup, it says it failed to probe the device. I > > tried the original sys file from my windows install cd as well as a > > sys file from hauppage directly, both have the same result. Was there > > any determination/work-around for the ioctl issue? > > The problem is in the driver (ie. the pvr250 port). It needs to be > fixed to include the necessary ioctls. > I'm still waiting for hints on how to go about fixing it. > > Or you could use another driver, if one was available. I know usleep > have support for pvr-250 / 350 cards as a goal for the pvrxx driver, > but it just isn't there yet. > At the moment I am unable to try the pvrxxx port since I don't have the required .rom file on my released CD from hauppage, nor did I see one on their support website. I am assuming that that file is only for the other cards, so it will be interesting to see how it turns out. I did try the driver from here http://mythtv.son.org/tiki-index.php?page=Multimedia+Drivers (which previously worked for me), but got this build error: /usr/ports/multimedia/pvr250]$ sudo make Some tuners (for example the Philips FQ1216M) supports multiple standards. Use the following configuration screen (or 'make config') to choose your local TV channel system if you have such a tuner. At this moment only the Philips FQ1216M is known to do this. If you don't have one, just ignore it. If you have one, select one (1) entry. ===> Vulnerability check disabled, database not found ===> Found saved configuration for pvr250-20041230_2 ===> Extracting for pvr250-20041230_2 => MD5 Checksum OK for cxm-20041230.shar. => No SHA256 checksum recorded for cxm-20041230.shar. => MD5 Checksum OK for pvr250-1.1.tar.gz. => No SHA256 checksum recorded for pvr250-1.1.tar.gz. => No SHA256 checksum for hcwPVRP2.sys recorded (expected IGNORE) /bin/mkdir -p /usr/ports/multimedia/pvr250/work cd /usr/ports/multimedia/pvr250/work; /bin/sh /usr/ports/distfiles/cxm-20041230.shar; /usr/bin/gzip -nf -9 -dc /usr/ports/distfiles//pvr250-1.1.tar.gz | /usr/bin/tar -xf -; c - dev/cxm x - dev/cxm/Patch.iicbb-fbsd4 x - dev/cxm/Patch.iicbb-fbsd5 x - dev/cxm/cxm.c x - dev/cxm/cxm.h x - dev/cxm/cxm_audio.c x - dev/cxm/cxm_eeprom.c x - dev/cxm/cxm_i2c.c x - dev/cxm/cxm_ir.c x - dev/cxm/cxm_tuner.c x - dev/cxm/cxm_video.c x - dev/cxm/cxm_extract_fw.c c - modules/cxm x - modules/cxm/Makefile c - modules/cxm/cxm x - modules/cxm/cxm/Makefile c - modules/cxm/cxm_iic x - modules/cxm/cxm_iic/Makefile ===> Patching for pvr250-20041230_2 ===> Applying extra patch /usr/ports/multimedia/pvr250/files/patchtuner-uscable ===> Applying extra patch /usr/ports/multimedia/pvr250/files/patchv4l-compat ===> Applying FreeBSD patches for pvr250-20041230_2 /usr/bin/sed -i.bak -e 's/bktr0/cxm0/' /usr/ports/multimedia/pvr250/work/pvr250-1.1/setchannel.c /usr/ports/multimedia/pvr250/work/pvr250-1.1/setsize.c ===> Configuring for pvr250-20041230_2 cd /usr/ports/multimedia/pvr250/work/dev/cxm; cc -Wall -o cxm_extract_fw cxm_extract_fw.c; ./cxm_extract_fw /usr/ports/distfiles/hcwPVRP2.sys cxm_extract_fw.c: In function `main': cxm_extract_fw.c:150: warning: implicit declaration of function `close' cxm_extract_fw.c:175: warning: suggest explicit braces to avoid ambiguous `else' cxm_extract_fw.c:189: warning: suggest explicit braces to avoid ambiguous `else' ===> Building for pvr250-20041230_2 cd /usr/ports/multimedia/pvr250/work/modules/cxm; make ===> cxm (all) Warning: Object directory not changed from original /usr/ports/multimedia/pvr250/work/modules/cxm/cxm @ -> /usr/src/sys machine -> /usr/src/sys/i386/include :> opt_cxm.h awk -f @/tools/makeobjops.awk @/kern/bus_if.m -h awk -f @/tools/makeobjops.awk @/kern/device_if.m -h awk -f @/tools/makeobjops.awk @/dev/iicbus/iicbb_if.m -h awk -f @/tools/makeobjops.awk @/dev/pci/pci_if.m -h awk -f @/tools/vnode_if.awk @/kern/vnode_if.src -p awk -f @/tools/vnode_if.awk @/kern/vnode_if.src -q awk -f @/tools/vnode_if.awk @/kern/vnode_if.src -h cc -O2 -fno-strict-aliasing -pipe -Werror -D_KERNEL -DKLD_MODULE -nostdinc -I- -I../../.. -I. -I@ -I@/contrib/altq -I@/../include -I/usr/include -finline-limit=8000 -fno-common -mno-align-long-strings -mpreferred-stack-boundary=2 -mno-mmx -mno-3dnow -mno-sse -mno-sse2 -ffreestanding -Wall -Wredundant-decls -Wnested-externs -Wstrict-prototypes -Wmissing-prototypes -Wpointer-arith -Winline -Wcast-qual -fformat-extensions -std=c99 -c /usr/ports/multimedia/pvr250/work/modules/cxm/cxm/../../../dev/cxm/cxm.c /usr/ports/multimedia/pvr250/work/modules/cxm/cxm/../../../dev/cxm/cxm.c:59:31: machine/bus_memio.h: No such file or directory /usr/ports/multimedia/pvr250/work/modules/cxm/cxm/../../../dev/cxm/cxm.c:156: error: unknown field `d_maj' specified in initializer /usr/ports/multimedia/pvr250/work/modules/cxm/cxm/../../../dev/cxm/cxm.c:156: error: `MAJOR_AUTO' undeclared here (not in a function) /usr/ports/multimedia/pvr250/work/modules/cxm/cxm/../../../dev/cxm/cxm.c:156: error: initializer element is not constant /usr/ports/multimedia/pvr250/work/modules/cxm/cxm/../../../dev/cxm/cxm.c:156: error: (near initialization for `cxm_cdevsw.d_name') /usr/ports/multimedia/pvr250/work/modules/cxm/cxm/../../../dev/cxm/cxm.c: In function `cxm_stop_encoder': /usr/ports/multimedia/pvr250/work/modules/cxm/cxm/../../../dev/cxm/cxm.c:1106: warning: passing arg 1 of `msleep' discards qualifiers from pointer target type /usr/ports/multimedia/pvr250/work/modules/cxm/cxm/../../../dev/cxm/cxm.c: In function `cxm_encoder_dma_done': /usr/ports/multimedia/pvr250/work/modules/cxm/cxm/../../../dev/cxm/cxm.c:1313: warning: passing arg 1 of `wakeup' discards qualifiers from pointer target type /usr/ports/multimedia/pvr250/work/modules/cxm/cxm/../../../dev/cxm/cxm.c: In function `cxm_attach': /usr/ports/multimedia/pvr250/work/modules/cxm/cxm/../../../dev/cxm/cxm.c:1624: error: `PCIR_MAPS' undeclared (first use in this function) /usr/ports/multimedia/pvr250/work/modules/cxm/cxm/../../../dev/cxm/cxm.c:1624: error: (Each undeclared identifier is reported only once /usr/ports/multimedia/pvr250/work/modules/cxm/cxm/../../../dev/cxm/cxm.c:1624: error: for each function it appears in.) /usr/ports/multimedia/pvr250/work/modules/cxm/cxm/../../../dev/cxm/cxm.c: In function `cxm_detach': /usr/ports/multimedia/pvr250/work/modules/cxm/cxm/../../../dev/cxm/cxm.c:1963: error: `PCIR_MAPS' undeclared (first use in this function) /usr/ports/multimedia/pvr250/work/modules/cxm/cxm/../../../dev/cxm/cxm.c: In function `cxm_intr': /usr/ports/multimedia/pvr250/work/modules/cxm/cxm/../../../dev/cxm/cxm.c:2010: warning: passing arg 1 of `wakeup' discards qualifiers from pointer target type /usr/ports/multimedia/pvr250/work/modules/cxm/cxm/../../../dev/cxm/cxm.c: In function `cxm_read': /usr/ports/multimedia/pvr250/work/modules/cxm/cxm/../../../dev/cxm/cxm.c:2207: warning: passing arg 1 of `msleep' discards qualifiers from pointer target type *** Error code 1 Stop in /usr/ports/multimedia/pvr250/work/modules/cxm/cxm. *** Error code 1 Stop in /usr/ports/multimedia/pvr250/work/modules/cxm. *** Error code 1 Stop in /usr/ports/multimedia/pvr250. I might need to retrace my steps as I don't recall seeing this before and the date stamp on the tar is quite old. I also don't know the history of the needed ioctl's, hopefully they were known at the time of this driver's writing so there is a possibility of them being supported once the build issues are ironed out. From owner-freebsd-multimedia@FreeBSD.ORG Thu Dec 28 22:49:07 2006 Return-Path: X-Original-To: freebsd-multimedia@freebsd.org Delivered-To: freebsd-multimedia@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 32E5116A403 for ; Thu, 28 Dec 2006 22:49:07 +0000 (UTC) (envelope-from usleepless@gmail.com) Received: from ug-out-1314.google.com (ug-out-1314.google.com [66.249.92.169]) by mx1.freebsd.org (Postfix) with ESMTP id AB37213C470 for ; Thu, 28 Dec 2006 22:49:06 +0000 (UTC) (envelope-from usleepless@gmail.com) Received: by ug-out-1314.google.com with SMTP id o2so3717888uge for ; Thu, 28 Dec 2006 14:49:05 -0800 (PST) DomainKey-Signature: a=rsa-sha1; q=dns; c=nofws; s=beta; d=gmail.com; h=received:message-id:date:from:to:subject:cc:in-reply-to:mime-version:content-type:content-transfer-encoding:content-disposition:references; b=Eq9rHj7RlbEUu+NOGihXPsNGAaD+ASa0/ApIsOKsoSRYbcL5kjSCjJvq4k/twPI6/iccY1U6ioR7QkDNIhbuPvRERVVkq87S3hGFTDhjiVjjzWWntAJ0Qrp6STnBet+5RHwDDf0A4g2BfWA9GTrJDxvjBNCPAkET3XFGULY8rhM= Received: by 10.78.183.15 with SMTP id g15mr678809huf.1167346145565; Thu, 28 Dec 2006 14:49:05 -0800 (PST) Received: by 10.78.124.8 with HTTP; Thu, 28 Dec 2006 14:49:05 -0800 (PST) Message-ID: Date: Thu, 28 Dec 2006 23:49:05 +0100 From: usleepless@gmail.com To: "Derrick Ryalls" In-Reply-To: MIME-Version: 1.0 Content-Type: text/plain; charset=ISO-8859-1; format=flowed Content-Transfer-Encoding: 7bit Content-Disposition: inline References: <20061224230155.fc0a6c6a.torfinn.ingolfsen@broadpark.no> <20061225001321.5dfb2975.torfinn.ingolfsen@broadpark.no> <20061228145909.bbb6d193.torfinn.ingolfsen@broadpark.no> Cc: freebsd-multimedia@freebsd.org Subject: Re: MythTV port - status report X-BeenThere: freebsd-multimedia@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Multimedia discussions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 28 Dec 2006 22:49:07 -0000 Derrick, Torfinn, On 12/28/06, Derrick Ryalls wrote: > On 12/28/06, Torfinn Ingolfsen wrote: > > On Thu, 28 Dec 2006 02:30:23 -0800 > > Derrick Ryalls wrote: > > > > > This issue kinda fell off this thread with no mention of a possible > > > > The answers(s) are probably delayed, because of the holiday season. > > > > > solution. I have a PVR-250 card and tried installing the pvr250 port. > > > I can stream video via mplayer /dev/cxm0 and set the channel, but > > > when I run mythtv-setup, it says it failed to probe the device. I > > > tried the original sys file from my windows install cd as well as a > > > sys file from hauppage directly, both have the same result. Was there > > > any determination/work-around for the ioctl issue? > > > > The problem is in the driver (ie. the pvr250 port). It needs to be > > fixed to include the necessary ioctls. > > I'm still waiting for hints on how to go about fixing it. > > > > Or you could use another driver, if one was available. I know usleep > > have support for pvr-250 / 350 cards as a goal for the pvrxx driver, > > but it just isn't there yet. > > > > At the moment I am unable to try the pvrxxx port since I don't have > the required .rom file on my released CD from hauppage, nor did I see > one on their support website. I am assuming that that file is only > for the other cards, so it will be interesting to see how it turns > out. > > I did try the driver from here > http://mythtv.son.org/tiki-index.php?page=Multimedia+Drivers (which > previously worked for me), but got this build error: > > /usr/ports/multimedia/pvr250]$ sudo make > Some tuners (for example the Philips FQ1216M) supports multiple standards. > Use the following configuration screen (or 'make config') to choose > your local TV channel system if you have such a tuner. > At this moment only the Philips FQ1216M is known to do this. If you > don't have one, just ignore it. If you have one, select one (1) > entry. > ===> Vulnerability check disabled, database not found > ===> Found saved configuration for pvr250-20041230_2 > ===> Extracting for pvr250-20041230_2 > => MD5 Checksum OK for cxm-20041230.shar. > => No SHA256 checksum recorded for cxm-20041230.shar. > => MD5 Checksum OK for pvr250-1.1.tar.gz. > => No SHA256 checksum recorded for pvr250-1.1.tar.gz. > => No SHA256 checksum for hcwPVRP2.sys recorded (expected IGNORE) > /bin/mkdir -p /usr/ports/multimedia/pvr250/work > cd /usr/ports/multimedia/pvr250/work; /bin/sh > /usr/ports/distfiles/cxm-20041230.shar; /usr/bin/gzip -nf -9 -dc > /usr/ports/distfiles//pvr250-1.1.tar.gz | /usr/bin/tar -xf -; > c - dev/cxm > x - dev/cxm/Patch.iicbb-fbsd4 > x - dev/cxm/Patch.iicbb-fbsd5 > x - dev/cxm/cxm.c > x - dev/cxm/cxm.h > x - dev/cxm/cxm_audio.c > x - dev/cxm/cxm_eeprom.c > x - dev/cxm/cxm_i2c.c > x - dev/cxm/cxm_ir.c > x - dev/cxm/cxm_tuner.c > x - dev/cxm/cxm_video.c > x - dev/cxm/cxm_extract_fw.c > c - modules/cxm > x - modules/cxm/Makefile > c - modules/cxm/cxm > x - modules/cxm/cxm/Makefile > c - modules/cxm/cxm_iic > x - modules/cxm/cxm_iic/Makefile > ===> Patching for pvr250-20041230_2 > ===> Applying extra patch > /usr/ports/multimedia/pvr250/files/patchtuner-uscable > ===> Applying extra patch > /usr/ports/multimedia/pvr250/files/patchv4l-compat > ===> Applying FreeBSD patches for pvr250-20041230_2 > /usr/bin/sed -i.bak -e 's/bktr0/cxm0/' > /usr/ports/multimedia/pvr250/work/pvr250-1.1/setchannel.c > /usr/ports/multimedia/pvr250/work/pvr250-1.1/setsize.c > ===> Configuring for pvr250-20041230_2 > cd /usr/ports/multimedia/pvr250/work/dev/cxm; cc -Wall -o > cxm_extract_fw cxm_extract_fw.c; ./cxm_extract_fw > /usr/ports/distfiles/hcwPVRP2.sys > cxm_extract_fw.c: In function `main': > cxm_extract_fw.c:150: warning: implicit declaration of function `close' > cxm_extract_fw.c:175: warning: suggest explicit braces to avoid ambiguous > `else' > cxm_extract_fw.c:189: warning: suggest explicit braces to avoid ambiguous > `else' > ===> Building for pvr250-20041230_2 > cd /usr/ports/multimedia/pvr250/work/modules/cxm; make > ===> cxm (all) > Warning: Object directory not changed from original > /usr/ports/multimedia/pvr250/work/modules/cxm/cxm > @ -> /usr/src/sys > machine -> /usr/src/sys/i386/include > :> opt_cxm.h > awk -f @/tools/makeobjops.awk @/kern/bus_if.m -h > awk -f @/tools/makeobjops.awk @/kern/device_if.m -h > awk -f @/tools/makeobjops.awk @/dev/iicbus/iicbb_if.m -h > awk -f @/tools/makeobjops.awk @/dev/pci/pci_if.m -h > awk -f @/tools/vnode_if.awk @/kern/vnode_if.src -p > awk -f @/tools/vnode_if.awk @/kern/vnode_if.src -q > awk -f @/tools/vnode_if.awk @/kern/vnode_if.src -h > cc -O2 -fno-strict-aliasing -pipe -Werror -D_KERNEL -DKLD_MODULE > -nostdinc -I- -I../../.. -I. -I@ -I@/contrib/altq -I@/../include > -I/usr/include -finline-limit=8000 -fno-common > -mno-align-long-strings -mpreferred-stack-boundary=2 -mno-mmx > -mno-3dnow -mno-sse -mno-sse2 -ffreestanding -Wall -Wredundant-decls > -Wnested-externs -Wstrict-prototypes -Wmissing-prototypes > -Wpointer-arith -Winline -Wcast-qual -fformat-extensions -std=c99 -c > /usr/ports/multimedia/pvr250/work/modules/cxm/cxm/../../../dev/cxm/cxm.c > /usr/ports/multimedia/pvr250/work/modules/cxm/cxm/../../../dev/cxm/cxm.c:59:31: > machine/bus_memio.h: No such file or directory > /usr/ports/multimedia/pvr250/work/modules/cxm/cxm/../../../dev/cxm/cxm.c:156: > error: unknown field `d_maj' specified in initializer > /usr/ports/multimedia/pvr250/work/modules/cxm/cxm/../../../dev/cxm/cxm.c:156: > error: `MAJOR_AUTO' undeclared here (not in a function) > /usr/ports/multimedia/pvr250/work/modules/cxm/cxm/../../../dev/cxm/cxm.c:156: > error: initializer element is not constant > /usr/ports/multimedia/pvr250/work/modules/cxm/cxm/../../../dev/cxm/cxm.c:156: > error: (near initialization for `cxm_cdevsw.d_name') > /usr/ports/multimedia/pvr250/work/modules/cxm/cxm/../../../dev/cxm/cxm.c: > In function `cxm_stop_encoder': > /usr/ports/multimedia/pvr250/work/modules/cxm/cxm/../../../dev/cxm/cxm.c:1106: > warning: passing arg 1 of `msleep' discards qualifiers from pointer > target type > /usr/ports/multimedia/pvr250/work/modules/cxm/cxm/../../../dev/cxm/cxm.c: > In function `cxm_encoder_dma_done': > /usr/ports/multimedia/pvr250/work/modules/cxm/cxm/../../../dev/cxm/cxm.c:1313: > warning: passing arg 1 of `wakeup' discards qualifiers from pointer > target type > /usr/ports/multimedia/pvr250/work/modules/cxm/cxm/../../../dev/cxm/cxm.c: > In function `cxm_attach': > /usr/ports/multimedia/pvr250/work/modules/cxm/cxm/../../../dev/cxm/cxm.c:1624: > error: `PCIR_MAPS' undeclared (first use in this function) > /usr/ports/multimedia/pvr250/work/modules/cxm/cxm/../../../dev/cxm/cxm.c:1624: > error: (Each undeclared identifier is reported only once > /usr/ports/multimedia/pvr250/work/modules/cxm/cxm/../../../dev/cxm/cxm.c:1624: > error: for each function it appears in.) > /usr/ports/multimedia/pvr250/work/modules/cxm/cxm/../../../dev/cxm/cxm.c: > In function `cxm_detach': > /usr/ports/multimedia/pvr250/work/modules/cxm/cxm/../../../dev/cxm/cxm.c:1963: > error: `PCIR_MAPS' undeclared (first use in this function) > /usr/ports/multimedia/pvr250/work/modules/cxm/cxm/../../../dev/cxm/cxm.c: > In function `cxm_intr': > /usr/ports/multimedia/pvr250/work/modules/cxm/cxm/../../../dev/cxm/cxm.c:2010: > warning: passing arg 1 of `wakeup' discards qualifiers from pointer > target type > /usr/ports/multimedia/pvr250/work/modules/cxm/cxm/../../../dev/cxm/cxm.c: > In function `cxm_read': > /usr/ports/multimedia/pvr250/work/modules/cxm/cxm/../../../dev/cxm/cxm.c:2207: > warning: passing arg 1 of `msleep' discards qualifiers from pointer > target type > *** Error code 1 > > Stop in /usr/ports/multimedia/pvr250/work/modules/cxm/cxm. > *** Error code 1 > > Stop in /usr/ports/multimedia/pvr250/work/modules/cxm. > *** Error code 1 > > Stop in /usr/ports/multimedia/pvr250. > > I might need to retrace my steps as I don't recall seeing this before > and the date stamp on the tar is quite old. I also don't know the > history of the needed ioctl's, hopefully they were known at the time > of this driver's writing so there is a possibility of them being > supported once the build issues are ironed out. i will try to package my latest version of the pvrxxx asap. - it downloads the firmware images from ivtv - it supports the v4l2 interface you need ( or you'll need to tweak mythtv to support the bsdstyle of accessing the device ) i hope to have it ready tomorrow. regards, usleep From owner-freebsd-multimedia@FreeBSD.ORG Thu Dec 28 22:53:05 2006 Return-Path: X-Original-To: freebsd-multimedia@freebsd.org Delivered-To: freebsd-multimedia@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 3340C16A407 for ; Thu, 28 Dec 2006 22:53:05 +0000 (UTC) (envelope-from ryallsd@gmail.com) Received: from nf-out-0910.google.com (nf-out-0910.google.com [64.233.182.188]) by mx1.freebsd.org (Postfix) with ESMTP id A9BB213C463 for ; Thu, 28 Dec 2006 22:53:04 +0000 (UTC) (envelope-from ryallsd@gmail.com) Received: by nf-out-0910.google.com with SMTP id x37so5297738nfc for ; Thu, 28 Dec 2006 14:53:03 -0800 (PST) DomainKey-Signature: a=rsa-sha1; q=dns; c=nofws; s=beta; d=gmail.com; h=received:message-id:date:from:to:subject:cc:in-reply-to:mime-version:content-type:content-transfer-encoding:content-disposition:references; b=KjkOAZnPXDeCLKPqR3pySWoxsEk1ARVqAPAH8GWMLyvQXQ+5pBnhFrR20fJ7AXsmtqXOCUCTOA2p7Ax4b1ouKu6ou1opaejU7S1mETYBOLC9U2ST3RQw/VxU4/quD4wZK8ie02q/uHzXPFCUAlRmbSn3Kj5V97haOJM3pNEICuE= Received: by 10.82.139.17 with SMTP id m17mr983239bud.1167346383517; Thu, 28 Dec 2006 14:53:03 -0800 (PST) Received: by 10.82.154.7 with HTTP; Thu, 28 Dec 2006 14:53:03 -0800 (PST) Message-ID: Date: Thu, 28 Dec 2006 14:53:03 -0800 From: "Derrick Ryalls" To: "usleepless@gmail.com" In-Reply-To: MIME-Version: 1.0 Content-Type: text/plain; charset=ISO-8859-1; format=flowed Content-Transfer-Encoding: 7bit Content-Disposition: inline References: <20061224230155.fc0a6c6a.torfinn.ingolfsen@broadpark.no> <20061225001321.5dfb2975.torfinn.ingolfsen@broadpark.no> <20061228145909.bbb6d193.torfinn.ingolfsen@broadpark.no> Cc: freebsd-multimedia@freebsd.org Subject: Re: MythTV port - status report X-BeenThere: freebsd-multimedia@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Multimedia discussions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 28 Dec 2006 22:53:05 -0000 On 12/28/06, usleepless@gmail.com wrote: > Derrick, Torfinn, > > On 12/28/06, Derrick Ryalls wrote: > > On 12/28/06, Torfinn Ingolfsen wrote: > > > On Thu, 28 Dec 2006 02:30:23 -0800 > > > Derrick Ryalls wrote: > > > > > > > This issue kinda fell off this thread with no mention of a possible > > > > > > The answers(s) are probably delayed, because of the holiday season. > > > > > > > solution. I have a PVR-250 card and tried installing the pvr250 port. > > > > I can stream video via mplayer /dev/cxm0 and set the channel, but > > > > when I run mythtv-setup, it says it failed to probe the device. I > > > > tried the original sys file from my windows install cd as well as a > > > > sys file from hauppage directly, both have the same result. Was there > > > > any determination/work-around for the ioctl issue? > > > > > > The problem is in the driver (ie. the pvr250 port). It needs to be > > > fixed to include the necessary ioctls. > > > I'm still waiting for hints on how to go about fixing it. > > > > > > Or you could use another driver, if one was available. I know usleep > > > have support for pvr-250 / 350 cards as a goal for the pvrxx driver, > > > but it just isn't there yet. > > > > > > > At the moment I am unable to try the pvrxxx port since I don't have > > the required .rom file on my released CD from hauppage, nor did I see > > one on their support website. I am assuming that that file is only > > for the other cards, so it will be interesting to see how it turns > > out. > > > > I did try the driver from here > > http://mythtv.son.org/tiki-index.php?page=Multimedia+Drivers (which > > previously worked for me), but got this build error: > > > > /usr/ports/multimedia/pvr250]$ sudo make > > Some tuners (for example the Philips FQ1216M) supports multiple standards. > > Use the following configuration screen (or 'make config') to choose > > your local TV channel system if you have such a tuner. > > At this moment only the Philips FQ1216M is known to do this. If you > > don't have one, just ignore it. If you have one, select one (1) > > entry. > > ===> Vulnerability check disabled, database not found > > ===> Found saved configuration for pvr250-20041230_2 > > ===> Extracting for pvr250-20041230_2 > > => MD5 Checksum OK for cxm-20041230.shar. > > => No SHA256 checksum recorded for cxm-20041230.shar. > > => MD5 Checksum OK for pvr250-1.1.tar.gz. > > => No SHA256 checksum recorded for pvr250-1.1.tar.gz. > > => No SHA256 checksum for hcwPVRP2.sys recorded (expected IGNORE) > > /bin/mkdir -p /usr/ports/multimedia/pvr250/work > > cd /usr/ports/multimedia/pvr250/work; /bin/sh > > /usr/ports/distfiles/cxm-20041230.shar; /usr/bin/gzip -nf -9 -dc > > /usr/ports/distfiles//pvr250-1.1.tar.gz | /usr/bin/tar -xf -; > > c - dev/cxm > > x - dev/cxm/Patch.iicbb-fbsd4 > > x - dev/cxm/Patch.iicbb-fbsd5 > > x - dev/cxm/cxm.c > > x - dev/cxm/cxm.h > > x - dev/cxm/cxm_audio.c > > x - dev/cxm/cxm_eeprom.c > > x - dev/cxm/cxm_i2c.c > > x - dev/cxm/cxm_ir.c > > x - dev/cxm/cxm_tuner.c > > x - dev/cxm/cxm_video.c > > x - dev/cxm/cxm_extract_fw.c > > c - modules/cxm > > x - modules/cxm/Makefile > > c - modules/cxm/cxm > > x - modules/cxm/cxm/Makefile > > c - modules/cxm/cxm_iic > > x - modules/cxm/cxm_iic/Makefile > > ===> Patching for pvr250-20041230_2 > > ===> Applying extra patch > > /usr/ports/multimedia/pvr250/files/patchtuner-uscable > > ===> Applying extra patch > > /usr/ports/multimedia/pvr250/files/patchv4l-compat > > ===> Applying FreeBSD patches for pvr250-20041230_2 > > /usr/bin/sed -i.bak -e 's/bktr0/cxm0/' > > /usr/ports/multimedia/pvr250/work/pvr250-1.1/setchannel.c > > /usr/ports/multimedia/pvr250/work/pvr250-1.1/setsize.c > > ===> Configuring for pvr250-20041230_2 > > cd /usr/ports/multimedia/pvr250/work/dev/cxm; cc -Wall -o > > cxm_extract_fw cxm_extract_fw.c; ./cxm_extract_fw > > /usr/ports/distfiles/hcwPVRP2.sys > > cxm_extract_fw.c: In function `main': > > cxm_extract_fw.c:150: warning: implicit declaration of function `close' > > cxm_extract_fw.c:175: warning: suggest explicit braces to avoid ambiguous > > `else' > > cxm_extract_fw.c:189: warning: suggest explicit braces to avoid ambiguous > > `else' > > ===> Building for pvr250-20041230_2 > > cd /usr/ports/multimedia/pvr250/work/modules/cxm; make > > ===> cxm (all) > > Warning: Object directory not changed from original > > /usr/ports/multimedia/pvr250/work/modules/cxm/cxm > > @ -> /usr/src/sys > > machine -> /usr/src/sys/i386/include > > :> opt_cxm.h > > awk -f @/tools/makeobjops.awk @/kern/bus_if.m -h > > awk -f @/tools/makeobjops.awk @/kern/device_if.m -h > > awk -f @/tools/makeobjops.awk @/dev/iicbus/iicbb_if.m -h > > awk -f @/tools/makeobjops.awk @/dev/pci/pci_if.m -h > > awk -f @/tools/vnode_if.awk @/kern/vnode_if.src -p > > awk -f @/tools/vnode_if.awk @/kern/vnode_if.src -q > > awk -f @/tools/vnode_if.awk @/kern/vnode_if.src -h > > cc -O2 -fno-strict-aliasing -pipe -Werror -D_KERNEL -DKLD_MODULE > > -nostdinc -I- -I../../.. -I. -I@ -I@/contrib/altq -I@/../include > > -I/usr/include -finline-limit=8000 -fno-common > > -mno-align-long-strings -mpreferred-stack-boundary=2 -mno-mmx > > -mno-3dnow -mno-sse -mno-sse2 -ffreestanding -Wall -Wredundant-decls > > -Wnested-externs -Wstrict-prototypes -Wmissing-prototypes > > -Wpointer-arith -Winline -Wcast-qual -fformat-extensions -std=c99 -c > > /usr/ports/multimedia/pvr250/work/modules/cxm/cxm/../../../dev/cxm/cxm.c > > /usr/ports/multimedia/pvr250/work/modules/cxm/cxm/../../../dev/cxm/cxm.c:59:31: > > machine/bus_memio.h: No such file or directory > > /usr/ports/multimedia/pvr250/work/modules/cxm/cxm/../../../dev/cxm/cxm.c:156: > > error: unknown field `d_maj' specified in initializer > > /usr/ports/multimedia/pvr250/work/modules/cxm/cxm/../../../dev/cxm/cxm.c:156: > > error: `MAJOR_AUTO' undeclared here (not in a function) > > /usr/ports/multimedia/pvr250/work/modules/cxm/cxm/../../../dev/cxm/cxm.c:156: > > error: initializer element is not constant > > /usr/ports/multimedia/pvr250/work/modules/cxm/cxm/../../../dev/cxm/cxm.c:156: > > error: (near initialization for `cxm_cdevsw.d_name') > > /usr/ports/multimedia/pvr250/work/modules/cxm/cxm/../../../dev/cxm/cxm.c: > > In function `cxm_stop_encoder': > > /usr/ports/multimedia/pvr250/work/modules/cxm/cxm/../../../dev/cxm/cxm.c:1106: > > warning: passing arg 1 of `msleep' discards qualifiers from pointer > > target type > > /usr/ports/multimedia/pvr250/work/modules/cxm/cxm/../../../dev/cxm/cxm.c: > > In function `cxm_encoder_dma_done': > > /usr/ports/multimedia/pvr250/work/modules/cxm/cxm/../../../dev/cxm/cxm.c:1313: > > warning: passing arg 1 of `wakeup' discards qualifiers from pointer > > target type > > /usr/ports/multimedia/pvr250/work/modules/cxm/cxm/../../../dev/cxm/cxm.c: > > In function `cxm_attach': > > /usr/ports/multimedia/pvr250/work/modules/cxm/cxm/../../../dev/cxm/cxm.c:1624: > > error: `PCIR_MAPS' undeclared (first use in this function) > > /usr/ports/multimedia/pvr250/work/modules/cxm/cxm/../../../dev/cxm/cxm.c:1624: > > error: (Each undeclared identifier is reported only once > > /usr/ports/multimedia/pvr250/work/modules/cxm/cxm/../../../dev/cxm/cxm.c:1624: > > error: for each function it appears in.) > > /usr/ports/multimedia/pvr250/work/modules/cxm/cxm/../../../dev/cxm/cxm.c: > > In function `cxm_detach': > > /usr/ports/multimedia/pvr250/work/modules/cxm/cxm/../../../dev/cxm/cxm.c:1963: > > error: `PCIR_MAPS' undeclared (first use in this function) > > /usr/ports/multimedia/pvr250/work/modules/cxm/cxm/../../../dev/cxm/cxm.c: > > In function `cxm_intr': > > /usr/ports/multimedia/pvr250/work/modules/cxm/cxm/../../../dev/cxm/cxm.c:2010: > > warning: passing arg 1 of `wakeup' discards qualifiers from pointer > > target type > > /usr/ports/multimedia/pvr250/work/modules/cxm/cxm/../../../dev/cxm/cxm.c: > > In function `cxm_read': > > /usr/ports/multimedia/pvr250/work/modules/cxm/cxm/../../../dev/cxm/cxm.c:2207: > > warning: passing arg 1 of `msleep' discards qualifiers from pointer > > target type > > *** Error code 1 > > > > Stop in /usr/ports/multimedia/pvr250/work/modules/cxm/cxm. > > *** Error code 1 > > > > Stop in /usr/ports/multimedia/pvr250/work/modules/cxm. > > *** Error code 1 > > > > Stop in /usr/ports/multimedia/pvr250. > > > > I might need to retrace my steps as I don't recall seeing this before > > and the date stamp on the tar is quite old. I also don't know the > > history of the needed ioctl's, hopefully they were known at the time > > of this driver's writing so there is a possibility of them being > > supported once the build issues are ironed out. > > i will try to package my latest version of the pvrxxx asap. > - it downloads the firmware images from ivtv > - it supports the v4l2 interface you need ( or you'll need to tweak > mythtv to support the bsdstyle of accessing the device ) > > i hope to have it ready tomorrow. > > regards, > > usleep > Thanks! I look forward to trying it out. From owner-freebsd-multimedia@FreeBSD.ORG Fri Dec 29 11:28:21 2006 Return-Path: X-Original-To: freebsd-multimedia@freebsd.org Delivered-To: freebsd-multimedia@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id A559716A407 for ; Fri, 29 Dec 2006 11:28:21 +0000 (UTC) (envelope-from torfinn.ingolfsen@broadpark.no) Received: from osl1smout1.broadpark.no (osl1smout1.broadpark.no [80.202.4.58]) by mx1.freebsd.org (Postfix) with ESMTP id 6129313C442 for ; Fri, 29 Dec 2006 11:28:21 +0000 (UTC) (envelope-from torfinn.ingolfsen@broadpark.no) Received: from osl1sminn1.broadpark.no ([80.202.4.59]) by osl1smout1.broadpark.no (Sun Java System Messaging Server 6.1 HotFix 0.05 (built Oct 21 2004)) with ESMTP id <0JB10052G96U2V80@osl1smout1.broadpark.no> for freebsd-multimedia@freebsd.org; Fri, 29 Dec 2006 12:28:06 +0100 (CET) Received: from kg-work.kg4.no ([80.203.66.169]) by osl1sminn1.broadpark.no (Sun Java System Messaging Server 6.1 HotFix 0.05 (built Oct 21 2004)) with SMTP id <0JB100KG096U9T11@osl1sminn1.broadpark.no> for freebsd-multimedia@freebsd.org; Fri, 29 Dec 2006 12:28:06 +0100 (CET) Date: Fri, 29 Dec 2006 12:28:01 +0100 From: Torfinn Ingolfsen X-Face: "t9w2,-X@O^I`jVW\sonI3.,36KBLZE*AL[y9lL[PyFD*r_S:dIL9c[8Y>V42R0"!"yb_zN,f#%.[PYYNq; m"_0v; ~rUM2Yy!zmkh)3&U|u!=T(zyv,MHJv"nDH>OJ`t(@mil461d_B'Uo|'nMwlKe0Mv=kvV?Nh@>Hb<3s_z2jYgZhPb@?Wi^x1a~Hplz1.zH In-reply-to: To: freebsd-multimedia@freebsd.org Message-id: <20061229122801.41c5efea.torfinn.ingolfsen@broadpark.no> MIME-version: 1.0 X-Mailer: Sylpheed version 2.2.10 (GTK+ 2.10.6; i386-portbld-freebsd6.2) Content-type: text/plain; charset=US-ASCII Content-transfer-encoding: 7BIT References: <20061224230155.fc0a6c6a.torfinn.ingolfsen@broadpark.no> <20061225001321.5dfb2975.torfinn.ingolfsen@broadpark.no> <20061228145909.bbb6d193.torfinn.ingolfsen@broadpark.no> Subject: Re: MythTV port - status report X-BeenThere: freebsd-multimedia@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Multimedia discussions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 29 Dec 2006 11:28:21 -0000 On Thu, 28 Dec 2006 14:53:03 -0800 Derrick Ryalls wrote: > Thanks! > > I look forward to trying it out. /me too. Another thing: boys & girls - could you please trim off excess lines of text when you're quoting a message? Thank you. -- Regards, Torfinn Ingolfsen, Norway From owner-freebsd-multimedia@FreeBSD.ORG Fri Dec 29 11:47:19 2006 Return-Path: X-Original-To: freebsd-multimedia@freebsd.org Delivered-To: freebsd-multimedia@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 7A88216A7E3; Fri, 29 Dec 2006 11:47:19 +0000 (UTC) (envelope-from alexander@leidinger.net) Received: from redbull.bpaserver.net (redbullneu.bpaserver.net [213.198.78.217]) by mx1.freebsd.org (Postfix) with ESMTP id 316E213C458; Fri, 29 Dec 2006 11:47:19 +0000 (UTC) (envelope-from alexander@leidinger.net) Received: from outgoing.leidinger.net (p54A5F10D.dip.t-dialin.net [84.165.241.13]) by redbull.bpaserver.net (Postfix) with ESMTP id 31AFC2E146; Fri, 29 Dec 2006 11:50:05 +0100 (CET) Received: from webmail.leidinger.net (webmail.Leidinger.net [192.168.1.102]) by outgoing.leidinger.net (Postfix) with ESMTP id 896D85B4845; Fri, 29 Dec 2006 11:47:12 +0100 (CET) Received: (from www@localhost) by webmail.leidinger.net (8.13.8/8.13.8/Submit) id kBTAlCIc025722; Fri, 29 Dec 2006 11:47:12 +0100 (CET) (envelope-from Alexander@Leidinger.net) Received: from pslux.cec.eu.int (pslux.cec.eu.int [158.169.9.14]) by webmail.leidinger.net (Horde MIME library) with HTTP; Fri, 29 Dec 2006 11:47:12 +0100 Message-ID: <20061229114712.z5sl1beehw4k8woo@webmail.leidinger.net> X-Priority: 3 (Normal) Date: Fri, 29 Dec 2006 11:47:12 +0100 From: Alexander Leidinger To: Steve Clement References: <4593C1C5.5060405@localhost.lu> In-Reply-To: <4593C1C5.5060405@localhost.lu> MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8; DelSp="Yes"; format="flowed" Content-Disposition: inline Content-Transfer-Encoding: quoted-printable User-Agent: Internet Messaging Program (IMP) H3 (4.1.3) / FreeBSD-7.0 X-BPAnet-MailScanner-Information: Please contact the ISP for more information X-BPAnet-MailScanner: Found to be clean X-BPAnet-MailScanner-SpamCheck: not spam, SpamAssassin (not cached, score=-14.787, required 6, autolearn=not spam, BAYES_00 -15.00, DK_POLICY_SIGNSOME 0.00, FORGED_RCVD_HELO 0.14, TW_SN 0.08) X-BPAnet-MailScanner-From: alexander@leidinger.net X-Spam-Status: No Cc: freebsd-multimedia@FreeBSD.org, ariff@FreeBSD.org Subject: Re: ICH7 snd_hda X-BeenThere: freebsd-multimedia@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Multimedia discussions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 29 Dec 2006 11:47:19 -0000 Quoting Steve Clement (from Thu, 28 Dec 2006 =20 14:08:21 +0100): > I wondered what that plans are on including the snd_hda driver in any > of the upcoming releases as it seems to be stable enough to listen to > things and using the mic 6.2 is around the corner. It would be even there already if we didn't =20 had a hardware problem with our master ftp server. Now that the =20 problems with the ftp server are resolved, the goal is to get 6.2 out =20 of the door. Fixes for (showstopper) bugs can go in, but not new =20 drivers or features at this point in time. So don't expect the HDA =20 stuff to appear in 6.2. 7.0 will be the new stable branch in half a year. 6.3 will not appear =20 in less than half a year. If HDA will be in 6.3 or not is open (I =20 think). Bye, Alexander. --=20 Your mind understands what you have been taught; your heart, what is true. http://www.Leidinger.net Alexander @ Leidinger.net: PGP ID =3D B0063FE7 http://www.FreeBSD.org netchild @ FreeBSD.org : PGP ID =3D 72077137 From owner-freebsd-multimedia@FreeBSD.ORG Fri Dec 29 12:16:43 2006 Return-Path: X-Original-To: freebsd-multimedia@freebsd.org Delivered-To: freebsd-multimedia@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 5ADD716A4C2 for ; Fri, 29 Dec 2006 12:16:43 +0000 (UTC) (envelope-from grog@lemis.com) Received: from ext-gw.lemis.com (ext-gw.lemis.com [150.101.14.10]) by mx1.freebsd.org (Postfix) with ESMTP id F2F1613C44B for ; Fri, 29 Dec 2006 12:16:42 +0000 (UTC) (envelope-from grog@lemis.com) Received: from wantadilla.lemis.com (wantadilla.lemis.com [192.109.197.135]) by ext-gw.lemis.com (Postfix) with ESMTP id 1A843133A3F; Fri, 29 Dec 2006 11:17:10 +1030 (CST) Received: by wantadilla.lemis.com (Postfix, from userid 1004) id 0F5539C959; Fri, 29 Dec 2006 11:17:10 +1030 (CST) Date: Fri, 29 Dec 2006 11:17:10 +1030 From: Greg 'groggy' Lehey To: Torfinn Ingolfsen Message-ID: <20061229004709.GH78631@wantadilla.lemis.com> References: <20061227183704.374658c3.torfinn.ingolfsen@broadpark.no> Mime-Version: 1.0 Content-Type: multipart/signed; micalg=pgp-sha1; protocol="application/pgp-signature"; boundary="nG7dHWd/DOCuxGWF" Content-Disposition: inline In-Reply-To: <20061227183704.374658c3.torfinn.ingolfsen@broadpark.no> User-Agent: Mutt/1.4.2.1i Organization: The FreeBSD Project Phone: +61-8-8388-8286 Fax: +61-8-8388-8725 Mobile: +61-418-838-708 VoIP: sip:0871270137@sip.internode.on.net WWW-Home-Page: http://www.FreeBSD.org/ X-PGP-Fingerprint: 9A1B 8202 BCCE B846 F92F 09AC 22E6 F290 507A 4223 Cc: freebsd-multimedia@freebsd.org Subject: Re: MythTV port X-BeenThere: freebsd-multimedia@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Multimedia discussions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 29 Dec 2006 12:16:43 -0000 --nG7dHWd/DOCuxGWF Content-Type: text/plain; charset=us-ascii Content-Disposition: inline On Wednesday, 27 December 2006 at 18:37:04 +0100, Torfinn Ingolfsen wrote: > > AFAIK, the situation is like this: the MythTV port is created, but > there are not many success reports yet. Perhaps because not a lot of > people have tried it yet, or perhaps because the port has problems. There's a good chance that both apply. As nominal maintainer, I should confess that I haven't found time to try it out. I'm more interested in doing it well than doing it quickly, and I'll probably spend a lot of time ensuring that it configures easily. Any help I can get there is welcome. After that, I'll only be using it for playback, at least until we get some DVB tuner support. Greg -- See complete headers for address and phone numbers. --nG7dHWd/DOCuxGWF Content-Type: application/pgp-signature Content-Disposition: inline -----BEGIN PGP SIGNATURE----- Version: GnuPG v1.4.3 (FreeBSD) iD8DBQFFlGWNIubykFB6QiMRAjVKAKCKLWuWRTVf8digejw3kDlMBZVNvQCfXIft 6yXgQ/ndfPsFYjjxFWobRKU= =VwPb -----END PGP SIGNATURE----- --nG7dHWd/DOCuxGWF-- From owner-freebsd-multimedia@FreeBSD.ORG Fri Dec 29 22:06:45 2006 Return-Path: X-Original-To: freebsd-multimedia@freebsd.org Delivered-To: freebsd-multimedia@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 75F5E16A403 for ; Fri, 29 Dec 2006 22:06:45 +0000 (UTC) (envelope-from usleepless@gmail.com) Received: from ug-out-1314.google.com (ug-out-1314.google.com [66.249.92.174]) by mx1.freebsd.org (Postfix) with ESMTP id 8C39113C441 for ; Fri, 29 Dec 2006 22:06:44 +0000 (UTC) (envelope-from usleepless@gmail.com) Received: by ug-out-1314.google.com with SMTP id o2so3944938uge for ; Fri, 29 Dec 2006 14:06:43 -0800 (PST) DomainKey-Signature: a=rsa-sha1; q=dns; c=nofws; s=beta; d=gmail.com; h=received:message-id:date:from:to:subject:cc:in-reply-to:mime-version:content-type:references; b=lMsZrvSbgWxEWAD8SMpawrDFKd6x4j5li6nDMyH93L7GfpurZ7+8BMw0nWPTHX2sh4IfKy7G5mefZFA88HF+kdcyI6rPC9oBgYECx/MeuOyzavs8jDCd3d03xzrdUhTMQscmPaxpekZSMoFvZdOqbaYsmHFd/SVj+c8FZ5ifEmY= Received: by 10.78.157.8 with SMTP id f8mr1190026hue.1167430003187; Fri, 29 Dec 2006 14:06:43 -0800 (PST) Received: by 10.78.123.18 with HTTP; Fri, 29 Dec 2006 14:06:42 -0800 (PST) Message-ID: Date: Fri, 29 Dec 2006 23:06:43 +0100 From: usleepless@gmail.com To: "Derrick Ryalls" In-Reply-To: MIME-Version: 1.0 Content-Type: multipart/mixed; boundary="----=_Part_87805_31472580.1167430002999" References: <20061224230155.fc0a6c6a.torfinn.ingolfsen@broadpark.no> <20061225001321.5dfb2975.torfinn.ingolfsen@broadpark.no> <20061228145909.bbb6d193.torfinn.ingolfsen@broadpark.no> X-Content-Filtered-By: Mailman/MimeDel 2.1.5 Cc: freebsd-multimedia@freebsd.org Subject: Re: MythTV port - status report X-BeenThere: freebsd-multimedia@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Multimedia discussions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 29 Dec 2006 22:06:45 -0000 ------=_Part_87805_31472580.1167430002999 Content-Type: text/plain; charset=ISO-8859-1; format=flowed Content-Transfer-Encoding: 7bit Content-Disposition: inline Torfinn, Derrick, List, > > i will try to package my latest version of the pvrxxx asap. > > - it downloads the firmware images from ivtv > > - it supports the v4l2 interface you need ( or you'll need to tweak > > mythtv to support the bsdstyle of accessing the device ) > > > > i hope to have it ready tomorrow. > > > > regards, > > > > usleep > > > > Thanks! > > I look forward to trying it out. well, here is the first try. files: pvrxxx.tgz: the port, extract in /usr/ports/multimedia pvrxxx_gpl.tgz: some gpl-ivtv-files, put it in /usr/ports/distfiles sys/kern/subr_taskqueue.c(.diff): this is how my subr_taskqueue.c looks like. it was taken from 7.0?, and it is the code that supports the new if_em and now pvrxxx too. it is needed to implement fast interrupts. sys/sys/taskqueue.h(.diff) idem dito. i can imagine very well that there might be problems. please let me know. regards, usleep ------=_Part_87805_31472580.1167430002999 Content-Type: text/x-diff; name=subr_taskqueue.c.diff; charset=ANSI_X3.4-1968 Content-Transfer-Encoding: base64 X-Attachment-Id: file4 Content-Disposition: attachment; filename="subr_taskqueue.c.diff" LS0tIHN1YnJfdGFza3F1ZXVlLmMuYmtwCU1vbiBPY3QgMjMgMjA6MDE6NDIgMjAwNgorKysgc3Vi cl90YXNrcXVldWUuYwlUaHUgT2N0IDI2IDEyOjQ0OjM1IDIwMDYKQEAgLTI1LDcgKzI1LDcgQEAK ICAqLwogCiAjaW5jbHVkZSA8c3lzL2NkZWZzLmg+Ci1fX0ZCU0RJRCgiJEZyZWVCU0Q6IHNyYy9z eXMva2Vybi9zdWJyX3Rhc2txdWV1ZS5jLHYgMS4yNy4yLjMgMjAwNi8wNC8wMiAwMDoxNDo1NyBz YW0gRXhwICQiKTsKK19fRkJTRElEKCIkRnJlZUJTRDogL3JlcG9tYW4vci9uY3ZzL3NyYy9zeXMv a2Vybi9zdWJyX3Rhc2txdWV1ZS5jLHYgMS4yNy4yLjUgMjAwNi8wOS8wMiAxNToyODowOSBzYW0g RXhwICQiKTsKIAogI2luY2x1ZGUgPHN5cy9wYXJhbS5oPgogI2luY2x1ZGUgPHN5cy9zeXN0bS5o PgpAQCAtMzcsOCArMzcsMTAgQEAKICNpbmNsdWRlIDxzeXMvbWFsbG9jLmg+CiAjaW5jbHVkZSA8 c3lzL211dGV4Lmg+CiAjaW5jbHVkZSA8c3lzL3Byb2MuaD4KKyNpbmNsdWRlIDxzeXMvc2NoZWQu aD4KICNpbmNsdWRlIDxzeXMvdGFza3F1ZXVlLmg+CiAjaW5jbHVkZSA8c3lzL3VuaXN0ZC5oPgor I2luY2x1ZGUgPG1hY2hpbmUvc3RkYXJnLmg+CiAKIHN0YXRpYyBNQUxMT0NfREVGSU5FKE1fVEFT S1FVRVVFLCAidGFza3F1ZXVlIiwgIlRhc2sgUXVldWVzIik7CiBzdGF0aWMgdm9pZAkqdGFza3F1 ZXVlX2dpYW50X2loOwpAQCAtNTUsMTAgKzU3LDQyIEBACiAJc3RydWN0IHRhc2sJCSp0cV9ydW5u aW5nOwogCXN0cnVjdCBtdHgJCXRxX211dGV4OwogCXN0cnVjdCBwcm9jCQkqKnRxX3Bwcm9jOwor CWludAkJCXRxX3Bjb3VudDsKKwlpbnQJCQl0cV9zcGluOworCWludAkJCXRxX2ZsYWdzOwogfTsK IAorI2RlZmluZQlUUV9GTEFHU19BQ1RJVkUJCSgxIDw8IDApCisKK3N0YXRpYyBfX2lubGluZSB2 b2lkCitUUV9MT0NLKHN0cnVjdCB0YXNrcXVldWUgKnRxKQoreworCWlmICh0cS0+dHFfc3BpbikK KwkJbXR4X2xvY2tfc3BpbigmdHEtPnRxX211dGV4KTsKKwllbHNlCisJCW10eF9sb2NrKCZ0cS0+ dHFfbXV0ZXgpOworfQorCitzdGF0aWMgX19pbmxpbmUgdm9pZAorVFFfVU5MT0NLKHN0cnVjdCB0 YXNrcXVldWUgKnRxKQoreworCWlmICh0cS0+dHFfc3BpbikKKwkJbXR4X3VubG9ja19zcGluKCZ0 cS0+dHFfbXV0ZXgpOworCWVsc2UKKwkJbXR4X3VubG9jaygmdHEtPnRxX211dGV4KTsKK30KKwog c3RhdGljIHZvaWQJaW5pdF90YXNrcXVldWVfbGlzdCh2b2lkICpkYXRhKTsKIAorc3RhdGljIF9f aW5saW5lIGludAorVFFfU0xFRVAoc3RydWN0IHRhc2txdWV1ZSAqdHEsIHZvaWQgKnAsIHN0cnVj dCBtdHggKm0sIGludCBwcmksIGNvbnN0IGNoYXIgKndtLAorICAgIGludCB0KQoreworCWlmICh0 cS0+dHFfc3BpbikKKwkJcmV0dXJuIChtc2xlZXBfc3BpbihwLCBtLCB3bSwgdCkpOworCXJldHVy biAobXNsZWVwKHAsIG0sIHByaSwgd20sIHQpKTsKK30KKwogc3RhdGljIHZvaWQKIGluaXRfdGFz a3F1ZXVlX2xpc3Qodm9pZCAqZGF0YSBfX3VudXNlZCkKIHsKQEAgLTY5LDEwICsxMDMsMTAgQEAK IFNZU0lOSVQodGFza3F1ZXVlX2xpc3QsIFNJX1NVQl9JTlRSSU5TSUMsIFNJX09SREVSX0FOWSwg aW5pdF90YXNrcXVldWVfbGlzdCwKICAgICBOVUxMKTsKIAotc3RydWN0IHRhc2txdWV1ZSAqCi10 YXNrcXVldWVfY3JlYXRlKGNvbnN0IGNoYXIgKm5hbWUsIGludCBtZmxhZ3MsCitzdGF0aWMgc3Ry dWN0IHRhc2txdWV1ZSAqCitfdGFza3F1ZXVlX2NyZWF0ZShjb25zdCBjaGFyICpuYW1lLCBpbnQg bWZsYWdzLAogCQkgdGFza3F1ZXVlX2VucXVldWVfZm4gZW5xdWV1ZSwgdm9pZCAqY29udGV4dCwK LQkJIHN0cnVjdCBwcm9jICoqcHApCisJCSBpbnQgbXR4ZmxhZ3MsIGNvbnN0IGNoYXIgKm10eG5h bWUpCiB7CiAJc3RydWN0IHRhc2txdWV1ZSAqcXVldWU7CiAKQEAgLTg0LDggKzExOCw5IEBACiAJ cXVldWUtPnRxX25hbWUgPSBuYW1lOwogCXF1ZXVlLT50cV9lbnF1ZXVlID0gZW5xdWV1ZTsKIAlx dWV1ZS0+dHFfY29udGV4dCA9IGNvbnRleHQ7Ci0JcXVldWUtPnRxX3Bwcm9jID0gcHA7Ci0JbXR4 X2luaXQoJnF1ZXVlLT50cV9tdXRleCwgInRhc2txdWV1ZSIsIE5VTEwsIE1UWF9ERUYpOworCXF1 ZXVlLT50cV9zcGluID0gKG10eGZsYWdzICYgTVRYX1NQSU4pICE9IDA7CisJcXVldWUtPnRxX2Zs YWdzIHw9IFRRX0ZMQUdTX0FDVElWRTsKKwltdHhfaW5pdCgmcXVldWUtPnRxX211dGV4LCBtdHhu YW1lLCBOVUxMLCBtdHhmbGFncyk7CiAKIAltdHhfbG9jaygmdGFza3F1ZXVlX3F1ZXVlc19tdXRl eCk7CiAJU1RBSUxRX0lOU0VSVF9UQUlMKCZ0YXNrcXVldWVfcXVldWVzLCBxdWV1ZSwgdHFfbGlu ayk7CkBAIC05NCwyMyArMTI5LDI2IEBACiAJcmV0dXJuIHF1ZXVlOwogfQogCitzdHJ1Y3QgdGFz a3F1ZXVlICoKK3Rhc2txdWV1ZV9jcmVhdGUoY29uc3QgY2hhciAqbmFtZSwgaW50IG1mbGFncywK KwkJIHRhc2txdWV1ZV9lbnF1ZXVlX2ZuIGVucXVldWUsIHZvaWQgKmNvbnRleHQsCisJCSBzdHJ1 Y3QgcHJvYyAqKnBwKQoreworCSh2b2lkKSBwcDsKKwlyZXR1cm4gX3Rhc2txdWV1ZV9jcmVhdGUo bmFtZSwgbWZsYWdzLCBlbnF1ZXVlLCBjb250ZXh0LAorCQkJTVRYX0RFRiwgInRhc2txdWV1ZSIp OworfQorCiAvKgogICogU2lnbmFsIGEgdGFza3F1ZXVlIHRocmVhZCB0byB0ZXJtaW5hdGUuCiAg Ki8KIHN0YXRpYyB2b2lkCiB0YXNrcXVldWVfdGVybWluYXRlKHN0cnVjdCBwcm9jICoqcHAsIHN0 cnVjdCB0YXNrcXVldWUgKnRxKQogewotCXN0cnVjdCBwcm9jICpwOwogCi0JcCA9ICpwcDsKLQkq cHAgPSBOVUxMOwotCWlmIChwKSB7Ci0JCXdha2V1cF9vbmUodHEpOwotCQlQUk9DX0xPQ0socCk7 CQkgICAvKiBOQjogaW5zdXJlIHdlIGRvbid0IG1pc3Mgd2FrZXVwICovCi0JCW10eF91bmxvY2so JnRxLT50cV9tdXRleCk7IC8qIGxldCB0YXNrcXVldWUgdGhyZWFkIHJ1biAqLwotCQltc2xlZXAo cCwgJnAtPnBfbXR4LCBQV0FJVCwgInRhc2txdWV1ZV9kZXN0cm95IiwgMCk7Ci0JCVBST0NfVU5M T0NLKHApOwotCQltdHhfbG9jaygmdHEtPnRxX211dGV4KTsKKwl3aGlsZSAodHEtPnRxX3Bjb3Vu dCA+IDApIHsKKwkJd2FrZXVwKHRxKTsKKwkJVFFfU0xFRVAodHEsIHBwLCAmdHEtPnRxX211dGV4 LCBQV0FJVCwgInRhc2txdWV1ZV9kZXN0cm95IiwgMCk7CiAJfQogfQogCkBAIC0xMjIsMTAgKzE2 MCwxMiBAQAogCVNUQUlMUV9SRU1PVkUoJnRhc2txdWV1ZV9xdWV1ZXMsIHF1ZXVlLCB0YXNrcXVl dWUsIHRxX2xpbmspOwogCW10eF91bmxvY2soJnRhc2txdWV1ZV9xdWV1ZXNfbXV0ZXgpOwogCi0J bXR4X2xvY2soJnF1ZXVlLT50cV9tdXRleCk7CisJVFFfTE9DSyhxdWV1ZSk7CisJcXVldWUtPnRx X2ZsYWdzICY9IH5UUV9GTEFHU19BQ1RJVkU7CiAJdGFza3F1ZXVlX3J1bihxdWV1ZSk7CiAJdGFz a3F1ZXVlX3Rlcm1pbmF0ZShxdWV1ZS0+dHFfcHByb2MsIHF1ZXVlKTsKIAltdHhfZGVzdHJveSgm cXVldWUtPnRxX211dGV4KTsKKwlmcmVlKHF1ZXVlLT50cV9wcHJvYywgTV9UQVNLUVVFVUUpOwog CWZyZWUocXVldWUsIE1fVEFTS1FVRVVFKTsKIH0KIApAQCAtMTQwLDcgKzE4MCw3IEBACiAJbXR4 X2xvY2soJnRhc2txdWV1ZV9xdWV1ZXNfbXV0ZXgpOwogCVNUQUlMUV9GT1JFQUNIKHF1ZXVlLCAm dGFza3F1ZXVlX3F1ZXVlcywgdHFfbGluaykgewogCQlpZiAoc3RyY21wKHF1ZXVlLT50cV9uYW1l LCBuYW1lKSA9PSAwKSB7Ci0JCQltdHhfbG9jaygmcXVldWUtPnRxX211dGV4KTsKKwkJCVRRX0xP Q0socXVldWUpOwogCQkJbXR4X3VubG9jaygmdGFza3F1ZXVlX3F1ZXVlc19tdXRleCk7CiAJCQly ZXR1cm4gcXVldWU7CiAJCX0KQEAgLTE1NSwxNCArMTk1LDE0IEBACiAJc3RydWN0IHRhc2sgKmlu czsKIAlzdHJ1Y3QgdGFzayAqcHJldjsKIAotCW10eF9sb2NrKCZxdWV1ZS0+dHFfbXV0ZXgpOwor CVRRX0xPQ0socXVldWUpOwogCiAJLyoKIAkgKiBDb3VudCBtdWx0aXBsZSBlbnF1ZXVlcy4KIAkg Ki8KIAlpZiAodGFzay0+dGFfcGVuZGluZykgewogCQl0YXNrLT50YV9wZW5kaW5nKys7Ci0JCW10 eF91bmxvY2soJnF1ZXVlLT50cV9tdXRleCk7CisJCVRRX1VOTE9DSyhxdWV1ZSk7CiAJCXJldHVy biAwOwogCX0KIApAQCAtMTg4LDcgKzIyOCw3IEBACiAJdGFzay0+dGFfcGVuZGluZyA9IDE7CiAJ cXVldWUtPnRxX2VucXVldWUocXVldWUtPnRxX2NvbnRleHQpOwogCi0JbXR4X3VubG9jaygmcXVl dWUtPnRxX211dGV4KTsKKwlUUV9VTkxPQ0socXVldWUpOwogCiAJcmV0dXJuIDA7CiB9CkBAIC0y MDEsNyArMjQxLDcgQEAKIAogCW93bmVkID0gbXR4X293bmVkKCZxdWV1ZS0+dHFfbXV0ZXgpOwog CWlmICghb3duZWQpCi0JCW10eF9sb2NrKCZxdWV1ZS0+dHFfbXV0ZXgpOworCQlUUV9MT0NLKHF1 ZXVlKTsKIAl3aGlsZSAoU1RBSUxRX0ZJUlNUKCZxdWV1ZS0+dHFfcXVldWUpKSB7CiAJCS8qCiAJ CSAqIENhcmVmdWxseSByZW1vdmUgdGhlIGZpcnN0IHRhc2sgZnJvbSB0aGUgcXVldWUgYW5kCkBA IC0yMTIsMTEgKzI1MiwxMSBAQAogCQlwZW5kaW5nID0gdGFzay0+dGFfcGVuZGluZzsKIAkJdGFz ay0+dGFfcGVuZGluZyA9IDA7CiAJCXF1ZXVlLT50cV9ydW5uaW5nID0gdGFzazsKLQkJbXR4X3Vu bG9jaygmcXVldWUtPnRxX211dGV4KTsKKwkJVFFfVU5MT0NLKHF1ZXVlKTsKIAogCQl0YXNrLT50 YV9mdW5jKHRhc2stPnRhX2NvbnRleHQsIHBlbmRpbmcpOwogCi0JCW10eF9sb2NrKCZxdWV1ZS0+ dHFfbXV0ZXgpOworCQlUUV9MT0NLKHF1ZXVlKTsKIAkJcXVldWUtPnRxX3J1bm5pbmcgPSBOVUxM OwogCQl3YWtldXAodGFzayk7CiAJfQpAQCAtMjI2LDE4ICsyNjYsMzAgQEAKIAkgKiBvbiBlbnRy eSwgYWx0aG91Z2ggdGhpcyBvcGVucyBhIHJhY2Ugd2luZG93LgogCSAqLwogCWlmICghb3duZWQp Ci0JCW10eF91bmxvY2soJnF1ZXVlLT50cV9tdXRleCk7CisJCVRRX1VOTE9DSyhxdWV1ZSk7CiB9 CiAKIHZvaWQKIHRhc2txdWV1ZV9kcmFpbihzdHJ1Y3QgdGFza3F1ZXVlICpxdWV1ZSwgc3RydWN0 IHRhc2sgKnRhc2spCiB7Ci0JV0lUTkVTU19XQVJOKFdBUk5fR0lBTlRPSyB8IFdBUk5fU0xFRVBP SywgTlVMTCwgInRhc2txdWV1ZV9kcmFpbiIpOworCWlmIChxdWV1ZS0+dHFfc3BpbikgewkJLyog WFhYICovCisJCW10eF9sb2NrX3NwaW4oJnF1ZXVlLT50cV9tdXRleCk7CisJCWlmKHRhc2spCisJ CXdoaWxlICh0YXNrLT50YV9wZW5kaW5nICE9IDAgfHwgdGFzayA9PSBxdWV1ZS0+dHFfcnVubmlu ZykKKwkJCW1zbGVlcF9zcGluKHRhc2ssICZxdWV1ZS0+dHFfbXV0ZXgsICItIiwgMCk7CisJCWVs c2UKKwkJd2hpbGUoIVNUQUlMUV9FTVBUWSgmcXVldWUtPnRxX3F1ZXVlKSkKKwkJCW1zbGVlcF9z cGluKFNUQUlMUV9GSVJTVCgmcXVldWUtPnRxX3F1ZXVlKSwgJnF1ZXVlLT50cV9tdXRleCwgIi0i LCAwKTsKKworCQltdHhfdW5sb2NrX3NwaW4oJnF1ZXVlLT50cV9tdXRleCk7CisJfSBlbHNlIHsK KwkJV0lUTkVTU19XQVJOKFdBUk5fR0lBTlRPSyB8IFdBUk5fU0xFRVBPSywgTlVMTCwgX19mdW5j X18pOwogCi0JbXR4X2xvY2soJnF1ZXVlLT50cV9tdXRleCk7Ci0Jd2hpbGUgKHRhc2stPnRhX3Bl bmRpbmcgIT0gMCB8fCB0YXNrID09IHF1ZXVlLT50cV9ydW5uaW5nKQotCQltc2xlZXAodGFzaywg JnF1ZXVlLT50cV9tdXRleCwgUFdBSVQsICItIiwgMCk7Ci0JbXR4X3VubG9jaygmcXVldWUtPnRx X211dGV4KTsKKwkJbXR4X2xvY2soJnF1ZXVlLT50cV9tdXRleCk7CisJCXdoaWxlICh0YXNrLT50 YV9wZW5kaW5nICE9IDAgfHwgdGFzayA9PSBxdWV1ZS0+dHFfcnVubmluZykKKwkJCW1zbGVlcCh0 YXNrLCAmcXVldWUtPnRxX211dGV4LCBQV0FJVCwgIi0iLCAwKTsKKwkJbXR4X3VubG9jaygmcXVl dWUtPnRxX211dGV4KTsKKwl9CiB9CiAKIHN0YXRpYyB2b2lkCkBAIC0yNjQsNiArMzE2LDU5IEBA CiAJdGFza3F1ZXVlX3J1bih0YXNrcXVldWVfc3dpX2dpYW50KTsKIH0KIAoraW50Cit0YXNrcXVl dWVfc3RhcnRfdGhyZWFkcyhzdHJ1Y3QgdGFza3F1ZXVlICoqdHFwLCBpbnQgY291bnQsIGludCBw cmksCisJCQljb25zdCBjaGFyICpuYW1lLCAuLi4pCit7CisJdmFfbGlzdCBhcDsKKwlzdHJ1Y3Qg dGFza3F1ZXVlICp0cTsKKwlzdHJ1Y3QgdGhyZWFkICp0ZDsKKwljaGFyIGt0bmFtZVtNQVhDT01M RU5dOworCWludCBpLCBlcnJvcjsKKworCWlmIChjb3VudCA8PSAwKQorCQlyZXR1cm4gKEVJTlZB TCk7CisJdHEgPSAqdHFwOworCisJdmFfc3RhcnQoYXAsIG5hbWUpOworCXZzbnByaW50ZihrdG5h bWUsIE1BWENPTUxFTiwgbmFtZSwgYXApOworCXZhX2VuZChhcCk7CisKKwl0cS0+dHFfcHByb2Mg PSBtYWxsb2Moc2l6ZW9mKHN0cnVjdCBwcm9jICopICogY291bnQsIE1fVEFTS1FVRVVFLAorCSAg ICBNX05PV0FJVCB8IE1fWkVSTyk7CisJaWYgKHRxLT50cV9wcHJvYyA9PSBOVUxMKSB7CisJCXBy aW50ZigiJXM6IG5vIG1lbW9yeSBmb3IgJXMgdGhyZWFkc1xuIiwgX19mdW5jX18sIGt0bmFtZSk7 CisJCXJldHVybiAoRU5PTUVNKTsKKwl9CisKKwlmb3IgKGkgPSAwOyBpIDwgY291bnQ7IGkrKykg eworCQlpZiAoY291bnQgPT0gMSkKKwkJCWVycm9yID0ga3RocmVhZF9jcmVhdGUodGFza3F1ZXVl X3RocmVhZF9sb29wLCB0cXAsCisJCQkgICAgJnRxLT50cV9wcHJvY1tpXSwgUkZTVE9QUEVELCAw LCBrdG5hbWUpOworCQllbHNlCisJCQllcnJvciA9IGt0aHJlYWRfY3JlYXRlKHRhc2txdWV1ZV90 aHJlYWRfbG9vcCwgdHFwLAorCQkJICAgICZ0cS0+dHFfcHByb2NbaV0sIFJGU1RPUFBFRCwgMCwg IiVzXyVkIiwga3RuYW1lLCBpKTsKKwkJaWYgKGVycm9yKSB7CisJCQkvKiBzaG91bGQgYmUgb2sg dG8gY29udGludWUsIHRhc2txdWV1ZV9mcmVlIHdpbGwgZHRydCAqLworCQkJcHJpbnRmKCIlczog a3RocmVhZF9jcmVhdGUoJXMpOiBlcnJvciAlZCIsCisJCQkJX19mdW5jX18sIGt0bmFtZSwgZXJy b3IpOworCQkJdHEtPnRxX3Bwcm9jW2ldID0gTlVMTDsJCS8qIHBhcmFub2lkICovCisJCX0gZWxz ZQorCQkJdHEtPnRxX3Bjb3VudCsrOworCX0KKwltdHhfbG9ja19zcGluKCZzY2hlZF9sb2NrKTsK Kwlmb3IgKGkgPSAwOyBpIDwgY291bnQ7IGkrKykgeworCQlpZiAodHEtPnRxX3Bwcm9jW2ldID09 IE5VTEwpCisJCQljb250aW51ZTsKKwkJdGQgPSBGSVJTVF9USFJFQURfSU5fUFJPQyh0cS0+dHFf cHByb2NbaV0pOworCQlzY2hlZF9wcmlvKHRkLCBwcmkpOworCQlzZXRydW5xdWV1ZSh0ZCwgU1JR X0JPUklORyk7CisJfQorCW10eF91bmxvY2tfc3Bpbigmc2NoZWRfbG9jayk7CisKKwlyZXR1cm4g KDApOworfQorCiB2b2lkCiB0YXNrcXVldWVfdGhyZWFkX2xvb3Aodm9pZCAqYXJnKQogewpAQCAt MjcxLDE1ICszNzYsMTYgQEAKIAogCXRxcCA9IGFyZzsKIAl0cSA9ICp0cXA7Ci0JbXR4X2xvY2so JnRxLT50cV9tdXRleCk7CisJVFFfTE9DSyh0cSk7CiAJZG8gewogCQl0YXNrcXVldWVfcnVuKHRx KTsKLQkJbXNsZWVwKHRxLCAmdHEtPnRxX211dGV4LCBQV0FJVCwgIi0iLCAwKTsgCi0JfSB3aGls ZSAoKnRxLT50cV9wcHJvYyAhPSBOVUxMKTsKKwkJVFFfU0xFRVAodHEsIHRxLCAmdHEtPnRxX211 dGV4LCAwLCAiLSIsIDApOworCX0gd2hpbGUgKCh0cS0+dHFfZmxhZ3MgJiBUUV9GTEFHU19BQ1RJ VkUpICE9IDApOwogCiAJLyogcmVuZGV6dm91cyB3aXRoIHRocmVhZCB0aGF0IGFza2VkIHVzIHRv IHRlcm1pbmF0ZSAqLwotCXdha2V1cF9vbmUodHEpOwotCW10eF91bmxvY2soJnRxLT50cV9tdXRl eCk7CisJdHEtPnRxX3Bjb3VudC0tOworCXdha2V1cF9vbmUodHEtPnRxX3Bwcm9jKTsKKwlUUV9V TkxPQ0sodHEpOwogCWt0aHJlYWRfZXhpdCgwKTsKIH0KIApAQCAtMzAwLDg1ICs0MDYsMzAgQEAK IAkJICAgICBJTlRSX01QU0FGRSwgJnRhc2txdWV1ZV9paCkpOyAKIAogVEFTS1FVRVVFX0RFRklO RShzd2lfZ2lhbnQsIHRhc2txdWV1ZV9zd2lfZ2lhbnRfZW5xdWV1ZSwgMCwKLQkJIHN3aV9hZGQo TlVMTCwgIkdpYW50IHRhc2sgcXVldWUiLCB0YXNrcXVldWVfc3dpX2dpYW50X3J1biwKKwkJIHN3 aV9hZGQoTlVMTCwgIkdpYW50IHRhc2txIiwgdGFza3F1ZXVlX3N3aV9naWFudF9ydW4sCiAJCSAg ICAgTlVMTCwgU1dJX1RRX0dJQU5ULCAwLCAmdGFza3F1ZXVlX2dpYW50X2loKSk7IAogCiBUQVNL UVVFVUVfREVGSU5FX1RIUkVBRCh0aHJlYWQpOwogCi1pbnQKLXRhc2txdWV1ZV9lbnF1ZXVlX2Zh c3Qoc3RydWN0IHRhc2txdWV1ZSAqcXVldWUsIHN0cnVjdCB0YXNrICp0YXNrKQorc3RydWN0IHRh c2txdWV1ZSAqCit0YXNrcXVldWVfY3JlYXRlX2Zhc3QoY29uc3QgY2hhciAqbmFtZSwgaW50IG1m bGFncywKKwkJIHRhc2txdWV1ZV9lbnF1ZXVlX2ZuIGVucXVldWUsIHZvaWQgKmNvbnRleHQpCiB7 Ci0Jc3RydWN0IHRhc2sgKmluczsKLQlzdHJ1Y3QgdGFzayAqcHJldjsKLQotCW10eF9sb2NrX3Nw aW4oJnF1ZXVlLT50cV9tdXRleCk7Ci0KLQkvKgotCSAqIENvdW50IG11bHRpcGxlIGVucXVldWVz LgotCSAqLwotCWlmICh0YXNrLT50YV9wZW5kaW5nKSB7Ci0JCXRhc2stPnRhX3BlbmRpbmcrKzsK LQkJbXR4X3VubG9ja19zcGluKCZxdWV1ZS0+dHFfbXV0ZXgpOwotCQlyZXR1cm4gMDsKLQl9Ci0K LQkvKgotCSAqIE9wdGltaXNlIHRoZSBjYXNlIHdoZW4gYWxsIHRhc2tzIGhhdmUgdGhlIHNhbWUg cHJpb3JpdHkuCi0JICovCi0JcHJldiA9IFNUQUlMUV9MQVNUKCZxdWV1ZS0+dHFfcXVldWUsIHRh c2ssIHRhX2xpbmspOwotCWlmICghcHJldiB8fCBwcmV2LT50YV9wcmlvcml0eSA+PSB0YXNrLT50 YV9wcmlvcml0eSkgewotCQlTVEFJTFFfSU5TRVJUX1RBSUwoJnF1ZXVlLT50cV9xdWV1ZSwgdGFz aywgdGFfbGluayk7Ci0JfSBlbHNlIHsKLQkJcHJldiA9IDA7Ci0JCWZvciAoaW5zID0gU1RBSUxR X0ZJUlNUKCZxdWV1ZS0+dHFfcXVldWUpOyBpbnM7Ci0JCSAgICAgcHJldiA9IGlucywgaW5zID0g U1RBSUxRX05FWFQoaW5zLCB0YV9saW5rKSkKLQkJCWlmIChpbnMtPnRhX3ByaW9yaXR5IDwgdGFz ay0+dGFfcHJpb3JpdHkpCi0JCQkJYnJlYWs7Ci0KLQkJaWYgKHByZXYpCi0JCQlTVEFJTFFfSU5T RVJUX0FGVEVSKCZxdWV1ZS0+dHFfcXVldWUsIHByZXYsIHRhc2ssIHRhX2xpbmspOwotCQllbHNl Ci0JCQlTVEFJTFFfSU5TRVJUX0hFQUQoJnF1ZXVlLT50cV9xdWV1ZSwgdGFzaywgdGFfbGluayk7 Ci0JfQotCi0JdGFzay0+dGFfcGVuZGluZyA9IDE7Ci0JcXVldWUtPnRxX2VucXVldWUocXVldWUt PnRxX2NvbnRleHQpOwotCi0JbXR4X3VubG9ja19zcGluKCZxdWV1ZS0+dHFfbXV0ZXgpOwotCi0J cmV0dXJuIDA7CisJcmV0dXJuIF90YXNrcXVldWVfY3JlYXRlKG5hbWUsIG1mbGFncywgZW5xdWV1 ZSwgY29udGV4dCwKKwkJCU1UWF9TUElOLCAiZmFzdF90YXNrcXVldWUiKTsKIH0KIAotc3RhdGlj IHZvaWQKLXRhc2txdWV1ZV9ydW5fZmFzdChzdHJ1Y3QgdGFza3F1ZXVlICpxdWV1ZSkKKy8qIE5C OiBmb3IgYmFja3dhcmRzIGNvbXBhdGliaWxpdHkgKi8KK2ludAordGFza3F1ZXVlX2VucXVldWVf ZmFzdChzdHJ1Y3QgdGFza3F1ZXVlICpxdWV1ZSwgc3RydWN0IHRhc2sgKnRhc2spCiB7Ci0Jc3Ry dWN0IHRhc2sgKnRhc2s7Ci0JaW50IHBlbmRpbmc7Ci0KLQltdHhfbG9ja19zcGluKCZxdWV1ZS0+ dHFfbXV0ZXgpOwotCXdoaWxlIChTVEFJTFFfRklSU1QoJnF1ZXVlLT50cV9xdWV1ZSkpIHsKLQkJ LyoKLQkJICogQ2FyZWZ1bGx5IHJlbW92ZSB0aGUgZmlyc3QgdGFzayBmcm9tIHRoZSBxdWV1ZSBh bmQKLQkJICogemVybyBpdHMgcGVuZGluZyBjb3VudC4KLQkJICovCi0JCXRhc2sgPSBTVEFJTFFf RklSU1QoJnF1ZXVlLT50cV9xdWV1ZSk7Ci0JCVNUQUlMUV9SRU1PVkVfSEVBRCgmcXVldWUtPnRx X3F1ZXVlLCB0YV9saW5rKTsKLQkJcGVuZGluZyA9IHRhc2stPnRhX3BlbmRpbmc7Ci0JCXRhc2st PnRhX3BlbmRpbmcgPSAwOwotCQltdHhfdW5sb2NrX3NwaW4oJnF1ZXVlLT50cV9tdXRleCk7Ci0K LQkJdGFzay0+dGFfZnVuYyh0YXNrLT50YV9jb250ZXh0LCBwZW5kaW5nKTsKLQotCQltdHhfbG9j a19zcGluKCZxdWV1ZS0+dHFfbXV0ZXgpOwotCX0KLQltdHhfdW5sb2NrX3NwaW4oJnF1ZXVlLT50 cV9tdXRleCk7CisJcmV0dXJuIHRhc2txdWV1ZV9lbnF1ZXVlKHF1ZXVlLCB0YXNrKTsKIH0KIAot c3RydWN0IHRhc2txdWV1ZSAqdGFza3F1ZXVlX2Zhc3Q7CiBzdGF0aWMgdm9pZAkqdGFza3F1ZXVl X2Zhc3RfaWg7CiAKIHN0YXRpYyB2b2lkCi10YXNrcXVldWVfZmFzdF9zY2hlZHVsZSh2b2lkICpj b250ZXh0KQordGFza3F1ZXVlX2Zhc3RfZW5xdWV1ZSh2b2lkICpjb250ZXh0KQogewogCXN3aV9z Y2hlZCh0YXNrcXVldWVfZmFzdF9paCwgMCk7CiB9CkBAIC0zODYsMzEgKzQzNyw5IEBACiBzdGF0 aWMgdm9pZAogdGFza3F1ZXVlX2Zhc3RfcnVuKHZvaWQgKmR1bW15KQogewotCXRhc2txdWV1ZV9y dW5fZmFzdCh0YXNrcXVldWVfZmFzdCk7CisJdGFza3F1ZXVlX3J1bih0YXNrcXVldWVfZmFzdCk7 CiB9CiAKLXN0YXRpYyB2b2lkCi10YXNrcXVldWVfZGVmaW5lX2Zhc3Qodm9pZCAqYXJnKQotewot Ci0JdGFza3F1ZXVlX2Zhc3QgPSBtYWxsb2Moc2l6ZW9mKHN0cnVjdCB0YXNrcXVldWUpLCBNX1RB U0tRVUVVRSwKLQkgICAgTV9OT1dBSVQgfCBNX1pFUk8pOwotCWlmICghdGFza3F1ZXVlX2Zhc3Qp IHsKLQkJcHJpbnRmKCIlczogVW5hYmxlIHRvIGFsbG9jYXRlIGZhc3QgdGFzayBxdWV1ZSFcbiIs IF9fZnVuY19fKTsKLQkJcmV0dXJuOwotCX0KLQotCVNUQUlMUV9JTklUKCZ0YXNrcXVldWVfZmFz dC0+dHFfcXVldWUpOwotCXRhc2txdWV1ZV9mYXN0LT50cV9uYW1lID0gImZhc3QiOwotCXRhc2tx dWV1ZV9mYXN0LT50cV9lbnF1ZXVlID0gdGFza3F1ZXVlX2Zhc3Rfc2NoZWR1bGU7Ci0JbXR4X2lu aXQoJnRhc2txdWV1ZV9mYXN0LT50cV9tdXRleCwgInRhc2txdWV1ZV9mYXN0IiwgTlVMTCwgTVRY X1NQSU4pOwotCi0JbXR4X2xvY2soJnRhc2txdWV1ZV9xdWV1ZXNfbXV0ZXgpOwotCVNUQUlMUV9J TlNFUlRfVEFJTCgmdGFza3F1ZXVlX3F1ZXVlcywgdGFza3F1ZXVlX2Zhc3QsIHRxX2xpbmspOwot CW10eF91bmxvY2soJnRhc2txdWV1ZV9xdWV1ZXNfbXV0ZXgpOwotCi0Jc3dpX2FkZChOVUxMLCAi RmFzdCB0YXNrIHF1ZXVlIiwgdGFza3F1ZXVlX2Zhc3RfcnVuLAotCQlOVUxMLCBTV0lfVFFfRkFT VCwgSU5UUl9NUFNBRkUsICZ0YXNrcXVldWVfZmFzdF9paCk7Ci19Ci1TWVNJTklUKHRhc2txdWV1 ZV9mYXN0LCBTSV9TVUJfQ09ORklHVVJFLCBTSV9PUkRFUl9TRUNPTkQsCi0gICAgdGFza3F1ZXVl X2RlZmluZV9mYXN0LCBOVUxMKTsKK1RBU0tRVUVVRV9GQVNUX0RFRklORShmYXN0LCB0YXNrcXVl dWVfZmFzdF9lbnF1ZXVlLCAwLAorCXN3aV9hZGQoTlVMTCwgIkZhc3QgdGFzayBxdWV1ZSIsIHRh c2txdWV1ZV9mYXN0X3J1biwgTlVMTCwKKwlTV0lfVFFfRkFTVCwgSU5UUl9NUFNBRkUsICZ0YXNr cXVldWVfZmFzdF9paCkpOwo= ------=_Part_87805_31472580.1167430002999 Content-Type: text/x-diff; name=taskqueue.h.diff; charset=ANSI_X3.4-1968 Content-Transfer-Encoding: base64 X-Attachment-Id: file6 Content-Disposition: attachment; filename="taskqueue.h.diff" LS0tIHRhc2txdWV1ZS5oLmJrcAlNb24gT2N0IDIzIDIwOjA5OjM1IDIwMDYKKysrIHRhc2txdWV1 ZS5oCU1vbiBPY3QgMjMgMjA6MDk6NDEgMjAwNgpAQCAtMjMsNyArMjMsNyBAQAogICogT1VUIE9G IFRIRSBVU0UgT0YgVEhJUyBTT0ZUV0FSRSwgRVZFTiBJRiBBRFZJU0VEIE9GIFRIRSBQT1NTSUJJ TElUWSBPRgogICogU1VDSCBEQU1BR0UuCiAgKgotICogJEZyZWVCU0Q6IHNyYy9zeXMvc3lzL3Rh c2txdWV1ZS5oLHYgMS4xNC4yLjIgMjAwNi8wNC8wMiAwMDoxNDo1NyBzYW0gRXhwICQKKyAqICRG cmVlQlNEOiAvcmVwb21hbi9yL25jdnMvc3JjL3N5cy9zeXMvdGFza3F1ZXVlLmgsdiAxLjE0LjIu MyAyMDA2LzA3LzA2IDA4OjMyOjUwIGdsZWJpdXMgRXhwICQKICAqLwogCiAjaWZuZGVmIF9TWVNf VEFTS1FVRVVFX0hfCkBAIC01MSw2ICs1MSw4IEBACiBzdHJ1Y3QgdGFza3F1ZXVlICp0YXNrcXVl dWVfY3JlYXRlKGNvbnN0IGNoYXIgKm5hbWUsIGludCBtZmxhZ3MsCiAJCQkJICAgIHRhc2txdWV1 ZV9lbnF1ZXVlX2ZuIGVucXVldWUsCiAJCQkJICAgIHZvaWQgKmNvbnRleHQsIHN0cnVjdCBwcm9j ICoqKTsKK2ludAl0YXNrcXVldWVfc3RhcnRfdGhyZWFkcyhzdHJ1Y3QgdGFza3F1ZXVlICoqdHFw LCBpbnQgY291bnQsIGludCBwcmksCisJCQkJY29uc3QgY2hhciAqbmFtZSwgLi4uKSBfX3ByaW50 Zmxpa2UoNCwgNSk7CiBpbnQJdGFza3F1ZXVlX2VucXVldWUoc3RydWN0IHRhc2txdWV1ZSAqcXVl dWUsIHN0cnVjdCB0YXNrICp0YXNrKTsKIHZvaWQJdGFza3F1ZXVlX2RyYWluKHN0cnVjdCB0YXNr cXVldWUgKnF1ZXVlLCBzdHJ1Y3QgdGFzayAqdGFzayk7CiBzdHJ1Y3QgdGFza3F1ZXVlICp0YXNr cXVldWVfZmluZChjb25zdCBjaGFyICpuYW1lKTsKQEAgLTgwLDcgKzgyLDcgQEAKIGV4dGVybiBz dHJ1Y3QgdGFza3F1ZXVlICp0YXNrcXVldWVfIyNuYW1lCiAKIC8qCi0gKiBEZWZpbmUgYW5kIGlu aXRpYWxpc2UgYSB0YXNrcXVldWUuCisgKiBEZWZpbmUgYW5kIGluaXRpYWxpc2UgYSBnbG9iYWwg dGFza3F1ZXVlIHRoYXQgdXNlcyBzbGVlcCBtdXRleGVzLgogICovCiAjZGVmaW5lIFRBU0tRVUVV RV9ERUZJTkUobmFtZSwgZW5xdWV1ZSwgY29udGV4dCwgaW5pdCkJCQlcCiAJCQkJCQkJCQlcCkBA IC04OSwxMCArOTEsOCBAQAogc3RhdGljIHZvaWQJCQkJCQkJCVwKIHRhc2txdWV1ZV9kZWZpbmVf IyNuYW1lKHZvaWQgKmFyZykJCQkJCVwKIHsJCQkJCQkJCQlcCi0Jc3RhdGljIHN0cnVjdCBwcm9j ICp0YXNrcXVldWVfIyNuYW1lIyNfcHJvYzsJCQlcCiAJdGFza3F1ZXVlXyMjbmFtZSA9CQkJCQkJ XAotCSAgICB0YXNrcXVldWVfY3JlYXRlKCNuYW1lLCBNX05PV0FJVCwgKGVucXVldWUpLCAoY29u dGV4dCksCVwKLQkgICAgJnRhc2txdWV1ZV8jI25hbWUjI19wcm9jKTsJCQkJCVwKKwkgICAgdGFz a3F1ZXVlX2NyZWF0ZSgjbmFtZSwgTV9OT1dBSVQsIChlbnF1ZXVlKSwgKGNvbnRleHQpLCBOVUxM KTtcCiAJaW5pdDsJCQkJCQkJCVwKIH0JCQkJCQkJCQlcCiAJCQkJCQkJCQlcCkBAIC0xMDIsOCAr MTAyLDMzIEBACiBzdHJ1Y3QgX19oYWNrCiAjZGVmaW5lIFRBU0tRVUVVRV9ERUZJTkVfVEhSRUFE KG5hbWUpCQkJCQlcCiBUQVNLUVVFVUVfREVGSU5FKG5hbWUsIHRhc2txdWV1ZV90aHJlYWRfZW5x dWV1ZSwgJnRhc2txdWV1ZV8jI25hbWUsCVwKLQlrdGhyZWFkX2NyZWF0ZSh0YXNrcXVldWVfdGhy ZWFkX2xvb3AsICZ0YXNrcXVldWVfIyNuYW1lLAlcCi0JJnRhc2txdWV1ZV8jI25hbWUjI19wcm9j LCAwLCAwLCAjbmFtZSAiIHRhc2txIikpCisJdGFza3F1ZXVlX3N0YXJ0X3RocmVhZHMoJnRhc2tx dWV1ZV8jI25hbWUsIDEsIFBXQUlULAkJXAorCSIlcyB0YXNrcSIsICNuYW1lKSkKKworLyoKKyAq IERlZmluZSBhbmQgaW5pdGlhbGlzZSBhIGdsb2JhbCB0YXNrcXVldWUgdGhhdCB1c2VzIHNwaW4g bXV0ZXhlcy4KKyAqLworI2RlZmluZSBUQVNLUVVFVUVfRkFTVF9ERUZJTkUobmFtZSwgZW5xdWV1 ZSwgY29udGV4dCwgaW5pdCkJCVwKKwkJCQkJCQkJCVwKK3N0cnVjdCB0YXNrcXVldWUgKnRhc2tx dWV1ZV8jI25hbWU7CQkJCQlcCisJCQkJCQkJCQlcCitzdGF0aWMgdm9pZAkJCQkJCQkJXAordGFz a3F1ZXVlX2RlZmluZV8jI25hbWUodm9pZCAqYXJnKQkJCQkJXAorewkJCQkJCQkJCVwKKwl0YXNr cXVldWVfIyNuYW1lID0JCQkJCQlcCisJICAgIHRhc2txdWV1ZV9jcmVhdGVfZmFzdCgjbmFtZSwg TV9OT1dBSVQsIChlbnF1ZXVlKSwJCVwKKwkgICAgKGNvbnRleHQpKTsJCQkJCQkJXAorCWluaXQ7 CQkJCQkJCQlcCit9CQkJCQkJCQkJXAorCQkJCQkJCQkJXAorU1lTSU5JVCh0YXNrcXVldWVfIyNu YW1lLCBTSV9TVUJfQ09ORklHVVJFLCBTSV9PUkRFUl9TRUNPTkQsCQlcCisJdGFza3F1ZXVlX2Rl ZmluZV8jI25hbWUsIE5VTEwpCQkJCQlcCisJCQkJCQkJCQlcCitzdHJ1Y3QgX19oYWNrCisjZGVm aW5lIFRBU0tRVUVVRV9GQVNUX0RFRklORV9USFJFQUQobmFtZSkJCQkJXAorVEFTS1FVRVVFX0ZB U1RfREVGSU5FKG5hbWUsIHRhc2txdWV1ZV90aHJlYWRfZW5xdWV1ZSwJCQlcCisJJnRhc2txdWV1 ZV8jI25hbWUsIHRhc2txdWV1ZV9zdGFydF90aHJlYWRzKCZ0YXNrcXVldWVfIyNuYW1lCVwKKwkx LCBQV0FJVCwgIiVzIHRhc2txIiwgI25hbWUpKQogCiAvKgogICogVGhlc2UgcXVldWVzIGFyZSBz ZXJ2aWNlZCBieSBzb2Z0d2FyZSBpbnRlcnJ1cHQgaGFuZGxlcnMuICBUbyBlbnF1ZXVlCkBAIC0x MjcsNSArMTUyLDggQEAKICAqLwogVEFTS1FVRVVFX0RFQ0xBUkUoZmFzdCk7CiBpbnQJdGFza3F1 ZXVlX2VucXVldWVfZmFzdChzdHJ1Y3QgdGFza3F1ZXVlICpxdWV1ZSwgc3RydWN0IHRhc2sgKnRh c2spOworc3RydWN0IHRhc2txdWV1ZSAqdGFza3F1ZXVlX2NyZWF0ZV9mYXN0KGNvbnN0IGNoYXIg Km5hbWUsIGludCBtZmxhZ3MsCisJCQkJICAgIHRhc2txdWV1ZV9lbnF1ZXVlX2ZuIGVucXVldWUs CisJCQkJICAgIHZvaWQgKmNvbnRleHQpOwogCiAjZW5kaWYgLyogIV9TWVNfVEFTS1FVRVVFX0hf ICovCg== ------=_Part_87805_31472580.1167430002999-- From owner-freebsd-multimedia@FreeBSD.ORG Sat Dec 30 17:44:54 2006 Return-Path: X-Original-To: freebsd-multimedia@freebsd.org Delivered-To: freebsd-multimedia@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 9A87016A47B for ; Sat, 30 Dec 2006 17:44:54 +0000 (UTC) (envelope-from torfinn.ingolfsen@broadpark.no) Received: from osl1smout1.broadpark.no (osl1smout1.broadpark.no [80.202.4.58]) by mx1.freebsd.org (Postfix) with ESMTP id 402AB13C45A for ; Sat, 30 Dec 2006 17:44:54 +0000 (UTC) (envelope-from torfinn.ingolfsen@broadpark.no) Received: from osl1sminn1.broadpark.no ([80.202.4.59]) by osl1smout1.broadpark.no (Sun Java System Messaging Server 6.1 HotFix 0.05 (built Oct 21 2004)) with ESMTP id <0JB3005CWLASKL40@osl1smout1.broadpark.no> for freebsd-multimedia@freebsd.org; Sat, 30 Dec 2006 18:44:52 +0100 (CET) Received: from kg-work.kg4.no ([80.203.66.169]) by osl1sminn1.broadpark.no (Sun Java System Messaging Server 6.1 HotFix 0.05 (built Oct 21 2004)) with SMTP id <0JB300DPTLARH9B0@osl1sminn1.broadpark.no> for freebsd-multimedia@freebsd.org; Sat, 30 Dec 2006 18:44:52 +0100 (CET) Date: Sat, 30 Dec 2006 18:44:51 +0100 From: Torfinn Ingolfsen X-Face: "t9w2,-X@O^I`jVW\sonI3.,36KBLZE*AL[y9lL[PyFD*r_S:dIL9c[8Y>V42R0"!"yb_zN,f#%.[PYYNq; m"_0v; ~rUM2Yy!zmkh)3&U|u!=T(zyv,MHJv"nDH>OJ`t(@mil461d_B'Uo|'nMwlKe0Mv=kvV?Nh@>Hb<3s_z2jYgZhPb@?Wi^x1a~Hplz1.zH In-reply-to: To: freebsd-multimedia@freebsd.org Message-id: <20061230184451.8b1fa4df.torfinn.ingolfsen@broadpark.no> MIME-version: 1.0 X-Mailer: Sylpheed version 2.2.10 (GTK+ 2.10.6; i386-portbld-freebsd6.2) Content-type: multipart/mixed; boundary="Boundary_(ID_sKF8Pv6YrP893gnV5N58JQ)" References: <20061224230155.fc0a6c6a.torfinn.ingolfsen@broadpark.no> <20061225001321.5dfb2975.torfinn.ingolfsen@broadpark.no> <20061228145909.bbb6d193.torfinn.ingolfsen@broadpark.no> Subject: Re: MythTV port - status report X-BeenThere: freebsd-multimedia@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Multimedia discussions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 30 Dec 2006 17:44:54 -0000 This is a multi-part message in MIME format. --Boundary_(ID_sKF8Pv6YrP893gnV5N58JQ) Content-type: text/plain; charset=US-ASCII Content-transfer-encoding: 7BIT On Fri, 29 Dec 2006 23:06:43 +0100 usleepless@gmail.com wrote: > pvrxxx.tgz: > the port, extract in /usr/ports/multimedia There were a couple of minor errors, here are the diffs: --- Makefile.org Sat Dec 30 18:07:22 2006 +++ Makefile Sat Dec 30 18:08:04 2006 @@ -17,7 +17,7 @@ MASTER_SITES= http://www.mavetju.org/download/adopted/ http://dl.ivtvdriver.org/ivtv/firmware/ DISTFILES= ${CXMSHAR} ${PVRTOOLS}.tar.gz pvrxxx_gpl.tgz v4l-cx25840.fw v4l-cx2341x-enc.fw v4l-cx2341x-dec.fw -IGNOREFILES= v4l-cx25840.fw v4l-cx2341x-enc.fw +IGNOREFILES= v4l-cx25840.fw v4l-cx2341x-enc.fw v4l-cx2341x-dec.fw MAINTAINER= usleepless@gmail.com COMMENT= Hauppauge PVR-150/500 TV cards driver for the cxm device, based on the pv250-port. --- distinfo.org Sat Dec 30 18:06:08 2006 +++ distinfo Sat Dec 30 18:13:13 2006 @@ -4,10 +4,12 @@ MD5 (pvr250-1.2.tar.gz) = ab6bd568158db4c45789777babe672c1 SHA256 (pvr250-1.2.tar.gz) = 477a0fe2f2c032df75838eed0a371f42cc52069765fdbf92c0a64d666986bc4a SIZE (pvr250-1.2.tar.gz) = 3946 -MD5 (pvrxxx_gpl.tgz) = d8773e9098ea92897fa8697854ab40d5 -SHA256 (pvrxxx_gpl.tgz) = a18f0eac045bde62121b68724770fe3282d20fd4ff082bd7feee831413a77962 -SIZE (pvrxxx_gpl.tgz) = 45571 +MD5 (pvrxxx_gpl.tgz) = 4f6890c2ff3b2c2f236ed9d87bb66a68 +SHA256 (pvrxxx_gpl.tgz) = 71e52aab185048de9b9bcdf898175c8c95f11c29f3e6227bd3cde04c2cf8b68f +SIZE (pvrxxx_gpl.tgz) = 45862 MD5 (v4l-cx25840.fw) = IGNORE SHA256 (v4l-cx25840.fw) = IGNORE MD5 (v4l-cx2341x-enc.fw) = IGNORE SHA256 (v4l-cx2341x-enc.fw) = IGNORE +MD5 (v4l-cx2341x-dec.fw) = IGNORE +SHA256 (v4l-cx2341x-dec.fw) = IGNORE > sys/kern/subr_taskqueue.c(.diff): > this is how my subr_taskqueue.c looks like. it was taken from 7.0?, > and it is the code that supports the new if_em and now pvrxxx too. it > is needed to implement fast interrupts. > sys/sys/taskqueue.h(.diff) > idem dito. I noticed that the correct version of these files were already in RELENG_6, so I upgraded my box (and hit a snag with a missing MFC. Thankfully it was solved extremely quick over at the -stable list). It is now running: tingo@kg-quiet$ uname -a FreeBSD kg-quiet.kg4.no 6.2-PRERELEASE FreeBSD 6.2-PRERELEASE #12: Sat Dec 30 18:25:42 CET 2006 root@:/usr/obj/usr/src/sys/QUIET amd64 > i can imagine very well that there might be problems. please let me > know. Ok, I did 'make patch-iicbb', made a new kernel and rebooted. Worked flawlessly. When I do 'make' it bombs out: In file included from /usr/ports/multimedia/pvrxxx/work/modules/cxm/cxm/../../../dev/cxm/cxm.c:83: @/dev/pci/pcivar.h: In function `pci_get_ether': @/dev/pci/pcivar.h:217: warning: cast to pointer from integer of different size @/dev/pci/pcivar.h: In function `pci_set_ether': @/dev/pci/pcivar.h:217: warning: cast from pointer to integer of different size /usr/ports/multimedia/pvrxxx/work/modules/cxm/cxm/../../../dev/cxm/cxm.c: In function `cxm_download_firmware': /usr/ports/multimedia/pvrxxx/work/modules/cxm/cxm/../../../dev/cxm/cxm.c:756: error: `cxm_decfw' undeclared (first use in this function) /usr/ports/multimedia/pvrxxx/work/modules/cxm/cxm/../../../dev/cxm/cxm.c:756: error: (Each undeclared identifier is reported only once /usr/ports/multimedia/pvrxxx/work/modules/cxm/cxm/../../../dev/cxm/cxm.c:756: error: for each function it appears in.) /usr/ports/multimedia/pvrxxx/work/modules/cxm/cxm/../../../dev/cxm/cxm.c:753: warning: unused variable `cxm_encfw' /usr/ports/multimedia/pvrxxx/work/modules/cxm/cxm/../../../dev/cxm/cxm.c: In function `cxm_encoder_wait_for_lock': /usr/ports/multimedia/pvrxxx/work/modules/cxm/cxm/../../../dev/cxm/cxm.c:1758: error: `muted' undeclared (first use in this function) /usr/ports/multimedia/pvrxxx/work/modules/cxm/cxm/../../../dev/cxm/cxm.c: In function `cxm_write_ivar': /usr/ports/multimedia/pvrxxx/work/modules/cxm/cxm/../../../dev/cxm/cxm.c:2409: warning: cast to pointer from integer of different size *** Error code 1 Stop in /usr/ports/multimedia/pvrxxx/work/modules/cxm/cxm. *** Error code 1 Stop in /usr/ports/multimedia/pvrxxx/work/modules/cxm. *** Error code 1 Stop in /usr/ports/multimedia/pvrxxx. I have include the complete make output (sea attached file). -- Regards, Torfinn Ingolfsen, Norway --Boundary_(ID_sKF8Pv6YrP893gnV5N58JQ) Content-type: application/octet-stream; name=pvrxxx-make.out Content-transfer-encoding: base64 Content-disposition: attachment; filename=pvrxxx-make.out U2NyaXB0IHN0YXJ0ZWQgb24gU2F0IERlYyAzMCAxODo0MToxMyAyMDA2CnJvb3RAa2ctcXVpZXQj IG1ha2UNCj09PT4gIFZ1bG5lcmFiaWxpdHkgY2hlY2sgZGlzYWJsZWQsIGRhdGFiYXNlIG5vdCBm b3VuZA0KPT09PiAgRXh0cmFjdGluZyBmb3IgcHZyeHh4LTIwMDYwODIyDQo9PiBNRDUgQ2hlY2tz dW0gT0sgZm9yIGN4bS0yMDA1MTAzMC5zaGFyLg0KPT4gU0hBMjU2IENoZWNrc3VtIE9LIGZvciBj eG0tMjAwNTEwMzAuc2hhci4NCj0+IE1ENSBDaGVja3N1bSBPSyBmb3IgcHZyMjUwLTEuMi50YXIu Z3ouDQo9PiBTSEEyNTYgQ2hlY2tzdW0gT0sgZm9yIHB2cjI1MC0xLjIudGFyLmd6Lg0KPT4gTUQ1 IENoZWNrc3VtIE9LIGZvciBwdnJ4eHhfZ3BsLnRnei4NCj0+IFNIQTI1NiBDaGVja3N1bSBPSyBm b3IgcHZyeHh4X2dwbC50Z3ouDQovYmluL21rZGlyIC1wIC91c3IvcG9ydHMvbXVsdGltZWRpYS9w dnJ4eHgvd29yaw0KY2QgL3Vzci9wb3J0cy9tdWx0aW1lZGlhL3B2cnh4eC93b3JrOyAgL2Jpbi9z aCAvdXNyL3BvcnRzL2Rpc3RmaWxlcy9jeG0tMjAwNTEwMzAuc2hhcjsgIC91c3IvYmluL2d6aXAg LW5mIC05IC1kYyAvdXNyL3BvcnRzL2Rpc3RmaWxlcy8vcHZyMjUwLTEuMi50YXIuZ3ogfCAvdXNy L2Jpbi90YXIgLXhmIC07ICBjZCBtb2R1bGVzL2N4bS9jeG07ICAvdXNyL2Jpbi9nemlwIC1uZiAt OSAtZGMgL3Vzci9wb3J0cy9kaXN0ZmlsZXMvL3B2cnh4eF9ncGwudGd6IHwgL3Vzci9iaW4vdGFy IC14ZiAtOw0KYyAtIGRldi9jeG0NCnggLSBkZXYvY3htL1BhdGNoLmlpY2JiLWZic2Q0DQp4IC0g ZGV2L2N4bS9QYXRjaC5paWNiYi1mYnNkNQ0KeCAtIGRldi9jeG0vY3htLmMNCnggLSBkZXYvY3ht L2N4bS5oDQp4IC0gZGV2L2N4bS9jeG1fYXVkaW8uYw0KeCAtIGRldi9jeG0vY3htX2VlcHJvbS5j DQp4IC0gZGV2L2N4bS9jeG1faTJjLmMNCnggLSBkZXYvY3htL2N4bV9pci5jDQp4IC0gZGV2L2N4 bS9jeG1fdHVuZXIuYw0KeCAtIGRldi9jeG0vY3htX3ZpZGVvLmMNCnggLSBkZXYvY3htL2N4bV9l eHRyYWN0X2Z3LmMNCmMgLSBtb2R1bGVzL2N4bQ0KeCAtIG1vZHVsZXMvY3htL01ha2VmaWxlDQpj IC0gbW9kdWxlcy9jeG0vY3htDQp4IC0gbW9kdWxlcy9jeG0vY3htL01ha2VmaWxlDQpjIC0gbW9k dWxlcy9jeG0vY3htX2lpYw0KeCAtIG1vZHVsZXMvY3htL2N4bV9paWMvTWFrZWZpbGUNCj09PT4g IFBhdGNoaW5nIGZvciBwdnJ4eHgtMjAwNjA4MjINCj09PT4gIEFwcGx5aW5nIEZyZWVCU0QgcGF0 Y2hlcyBmb3IgcHZyeHh4LTIwMDYwODIyDQovdXNyL2Jpbi9zZWQgLWkuYmFrIC1lICdzL3R1bmVy MC9jeG0wLycgIC91c3IvcG9ydHMvbXVsdGltZWRpYS9wdnJ4eHgvd29yay9wdnIyNTAtMS4yL3Nl dGNoYW5uZWwuYw0KPT09PiAgQ29uZmlndXJpbmcgZm9yIHB2cnh4eC0yMDA2MDgyMg0KY3AgL3Vz ci9wb3J0cy9kaXN0ZmlsZXMvdjRsLWN4MjU4NDAuZncgL3Vzci9wb3J0cy9tdWx0aW1lZGlhL3B2 cnh4eC93b3JrL21vZHVsZXMvY3htL2N4bV9jeDI1ODQwZncvY3gyNTg0MC5mdyA7ICBjcCAvdXNy L3BvcnRzL2Rpc3RmaWxlcy92NGwtY3gyMzQxeC1kZWMuZncgL3Vzci9wb3J0cy9tdWx0aW1lZGlh L3B2cnh4eC93b3JrL21vZHVsZXMvY3htL2N4bV9kZWNmdy9jeG1fZGVjLmZ3IDsgIGNwIC91c3Iv cG9ydHMvZGlzdGZpbGVzL3Y0bC1jeDIzNDF4LWVuYy5mdyAvdXNyL3BvcnRzL211bHRpbWVkaWEv cHZyeHh4L3dvcmsvbW9kdWxlcy9jeG0vY3htX2VuY2Z3L2N4bV9lbmMuZncNCj09PT4gIEJ1aWxk aW5nIGZvciBwdnJ4eHgtMjAwNjA4MjINCmNkIC91c3IvcG9ydHMvbXVsdGltZWRpYS9wdnJ4eHgv d29yay9tb2R1bGVzL2N4bTsgbWFrZQ0KPT09PiBjeG0gKGFsbCkNCldhcm5pbmc6IE9iamVjdCBk aXJlY3Rvcnkgbm90IGNoYW5nZWQgZnJvbSBvcmlnaW5hbCAvdXNyL3BvcnRzL211bHRpbWVkaWEv cHZyeHh4L3dvcmsvbW9kdWxlcy9jeG0vY3htDQphd2sgLWYgQC90b29scy9tYWtlb2Jqb3BzLmF3 ayBAL2tlcm4vYnVzX2lmLm0gLWgNCmF3ayAtZiBAL3Rvb2xzL21ha2VvYmpvcHMuYXdrIEAva2Vy bi9kZXZpY2VfaWYubSAtaA0KYXdrIC1mIEAvdG9vbHMvbWFrZW9iam9wcy5hd2sgQC9kZXYvaWlj YnVzL2lpY2JiX2lmLm0gLWgNCmF3ayAtZiBAL3Rvb2xzL21ha2VvYmpvcHMuYXdrIEAvZGV2L3Bj aS9wY2lfaWYubSAtaA0KYXdrIC1mIEAvdG9vbHMvdm5vZGVfaWYuYXdrIEAva2Vybi92bm9kZV9p Zi5zcmMgLXANCmF3ayAtZiBAL3Rvb2xzL3Zub2RlX2lmLmF3ayBAL2tlcm4vdm5vZGVfaWYuc3Jj IC1xDQphd2sgLWYgQC90b29scy92bm9kZV9pZi5hd2sgQC9rZXJuL3Zub2RlX2lmLnNyYyAtaA0K Y2MgLU8gLXBpcGUgLVdlcnJvciAtRF9LRVJORUwgLURLTERfTU9EVUxFIC1ub3N0ZGluYyAtSS0g IC1JLi4vLi4vLi4gLUkuIC1JQCAtSUAvY29udHJpYi9hbHRxIC1JQC8uLi9pbmNsdWRlIC1maW5s aW5lLWxpbWl0PTgwMDAgLWZuby1jb21tb24gIC1mbm8tb21pdC1mcmFtZS1wb2ludGVyIC1tY21v ZGVsPWtlcm5lbCAtbW5vLXJlZC16b25lICAtbWZwbWF0aD0zODcgLW1uby1zc2UgLW1uby1zc2Uy IC1tbm8tbW14IC1tbm8tM2Rub3cgIC1tc29mdC1mbG9hdCAtZm5vLWFzeW5jaHJvbm91cy11bndp bmQtdGFibGVzIC1mZnJlZXN0YW5kaW5nIC1XYWxsIC1XcmVkdW5kYW50LWRlY2xzIC1XbmVzdGVk LWV4dGVybnMgLVdzdHJpY3QtcHJvdG90eXBlcyAgLVdtaXNzaW5nLXByb3RvdHlwZXMgLVdwb2lu dGVyLWFyaXRoIC1XaW5saW5lIC1XY2FzdC1xdWFsICAtZmZvcm1hdC1leHRlbnNpb25zIC1zdGQ9 Yzk5IC1jIC91c3IvcG9ydHMvbXVsdGltZWRpYS9wdnJ4eHgvd29yay9tb2R1bGVzL2N4bS9jeG0v Li4vLi4vLi4vZGV2L2N4bS9jeG0uYw0KSW4gZmlsZSBpbmNsdWRlZCBmcm9tIEAvc3lzL3N5c3Rt Lmg6NDIsDQogICAgICAgICAgICAgICAgIGZyb20gL3Vzci9wb3J0cy9tdWx0aW1lZGlhL3B2cnh4 eC93b3JrL21vZHVsZXMvY3htL2N4bS8uLi8uLi8uLi9kZXYvY3htL2N4bS5jOjQyOg0KLi9tYWNo aW5lL2NwdWZ1bmMuaDogSW4gZnVuY3Rpb24gYGludmxwZyc6DQouL21hY2hpbmUvY3B1ZnVuYy5o OjQ0ODogd2FybmluZzogY2FzdCB0byBwb2ludGVyIGZyb20gaW50ZWdlciBvZiBkaWZmZXJlbnQg c2l6ZQ0KSW4gZmlsZSBpbmNsdWRlZCBmcm9tIC91c3IvcG9ydHMvbXVsdGltZWRpYS9wdnJ4eHgv d29yay9tb2R1bGVzL2N4bS9jeG0vLi4vLi4vLi4vZGV2L2N4bS9jeG0uYzo2MzoNCi4vbWFjaGlu ZS9idXMuaDogSW4gZnVuY3Rpb24gYGJ1c19zcGFjZV9yZWFkXzEnOg0KLi9tYWNoaW5lL2J1cy5o OjIyNTogd2FybmluZzogY2FzdCB0byBwb2ludGVyIGZyb20gaW50ZWdlciBvZiBkaWZmZXJlbnQg c2l6ZQ0KLi9tYWNoaW5lL2J1cy5oOiBJbiBmdW5jdGlvbiBgYnVzX3NwYWNlX3JlYWRfMic6DQou L21hY2hpbmUvYnVzLmg6MjM1OiB3YXJuaW5nOiBjYXN0IHRvIHBvaW50ZXIgZnJvbSBpbnRlZ2Vy IG9mIGRpZmZlcmVudCBzaXplDQouL21hY2hpbmUvYnVzLmg6IEluIGZ1bmN0aW9uIGBidXNfc3Bh Y2VfcmVhZF80JzoNCi4vbWFjaGluZS9idXMuaDoyNDU6IHdhcm5pbmc6IGNhc3QgdG8gcG9pbnRl ciBmcm9tIGludGVnZXIgb2YgZGlmZmVyZW50IHNpemUNCi4vbWFjaGluZS9idXMuaDogSW4gZnVu Y3Rpb24gYGJ1c19zcGFjZV93cml0ZV8xJzoNCi4vbWFjaGluZS9idXMuaDo1MjA6IHdhcm5pbmc6 IGNhc3QgdG8gcG9pbnRlciBmcm9tIGludGVnZXIgb2YgZGlmZmVyZW50IHNpemUNCi4vbWFjaGlu ZS9idXMuaDogSW4gZnVuY3Rpb24gYGJ1c19zcGFjZV93cml0ZV8yJzoNCi4vbWFjaGluZS9idXMu aDo1MzE6IHdhcm5pbmc6IGNhc3QgdG8gcG9pbnRlciBmcm9tIGludGVnZXIgb2YgZGlmZmVyZW50 IHNpemUNCi4vbWFjaGluZS9idXMuaDogSW4gZnVuY3Rpb24gYGJ1c19zcGFjZV93cml0ZV80JzoN Ci4vbWFjaGluZS9idXMuaDo1NDI6IHdhcm5pbmc6IGNhc3QgdG8gcG9pbnRlciBmcm9tIGludGVn ZXIgb2YgZGlmZmVyZW50IHNpemUNCi4vbWFjaGluZS9idXMuaDogSW4gZnVuY3Rpb24gYGJ1c19z cGFjZV9zZXRfbXVsdGlfMSc6DQouL21hY2hpbmUvYnVzLmg6ODI2OiB3YXJuaW5nOiBjYXN0IHRv IHBvaW50ZXIgZnJvbSBpbnRlZ2VyIG9mIGRpZmZlcmVudCBzaXplDQouL21hY2hpbmUvYnVzLmg6 IEluIGZ1bmN0aW9uIGBidXNfc3BhY2Vfc2V0X211bHRpXzInOg0KLi9tYWNoaW5lL2J1cy5oOjg0 MDogd2FybmluZzogY2FzdCB0byBwb2ludGVyIGZyb20gaW50ZWdlciBvZiBkaWZmZXJlbnQgc2l6 ZQ0KLi9tYWNoaW5lL2J1cy5oOiBJbiBmdW5jdGlvbiBgYnVzX3NwYWNlX3NldF9tdWx0aV80JzoN Ci4vbWFjaGluZS9idXMuaDo4NTQ6IHdhcm5pbmc6IGNhc3QgdG8gcG9pbnRlciBmcm9tIGludGVn ZXIgb2YgZGlmZmVyZW50IHNpemUNCi4vbWFjaGluZS9idXMuaDogSW4gZnVuY3Rpb24gYGJ1c19z cGFjZV9zZXRfcmVnaW9uXzEnOg0KLi9tYWNoaW5lL2J1cy5oOjg5MDogd2FybmluZzogY2FzdCB0 byBwb2ludGVyIGZyb20gaW50ZWdlciBvZiBkaWZmZXJlbnQgc2l6ZQ0KLi9tYWNoaW5lL2J1cy5o OiBJbiBmdW5jdGlvbiBgYnVzX3NwYWNlX3NldF9yZWdpb25fMic6DQouL21hY2hpbmUvYnVzLmg6 OTA0OiB3YXJuaW5nOiBjYXN0IHRvIHBvaW50ZXIgZnJvbSBpbnRlZ2VyIG9mIGRpZmZlcmVudCBz aXplDQouL21hY2hpbmUvYnVzLmg6IEluIGZ1bmN0aW9uIGBidXNfc3BhY2Vfc2V0X3JlZ2lvbl80 JzoNCi4vbWFjaGluZS9idXMuaDo5MTg6IHdhcm5pbmc6IGNhc3QgdG8gcG9pbnRlciBmcm9tIGlu dGVnZXIgb2YgZGlmZmVyZW50IHNpemUNCi4vbWFjaGluZS9idXMuaDogSW4gZnVuY3Rpb24gYGJ1 c19zcGFjZV9jb3B5X3JlZ2lvbl8xJzoNCi4vbWFjaGluZS9idXMuaDo5NzE6IHdhcm5pbmc6IGNh c3QgdG8gcG9pbnRlciBmcm9tIGludGVnZXIgb2YgZGlmZmVyZW50IHNpemUNCi4vbWFjaGluZS9i dXMuaDo5NzI6IHdhcm5pbmc6IGNhc3QgdG8gcG9pbnRlciBmcm9tIGludGVnZXIgb2YgZGlmZmVy ZW50IHNpemUNCi4vbWFjaGluZS9idXMuaDo5Nzc6IHdhcm5pbmc6IGNhc3QgdG8gcG9pbnRlciBm cm9tIGludGVnZXIgb2YgZGlmZmVyZW50IHNpemUNCi4vbWFjaGluZS9idXMuaDo5Nzg6IHdhcm5p bmc6IGNhc3QgdG8gcG9pbnRlciBmcm9tIGludGVnZXIgb2YgZGlmZmVyZW50IHNpemUNCi4vbWFj aGluZS9idXMuaDogSW4gZnVuY3Rpb24gYGJ1c19zcGFjZV9jb3B5X3JlZ2lvbl8yJzoNCi4vbWFj aGluZS9idXMuaDoxMDA2OiB3YXJuaW5nOiBjYXN0IHRvIHBvaW50ZXIgZnJvbSBpbnRlZ2VyIG9m IGRpZmZlcmVudCBzaXplDQouL21hY2hpbmUvYnVzLmg6MTAwNzogd2FybmluZzogY2FzdCB0byBw b2ludGVyIGZyb20gaW50ZWdlciBvZiBkaWZmZXJlbnQgc2l6ZQ0KLi9tYWNoaW5lL2J1cy5oOjEw MTI6IHdhcm5pbmc6IGNhc3QgdG8gcG9pbnRlciBmcm9tIGludGVnZXIgb2YgZGlmZmVyZW50IHNp emUNCi4vbWFjaGluZS9idXMuaDoxMDEzOiB3YXJuaW5nOiBjYXN0IHRvIHBvaW50ZXIgZnJvbSBp bnRlZ2VyIG9mIGRpZmZlcmVudCBzaXplDQouL21hY2hpbmUvYnVzLmg6IEluIGZ1bmN0aW9uIGBi dXNfc3BhY2VfY29weV9yZWdpb25fNCc6DQouL21hY2hpbmUvYnVzLmg6MTA0MTogd2FybmluZzog Y2FzdCB0byBwb2ludGVyIGZyb20gaW50ZWdlciBvZiBkaWZmZXJlbnQgc2l6ZQ0KLi9tYWNoaW5l L2J1cy5oOjEwNDI6IHdhcm5pbmc6IGNhc3QgdG8gcG9pbnRlciBmcm9tIGludGVnZXIgb2YgZGlm ZmVyZW50IHNpemUNCi4vbWFjaGluZS9idXMuaDoxMDQ3OiB3YXJuaW5nOiBjYXN0IHRvIHBvaW50 ZXIgZnJvbSBpbnRlZ2VyIG9mIGRpZmZlcmVudCBzaXplDQouL21hY2hpbmUvYnVzLmg6MTA0ODog d2FybmluZzogY2FzdCB0byBwb2ludGVyIGZyb20gaW50ZWdlciBvZiBkaWZmZXJlbnQgc2l6ZQ0K SW4gZmlsZSBpbmNsdWRlZCBmcm9tIC91c3IvcG9ydHMvbXVsdGltZWRpYS9wdnJ4eHgvd29yay9t b2R1bGVzL2N4bS9jeG0vLi4vLi4vLi4vZGV2L2N4bS9jeG0uYzo4MzoNCkAvZGV2L3BjaS9wY2l2 YXIuaDogSW4gZnVuY3Rpb24gYHBjaV9nZXRfZXRoZXInOg0KQC9kZXYvcGNpL3BjaXZhci5oOjIx Nzogd2FybmluZzogY2FzdCB0byBwb2ludGVyIGZyb20gaW50ZWdlciBvZiBkaWZmZXJlbnQgc2l6 ZQ0KQC9kZXYvcGNpL3BjaXZhci5oOiBJbiBmdW5jdGlvbiBgcGNpX3NldF9ldGhlcic6DQpAL2Rl di9wY2kvcGNpdmFyLmg6MjE3OiB3YXJuaW5nOiBjYXN0IGZyb20gcG9pbnRlciB0byBpbnRlZ2Vy IG9mIGRpZmZlcmVudCBzaXplDQovdXNyL3BvcnRzL211bHRpbWVkaWEvcHZyeHh4L3dvcmsvbW9k dWxlcy9jeG0vY3htLy4uLy4uLy4uL2Rldi9jeG0vY3htLmM6IEluIGZ1bmN0aW9uIGBjeG1fZG93 bmxvYWRfZmlybXdhcmUnOg0KL3Vzci9wb3J0cy9tdWx0aW1lZGlhL3B2cnh4eC93b3JrL21vZHVs ZXMvY3htL2N4bS8uLi8uLi8uLi9kZXYvY3htL2N4bS5jOjc1NjogZXJyb3I6IGBjeG1fZGVjZncn IHVuZGVjbGFyZWQgKGZpcnN0IHVzZSBpbiB0aGlzIGZ1bmN0aW9uKQ0KL3Vzci9wb3J0cy9tdWx0 aW1lZGlhL3B2cnh4eC93b3JrL21vZHVsZXMvY3htL2N4bS8uLi8uLi8uLi9kZXYvY3htL2N4bS5j Ojc1NjogZXJyb3I6IChFYWNoIHVuZGVjbGFyZWQgaWRlbnRpZmllciBpcyByZXBvcnRlZCBvbmx5 IG9uY2UNCi91c3IvcG9ydHMvbXVsdGltZWRpYS9wdnJ4eHgvd29yay9tb2R1bGVzL2N4bS9jeG0v Li4vLi4vLi4vZGV2L2N4bS9jeG0uYzo3NTY6IGVycm9yOiBmb3IgZWFjaCBmdW5jdGlvbiBpdCBh cHBlYXJzIGluLikNCi91c3IvcG9ydHMvbXVsdGltZWRpYS9wdnJ4eHgvd29yay9tb2R1bGVzL2N4 bS9jeG0vLi4vLi4vLi4vZGV2L2N4bS9jeG0uYzo3NTM6IHdhcm5pbmc6IHVudXNlZCB2YXJpYWJs ZSBgY3htX2VuY2Z3Jw0KL3Vzci9wb3J0cy9tdWx0aW1lZGlhL3B2cnh4eC93b3JrL21vZHVsZXMv Y3htL2N4bS8uLi8uLi8uLi9kZXYvY3htL2N4bS5jOiBJbiBmdW5jdGlvbiBgY3htX2VuY29kZXJf d2FpdF9mb3JfbG9jayc6DQovdXNyL3BvcnRzL211bHRpbWVkaWEvcHZyeHh4L3dvcmsvbW9kdWxl cy9jeG0vY3htLy4uLy4uLy4uL2Rldi9jeG0vY3htLmM6MTc1ODogZXJyb3I6IGBtdXRlZCcgdW5k ZWNsYXJlZCAoZmlyc3QgdXNlIGluIHRoaXMgZnVuY3Rpb24pDQovdXNyL3BvcnRzL211bHRpbWVk aWEvcHZyeHh4L3dvcmsvbW9kdWxlcy9jeG0vY3htLy4uLy4uLy4uL2Rldi9jeG0vY3htLmM6IElu IGZ1bmN0aW9uIGBjeG1fd3JpdGVfaXZhcic6DQovdXNyL3BvcnRzL211bHRpbWVkaWEvcHZyeHh4 L3dvcmsvbW9kdWxlcy9jeG0vY3htLy4uLy4uLy4uL2Rldi9jeG0vY3htLmM6MjQwOTogd2Fybmlu ZzogY2FzdCB0byBwb2ludGVyIGZyb20gaW50ZWdlciBvZiBkaWZmZXJlbnQgc2l6ZQ0KKioqIEVy cm9yIGNvZGUgMQ0KDQpTdG9wIGluIC91c3IvcG9ydHMvbXVsdGltZWRpYS9wdnJ4eHgvd29yay9t b2R1bGVzL2N4bS9jeG0uDQoqKiogRXJyb3IgY29kZSAxDQoNClN0b3AgaW4gL3Vzci9wb3J0cy9t dWx0aW1lZGlhL3B2cnh4eC93b3JrL21vZHVsZXMvY3htLg0KKioqIEVycm9yIGNvZGUgMQ0KDQpT dG9wIGluIC91c3IvcG9ydHMvbXVsdGltZWRpYS9wdnJ4eHguDQpyb290QGtnLXF1aWV0IyBeRAgI ClNjcmlwdCBkb25lIG9uIFNhdCBEZWMgMzAgMTg6NDE6MTggMjAwNgo= --Boundary_(ID_sKF8Pv6YrP893gnV5N58JQ)-- From owner-freebsd-multimedia@FreeBSD.ORG Sat Dec 30 19:01:00 2006 Return-Path: X-Original-To: freebsd-multimedia@freebsd.org Delivered-To: freebsd-multimedia@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id CDBD016A407 for ; Sat, 30 Dec 2006 19:01:00 +0000 (UTC) (envelope-from torfinn.ingolfsen@broadpark.no) Received: from osl1smout1.broadpark.no (osl1smout1.broadpark.no [80.202.4.58]) by mx1.freebsd.org (Postfix) with ESMTP id 7622813C467 for ; Sat, 30 Dec 2006 19:01:00 +0000 (UTC) (envelope-from torfinn.ingolfsen@broadpark.no) Received: from osl1sminn1.broadpark.no ([80.202.4.59]) by osl1smout1.broadpark.no (Sun Java System Messaging Server 6.1 HotFix 0.05 (built Oct 21 2004)) with ESMTP id <0JB300599OTJKK90@osl1smout1.broadpark.no> for freebsd-multimedia@freebsd.org; Sat, 30 Dec 2006 20:00:55 +0100 (CET) Received: from kg-work.kg4.no ([80.203.66.169]) by osl1sminn1.broadpark.no (Sun Java System Messaging Server 6.1 HotFix 0.05 (built Oct 21 2004)) with SMTP id <0JB300DSJOTJH9I0@osl1sminn1.broadpark.no> for freebsd-multimedia@freebsd.org; Sat, 30 Dec 2006 20:00:55 +0100 (CET) Date: Sat, 30 Dec 2006 20:00:54 +0100 From: Torfinn Ingolfsen X-Face: "t9w2,-X@O^I`jVW\sonI3.,36KBLZE*AL[y9lL[PyFD*r_S:dIL9c[8Y>V42R0"!"yb_zN,f#%.[PYYNq; m"_0v; ~rUM2Yy!zmkh)3&U|u!=T(zyv,MHJv"nDH>OJ`t(@mil461d_B'Uo|'nMwlKe0Mv=kvV?Nh@>Hb<3s_z2jYgZhPb@?Wi^x1a~Hplz1.zH In-reply-to: <20061230184451.8b1fa4df.torfinn.ingolfsen@broadpark.no> To: freebsd-multimedia@freebsd.org Message-id: <20061230200054.e23631e5.torfinn.ingolfsen@broadpark.no> MIME-version: 1.0 X-Mailer: Sylpheed version 2.2.10 (GTK+ 2.10.6; i386-portbld-freebsd6.2) Content-type: multipart/mixed; boundary="Boundary_(ID_g2n/mFjrq4BPgdpX5VoFag)" References: <20061224230155.fc0a6c6a.torfinn.ingolfsen@broadpark.no> <20061225001321.5dfb2975.torfinn.ingolfsen@broadpark.no> <20061228145909.bbb6d193.torfinn.ingolfsen@broadpark.no> <20061230184451.8b1fa4df.torfinn.ingolfsen@broadpark.no> Subject: Re: MythTV port - status report X-BeenThere: freebsd-multimedia@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Multimedia discussions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 30 Dec 2006 19:01:00 -0000 This is a multi-part message in MIME format. --Boundary_(ID_g2n/mFjrq4BPgdpX5VoFag) Content-type: text/plain; charset=US-ASCII Content-transfer-encoding: 7BIT Next try - I found and fixed some obvoius errors, patch attached. However, I don't get very much further: In file included from /usr/ports/multimedia/pvrxxx/work/modules/cxm/cxm/../../../dev/cxm/cxm.c:83: @/dev/pci/pcivar.h: In function `pci_get_ether': @/dev/pci/pcivar.h:217: warning: cast to pointer from integer of different size @/dev/pci/pcivar.h: In function `pci_set_ether': @/dev/pci/pcivar.h:217: warning: cast from pointer to integer of different size /usr/ports/multimedia/pvrxxx/work/modules/cxm/cxm/../../../dev/cxm/cxm.c: In function `cxm_write_ivar': /usr/ports/multimedia/pvrxxx/work/modules/cxm/cxm/../../../dev/cxm/cxm.c:2409: warning: cast to pointer from integer of different size *** Error code 1 Stop in /usr/ports/multimedia/pvrxxx/work/modules/cxm/cxm. *** Error code 1 Stop in /usr/ports/multimedia/pvrxxx/work/modules/cxm. *** Error code 1 Stop in /usr/ports/multimedia/pvrxxx. That was all from me for today. -- Regards, Torfinn Ingolfsen, Norway --Boundary_(ID_g2n/mFjrq4BPgdpX5VoFag) Content-type: application/octet-stream; name=patch-dev-2 Content-transfer-encoding: base64 Content-disposition: attachment; filename=patch-dev-2 LS0tIGRldi9jeG0vY3htLmMub3JnCVNhdCBEZWMgMzAgMTk6NDc6MTEgMjAwNgorKysgZGV2L2N4 bS9jeG0uYwlTYXQgRGVjIDMwIDE5OjQ4OjAwIDIwMDYKQEAgLTc1MCw3ICs3NTAsNyBAQAogCS8q IERvd25sb2FkIHRoZSBkZWNvZGVyIGZpcm13YXJlICovCiAJaWYgKHNjLT50eXBlID09IGN4bV9p VFZDMTVfdHlwZSkgewogI2lmIF9fRnJlZUJTRF92ZXJzaW9uID49IDYwMTAwMAotCQlzdHJ1Y3Qg ZmlybXdhcmUgKmN4bV9lbmNmdzsKKwkJc3RydWN0IGZpcm13YXJlICpjeG1fZGVjZnc7CiAJCWNv bnN0IHVfaW50MzJfdCAqY3htX2RlY19mdzsKIAogCQljeG1fZGVjZncgPSBmaXJtd2FyZV9nZXQo ImN4bV9kZWNmdyIpOwpAQCAtMTcyMiw3ICsxNzIyLDcgQEAKIHN0YXRpYyBpbnQKIGN4bV9lbmNv ZGVyX3dhaXRfZm9yX2xvY2soIHN0cnVjdCBjeG1fc29mdGMgKnNjICkKIHsKLQkvKiBpbnQgbXV0 ZWQ7ICovCisJaW50IG11dGVkOwogCWludCBsb2NrZWQ7CiAJaW50IHJlc3VsdDsKIAo= --Boundary_(ID_g2n/mFjrq4BPgdpX5VoFag)-- From owner-freebsd-multimedia@FreeBSD.ORG Sat Dec 30 19:47:52 2006 Return-Path: X-Original-To: multimedia@freebsd.org Delivered-To: freebsd-multimedia@FreeBSD.ORG Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id E99F716A415 for ; Sat, 30 Dec 2006 19:47:52 +0000 (UTC) (envelope-from rizzo@icir.org) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by mx1.freebsd.org (Postfix) with ESMTP id D981913C45D for ; Sat, 30 Dec 2006 19:47:52 +0000 (UTC) (envelope-from rizzo@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.11/8.13.6) with ESMTP id kBUJFPua009249; Sat, 30 Dec 2006 11:15:25 -0800 (PST) (envelope-from rizzo@xorpc.icir.org) Received: (from rizzo@localhost) by xorpc.icir.org (8.12.11/8.12.3/Submit) id kBUJFPwo009248; Sat, 30 Dec 2006 11:15:25 -0800 (PST) (envelope-from rizzo) Date: Sat, 30 Dec 2006 11:15:25 -0800 From: Luigi Rizzo To: multimedia@freebsd.org Message-ID: <20061230111525.A9195@xorpc.icir.org> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline User-Agent: Mutt/1.2.5.1i Cc: Subject: pwcbsd extensions for spca-supported cameras X-BeenThere: freebsd-multimedia@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Multimedia discussions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 30 Dec 2006 19:47:53 -0000 If someone (kernel programmers) is interested in having a look at this code... It is not yet usable but i am moving forward quite fast, hopefully with a bit of help we can manage to have a working driver within a few days. I have been working recently to integrate more cameras into the pwcbsd port, namely those supported by the spca (userland) application/driver. I am doing rather good progress, but wouldn't mind a bit of review/help if you are interested. Details are at http://info.iet.unipi.it/~luigi/FreeBSD/usb-cameras.html basically i can probe the camera and start the usb transfer, all left to do now is link the code that detects the start of frame into the usb isoc stream, and later to invoke the format converters appropriately. let me know if you have any suggestions on how to proceed with this. (the code is basically the pwcbsd and spcaview that we have in the ports, with very limited modifications - the license is obviously the same as the original, so this is going to remain a port). cheers luigi