From owner-freebsd-multimedia@FreeBSD.ORG Sun Nov 8 01:10:04 2009 Return-Path: Delivered-To: freebsd-multimedia@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 19E47106566B for ; Sun, 8 Nov 2009 01:10:04 +0000 (UTC) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:4f8:fff6::28]) by mx1.freebsd.org (Postfix) with ESMTP id 085DA8FC1C for ; Sun, 8 Nov 2009 01:10:04 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.3/8.14.3) with ESMTP id nA81A347049625 for ; Sun, 8 Nov 2009 01:10:03 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.3/8.14.3/Submit) id nA81A3th049624; Sun, 8 Nov 2009 01:10:03 GMT (envelope-from gnats) Date: Sun, 8 Nov 2009 01:10:03 GMT Message-Id: <200911080110.nA81A3th049624@freefall.freebsd.org> To: freebsd-multimedia@FreeBSD.org From: Marian Cerny Cc: Subject: Re: kern/87782: [sound] snd_t4dwave and pcm0:record:0: record interrupt timeout, channel dead X-BeenThere: freebsd-multimedia@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list Reply-To: Marian Cerny List-Id: Multimedia discussions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 08 Nov 2009 01:10:04 -0000 The following reply was made to PR kern/87782; it has been noted by GNATS. From: Marian Cerny To: bug-followup@FreeBSD.org Cc: Subject: Re: kern/87782: [sound] snd_t4dwave and pcm0:record:0: record interrupt timeout, channel dead Date: Sun, 08 Nov 2009 01:56:32 +0100 This is a multi-part message in MIME format. --------------090104070104060404070603 Content-Type: text/plain; charset=ISO-8859-1; format=flowed Content-Transfer-Encoding: 7bit I don't have the hardware available, so I can't reproduce this problem any more. I am forwarding some old follow-ups on freebsd-multimedia, so that they are noted in GNATS. Regards, Marian -------- Original Message -------- Date: Wed, 11 Oct 2006 10:18:18 +0900 From: Pyun YongHyeon To: Anish Mistry CC: freebsd-multimedia@freebsd.org, Marian Cerny On Tue, Oct 10, 2006 at 03:59:20PM -0400, Anish Mistry wrote: > On Tuesday 10 October 2006 03:16, Pyun YongHyeon wrote: > > On Sat, Oct 07, 2006 at 04:52:02PM -0400, Anish Mistry wrote: > > > On Monday 21 November 2005 10:30, Marian Cerny wrote: > > > > The following reply was made to PR kern/87782; it has been > > > > noted by GNATS. > > > > > > > > From: Marian Cerny > > > > To: bug-followup@FreeBSD.org, freebsd@fadesa.es > > > > Cc: > > > > Subject: Re: kern/87782: [sound] snd_t4dwave and > > > > pcm0:record:0: record interrupt timeout, channel dead Date: > > > > Mon, 21 Nov 2005 16:29:00 +0100 > > > > > > > > I have the same problem on FreeBSD 5.4-RELEASE-p1. > > > > > > > > # dmesg | grep pcm > > > > pcm0: port 0x8400-0x84ff mem > > > > 0xf0011000-0xf0011fff irq 5 at device 8.0 on pci0 pcm0: > > > > > > > > pcm0:record:0: record interrupt timeout, channel dead > > > > > > pcm0: port 0x1000-0x10ff mem > > > 0xfc101000-0xfc101fff irq 9 at device 4.0 on pci0 > > > pcm0: > > > pcm0: at io 0x1000 irq 9 kld snd_t4dwave > > > (4p/1r/1v channels duplex default) > > > > > > I'm still seeing this with -CURRENT. I can give access to > > > someone if they need access. > > > > Hmm... I think I've posted a possible fix log time ago but got no > > reply. Would you please try attached patch? > > If it work for you I'll make complete patch. > The patch does not work. I don't see the channel dead message when > using wmrecord, but the app sort of hangs (I can stop the recording, > but the timer doesn't advance) and doesn't record anything. There > seems to be data in the wav file but it isn't playable. Attached. > Did recording ever work on your M5451? I have no idea why t4dwave(4) still uses legacy capturing mode(Sound Blaster compatible mode). It seems that M5451 support code lacks codec initialization. So I guess its ADC part was not activated. Try attached patch and let me know the result. -- Regards, Pyun YongHyeon --------------090104070104060404070603 Content-Type: text/plain; name="t4dwave.diff2" Content-Transfer-Encoding: 7bit Content-Disposition: attachment; filename="t4dwave.diff2" --- t4dwave.c.orig Tue Mar 1 17:58:05 2005 +++ t4dwave.c Wed Oct 11 09:57:42 2006 @@ -93,6 +93,7 @@ struct mtx *lock; + u_int32_t numchans; u_int32_t playchns; unsigned int bufsz; @@ -725,7 +726,7 @@ intsrc = tr_rd(tr, TR_REG_MISCINT, 4); if (intsrc & TR_INT_ADDR) { chnum = 0; - while (chnum < 64) { + while (chnum < tr->numchans) { mask = 0x00000001; active = tr_rd(tr, (chnum < 32)? TR_REG_ADDRINTA : TR_REG_ADDRINTB, 4); bufhalf = tr_rd(tr, (chnum < 32)? TR_REG_CSPF_A : TR_REG_CSPF_B, 4); @@ -773,6 +774,7 @@ tr_wr(tr, SPA_REG_CODECST, SPA_RST_OFF, 4); break; case TDX_PCI_ID: + case ALI_PCI_ID: tr_wr(tr, TDX_REG_CODECST, TDX_CDC_ON, 4); break; case TNX_PCI_ID: @@ -846,6 +848,10 @@ device_printf(dev, "unable to initialize the card\n"); goto bad; } + if (tr->type == ALI_PCI_ID) + tr->numchans = 32; + else + tr->numchans = 64; tr->playchns = 0; codec = AC97_CREATE(dev, tr, tr_ac97); --------------090104070104060404070603-- From owner-freebsd-multimedia@FreeBSD.ORG Sun Nov 8 09:29:15 2009 Return-Path: Delivered-To: freebsd-multimedia@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 3BA3D106568F; Sun, 8 Nov 2009 09:29:15 +0000 (UTC) (envelope-from arved@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:4f8:fff6::28]) by mx1.freebsd.org (Postfix) with ESMTP id 137328FC14; Sun, 8 Nov 2009 09:29:15 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.3/8.14.3) with ESMTP id nA89TEBV014495; Sun, 8 Nov 2009 09:29:14 GMT (envelope-from arved@freefall.freebsd.org) Received: (from arved@localhost) by freefall.freebsd.org (8.14.3/8.14.3/Submit) id nA89TELH014491; Sun, 8 Nov 2009 09:29:14 GMT (envelope-from arved) Date: Sun, 8 Nov 2009 09:29:14 GMT Message-Id: <200911080929.nA89TELH014491@freefall.freebsd.org> To: avg@icyb.net.ua, arved@FreeBSD.org, freebsd-multimedia@FreeBSD.org From: arved@FreeBSD.org Cc: Subject: Re: ports/138272: graphics/exiv2: add patch from upstream 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, 08 Nov 2009 09:29:15 -0000 Synopsis: graphics/exiv2: add patch from upstream State-Changed-From-To: open->closed State-Changed-By: arved State-Changed-When: Sun Nov 8 09:29:09 UTC 2009 State-Changed-Why: committed, thanks http://www.freebsd.org/cgi/query-pr.cgi?pr=138272 From owner-freebsd-multimedia@FreeBSD.ORG Sun Nov 8 09:30:06 2009 Return-Path: Delivered-To: freebsd-multimedia@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 022D11065696 for ; Sun, 8 Nov 2009 09:30:06 +0000 (UTC) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:4f8:fff6::28]) by mx1.freebsd.org (Postfix) with ESMTP id E5FDE8FC1B for ; Sun, 8 Nov 2009 09:30:05 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.3/8.14.3) with ESMTP id nA89U5ik014684 for ; Sun, 8 Nov 2009 09:30:05 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.3/8.14.3/Submit) id nA89U5E8014681; Sun, 8 Nov 2009 09:30:05 GMT (envelope-from gnats) Date: Sun, 8 Nov 2009 09:30:05 GMT Message-Id: <200911080930.nA89U5E8014681@freefall.freebsd.org> To: freebsd-multimedia@FreeBSD.org From: dfilter@FreeBSD.ORG (dfilter service) Cc: Subject: Re: ports/138272: 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, 08 Nov 2009 09:30:06 -0000 The following reply was made to PR ports/138272; it has been noted by GNATS. From: dfilter@FreeBSD.ORG (dfilter service) To: bug-followup@FreeBSD.org Cc: Subject: Re: ports/138272: commit references a PR Date: Sun, 8 Nov 2009 09:29:05 +0000 (UTC) arved 2009-11-08 09:28:51 UTC FreeBSD ports repository Modified files: graphics/exiv2 Makefile Added files: graphics/exiv2/files patch-src-tiffcomposite.cpp Log: Fix a digikam-crash with a patch from upstream PR: 138272 Submitted by: Andriy Gapon Revision Changes Path 1.27 +1 -0 ports/graphics/exiv2/Makefile 1.1 +20 -0 ports/graphics/exiv2/files/patch-src-tiffcomposite.cpp (new) _______________________________________________ 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 Nov 8 09:39:25 2009 Return-Path: Delivered-To: freebsd-multimedia@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id B26D71065676; Sun, 8 Nov 2009 09:39:25 +0000 (UTC) (envelope-from arved@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:4f8:fff6::28]) by mx1.freebsd.org (Postfix) with ESMTP id 8A4648FC20; Sun, 8 Nov 2009 09:39:25 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.3/8.14.3) with ESMTP id nA89dPUw024229; Sun, 8 Nov 2009 09:39:25 GMT (envelope-from arved@freefall.freebsd.org) Received: (from arved@localhost) by freefall.freebsd.org (8.14.3/8.14.3/Submit) id nA89dOH5024225; Sun, 8 Nov 2009 09:39:24 GMT (envelope-from arved) Date: Sun, 8 Nov 2009 09:39:24 GMT Message-Id: <200911080939.nA89dOH5024225@freefall.freebsd.org> To: kalten@gmx.at, arved@FreeBSD.org, freebsd-multimedia@FreeBSD.org From: arved@FreeBSD.org Cc: Subject: Re: ports/138056: multimedia/ogle: buggy pre-configure 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, 08 Nov 2009 09:39:25 -0000 Synopsis: multimedia/ogle: buggy pre-configure State-Changed-From-To: open->closed State-Changed-By: arved State-Changed-When: Sun Nov 8 09:38:53 UTC 2009 State-Changed-Why: Fix was committed by deischen on Sep 27. Thanks for reporting http://www.freebsd.org/cgi/query-pr.cgi?pr=138056 From owner-freebsd-multimedia@FreeBSD.ORG Sun Nov 8 09:46:20 2009 Return-Path: Delivered-To: freebsd-multimedia@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 855481065670; Sun, 8 Nov 2009 09:46:20 +0000 (UTC) (envelope-from arved@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:4f8:fff6::28]) by mx1.freebsd.org (Postfix) with ESMTP id 5CC4E8FC1A; Sun, 8 Nov 2009 09:46:20 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.3/8.14.3) with ESMTP id nA89kKs6032306; Sun, 8 Nov 2009 09:46:20 GMT (envelope-from arved@freefall.freebsd.org) Received: (from arved@localhost) by freefall.freebsd.org (8.14.3/8.14.3/Submit) id nA89kKEN032302; Sun, 8 Nov 2009 09:46:20 GMT (envelope-from arved) Date: Sun, 8 Nov 2009 09:46:20 GMT Message-Id: <200911080946.nA89kKEN032302@freefall.freebsd.org> To: parv@pair.com, arved@FreeBSD.org, freebsd-multimedia@FreeBSD.org From: arved@FreeBSD.org Cc: Subject: Re: ports/135313: (patch) Update multimedia/podcatcher to 3.1.4 (Sep 2008) 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, 08 Nov 2009 09:46:20 -0000 Synopsis: (patch) Update multimedia/podcatcher to 3.1.4 (Sep 2008) State-Changed-From-To: open->closed State-Changed-By: arved State-Changed-When: Sun Nov 8 09:46:15 UTC 2009 State-Changed-Why: committed, thanks http://www.freebsd.org/cgi/query-pr.cgi?pr=135313 From owner-freebsd-multimedia@FreeBSD.ORG Sun Nov 8 09:50:02 2009 Return-Path: Delivered-To: freebsd-multimedia@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 7C7901065679 for ; Sun, 8 Nov 2009 09:50:02 +0000 (UTC) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:4f8:fff6::28]) by mx1.freebsd.org (Postfix) with ESMTP id 6BDFC8FC12 for ; Sun, 8 Nov 2009 09:50:02 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.3/8.14.3) with ESMTP id nA89o2G4032390 for ; Sun, 8 Nov 2009 09:50:02 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.3/8.14.3/Submit) id nA89o26T032389; Sun, 8 Nov 2009 09:50:02 GMT (envelope-from gnats) Date: Sun, 8 Nov 2009 09:50:02 GMT Message-Id: <200911080950.nA89o26T032389@freefall.freebsd.org> To: freebsd-multimedia@FreeBSD.org From: dfilter@FreeBSD.ORG (dfilter service) Cc: Subject: Re: ports/135313: 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, 08 Nov 2009 09:50:02 -0000 The following reply was made to PR ports/135313; it has been noted by GNATS. From: dfilter@FreeBSD.ORG (dfilter service) To: bug-followup@FreeBSD.org Cc: Subject: Re: ports/135313: commit references a PR Date: Sun, 8 Nov 2009 09:46:28 +0000 (UTC) arved 2009-11-08 09:46:10 UTC FreeBSD ports repository Modified files: multimedia/podcatcher Makefile distinfo Log: Update to 3.1.4 PR: 135313 Submitted by: parv@pair.com Revision Changes Path 1.5 +16 -3 ports/multimedia/podcatcher/Makefile 1.4 +3 -3 ports/multimedia/podcatcher/distinfo _______________________________________________ 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 Nov 8 09:51:36 2009 Return-Path: Delivered-To: freebsd-multimedia@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 1B291106568F; Sun, 8 Nov 2009 09:51:36 +0000 (UTC) (envelope-from arved@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:4f8:fff6::28]) by mx1.freebsd.org (Postfix) with ESMTP id E6CFD8FC17; Sun, 8 Nov 2009 09:51:35 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.3/8.14.3) with ESMTP id nA89pZg4040378; Sun, 8 Nov 2009 09:51:35 GMT (envelope-from arved@freefall.freebsd.org) Received: (from arved@localhost) by freefall.freebsd.org (8.14.3/8.14.3/Submit) id nA89pZ9V040374; Sun, 8 Nov 2009 09:51:35 GMT (envelope-from arved) Date: Sun, 8 Nov 2009 09:51:35 GMT Message-Id: <200911080951.nA89pZ9V040374@freefall.freebsd.org> To: takuroho@jcom.home.ne.jp, arved@FreeBSD.org, freebsd-multimedia@FreeBSD.org From: arved@FreeBSD.org Cc: Subject: Re: ports/132431: multimedia/ogmtools dvdxchap are not installed. 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, 08 Nov 2009 09:51:36 -0000 Synopsis: multimedia/ogmtools dvdxchap are not installed. State-Changed-From-To: open->closed State-Changed-By: arved State-Changed-When: Sun Nov 8 09:51:29 UTC 2009 State-Changed-Why: committed, thanks http://www.freebsd.org/cgi/query-pr.cgi?pr=132431 From owner-freebsd-multimedia@FreeBSD.ORG Sun Nov 8 10:00:13 2009 Return-Path: Delivered-To: freebsd-multimedia@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 989E51065679 for ; Sun, 8 Nov 2009 10:00:13 +0000 (UTC) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:4f8:fff6::28]) by mx1.freebsd.org (Postfix) with ESMTP id 884218FC12 for ; Sun, 8 Nov 2009 10:00:13 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.3/8.14.3) with ESMTP id nA8A0D4j040554 for ; Sun, 8 Nov 2009 10:00:13 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.3/8.14.3/Submit) id nA8A0D6l040553; Sun, 8 Nov 2009 10:00:13 GMT (envelope-from gnats) Date: Sun, 8 Nov 2009 10:00:13 GMT Message-Id: <200911081000.nA8A0D6l040553@freefall.freebsd.org> To: freebsd-multimedia@FreeBSD.org From: dfilter@FreeBSD.ORG (dfilter service) Cc: Subject: Re: ports/132431: 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, 08 Nov 2009 10:00:13 -0000 The following reply was made to PR ports/132431; it has been noted by GNATS. From: dfilter@FreeBSD.ORG (dfilter service) To: bug-followup@FreeBSD.org Cc: Subject: Re: ports/132431: commit references a PR Date: Sun, 8 Nov 2009 09:51:31 +0000 (UTC) arved 2009-11-08 09:51:18 UTC FreeBSD ports repository Modified files: multimedia/ogmtools Makefile Log: Fix detection of libdvdread PR: 132431 Submitted by: Takuro Horikawa Revision Changes Path 1.28 +2 -2 ports/multimedia/ogmtools/Makefile _______________________________________________ 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 Nov 8 10:52:02 2009 Return-Path: Delivered-To: freebsd-multimedia@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 75EA7106566B for ; Sun, 8 Nov 2009 10:52:02 +0000 (UTC) (envelope-from usleepless@gmail.com) Received: from mail-bw0-f213.google.com (mail-bw0-f213.google.com [209.85.218.213]) by mx1.freebsd.org (Postfix) with ESMTP id 0765E8FC15 for ; Sun, 8 Nov 2009 10:52:01 +0000 (UTC) Received: by bwz5 with SMTP id 5so2633048bwz.3 for ; Sun, 08 Nov 2009 02:52:01 -0800 (PST) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=gamma; h=domainkey-signature:mime-version:received:in-reply-to:references :date:message-id:subject:from:to:cc:content-type; bh=MJbGmx9S02RYQSYcpGlYRYt+6ne0n00oqevp6OpkwuA=; b=Gcrh1mSjc6oc4SQ4d2BfmYzH8BDVuPR192HXxAHKvfmCCgs4lmAiFiAh0z6Q6XWLTu PHumPUqGbk3gK0ns6lxAy7eM28D6nH5WWaADxw5ds7palnWuNJee1phjkVUS9/Sb3U+Y t3FFW8r7uI9PpaBTBTAXtQq+kOY1GlqPh4C78= DomainKey-Signature: a=rsa-sha1; c=nofws; d=gmail.com; s=gamma; h=mime-version:in-reply-to:references:date:message-id:subject:from:to :cc:content-type; b=ZYHaEPZddOFH4/2WO0jVkNrlGJTbE0yQxVnhg57LtIFzN540Emezfpv0EPI4+pgLrj LPlgatt0MzxaBpvp1+4Vg+og+naQ+zIQwwOjluUJVfoYvKrl7gBxx/3Aef6scDiEp9k5 NVxow9L6d0Mt/U7U2HwTgdsbkCfMFGcSxVg84= MIME-Version: 1.0 Received: by 10.204.29.15 with SMTP id o15mr7005299bkc.145.1257675523594; Sun, 08 Nov 2009 02:18:43 -0800 (PST) In-Reply-To: <20091107233658.bb970c84.torfinn.ingolfsen@broadpark.no> References: <20091107233658.bb970c84.torfinn.ingolfsen@broadpark.no> Date: Sun, 8 Nov 2009 11:18:42 +0100 Message-ID: From: usleepless@gmail.com To: Torfinn Ingolfsen Content-Type: text/plain; charset=ISO-8859-1 X-Content-Filtered-By: Mailman/MimeDel 2.1.5 Cc: freebsd-multimedia@freebsd.org Subject: Re: MythTV 0.22 is out 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, 08 Nov 2009 10:52:02 -0000 Hi Torfinn and MM-enthousiasts, On Sat, Nov 7, 2009 at 11:36 PM, Torfinn Ingolfsen < torfinn.ingolfsen@broadpark.no> wrote: > FYI, > > MythTV[1] 0.22 is out. > Just in case anyone has an urge to port it... > > Thanks for the headsup. Configure needs at least this: ./configure --disable-dvb --prefix=/usr/local --extra-cflags=-I/usr/local/include --extra-ldflags=-L/usr/local/lib I am building now to see if there are any compile-errors. This configure has ivtv-disabled ( so no support for hauppage/pvrxxx ). But if this run compiles without errors, i will try to get it to build with ivtv/pvrxxx support. kind regards, usleep > References: > 1) http://www.mythtv.org/ > -- > Torfinn > > _______________________________________________ > 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 Sun Nov 8 12:36:52 2009 Return-Path: Delivered-To: freebsd-multimedia@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 841D01065696 for ; Sun, 8 Nov 2009 12:36:52 +0000 (UTC) (envelope-from usleepless@gmail.com) Received: from mail-bw0-f213.google.com (mail-bw0-f213.google.com [209.85.218.213]) by mx1.freebsd.org (Postfix) with ESMTP id 0030A8FC24 for ; Sun, 8 Nov 2009 12:36:50 +0000 (UTC) Received: by bwz5 with SMTP id 5so2678964bwz.3 for ; Sun, 08 Nov 2009 04:36:50 -0800 (PST) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=gamma; h=domainkey-signature:mime-version:received:in-reply-to:references :date:message-id:subject:from:to:cc:content-type; bh=u5CGVAYubjQesWmhRLRaZOdo4+2FxwF5KIhniR1Ljuw=; b=Wj45vA7TperuekYzBB3g8/snjKpn6szzjerkLA73l0NR1/tZxg15lvNDS7mk9+cVgX Bizxp2ffqFkYGw7svyvKb82pJN5ee70EmTCHQOTjA+ZAdF64i5one695px1e6WP+tNus 9ko3vEacpSMouABEd3FqxbIrqdcgwRa3fpxWw= DomainKey-Signature: a=rsa-sha1; c=nofws; d=gmail.com; s=gamma; h=mime-version:in-reply-to:references:date:message-id:subject:from:to :cc:content-type; b=r8UE0YTJuXNRoFQkK7bDyNfQijqpzZKqdAkiOY6YZbGZdOaYF9ng/46h77N6TnlPhD bFzb/eaEsQmOxDvR0kGwQA7amreKeNMGgEktAxa8CKd8z6vfVjKYekgHRPNCX26+hxiO o3M7F5C4vXY5KrkHzZWvirc9le1GsdnoBQZUE= MIME-Version: 1.0 Received: by 10.204.155.80 with SMTP id r16mr2277280bkw.133.1257683809594; Sun, 08 Nov 2009 04:36:49 -0800 (PST) In-Reply-To: References: <20091107233658.bb970c84.torfinn.ingolfsen@broadpark.no> Date: Sun, 8 Nov 2009 13:36:49 +0100 Message-ID: From: usleepless@gmail.com To: Torfinn Ingolfsen Content-Type: text/plain; charset=ISO-8859-1 X-Content-Filtered-By: Mailman/MimeDel 2.1.5 Cc: freebsd-multimedia@freebsd.org Subject: Re: MythTV 0.22 is out 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, 08 Nov 2009 12:36:52 -0000 On Sun, Nov 8, 2009 at 11:18 AM, wrote: > Hi Torfinn and MM-enthousiasts, > > On Sat, Nov 7, 2009 at 11:36 PM, Torfinn Ingolfsen < > torfinn.ingolfsen@broadpark.no> wrote: > >> FYI, >> >> MythTV[1] 0.22 is out. >> Just in case anyone has an urge to port it... >> >> Thanks for the headsup. > > Configure needs at least this: > > ./configure --disable-dvb --prefix=/usr/local > --extra-cflags=-I/usr/local/include --extra-ldflags=-L/usr/local/lib > > I am building now to see if there are any compile-errors. This configure > has ivtv-disabled ( so no support for hauppage/pvrxxx ). But if this run > compiles without errors, i will try to get it to build with ivtv/pvrxxx > support. > > First builderror: build picks up headers from /usr/local/include/libavutil. It shouldn't. Move that directory out of the way if it is a problem in compiling libavcodec. audiooutputbase.cpp audiooutputdigitalencoder.cpp: hack configure to remove itvtv disabledment from freebsd section > kind regards, > > usleep > > > >> References: >> 1) http://www.mythtv.org/ >> -- >> Torfinn >> >> _______________________________________________ >> 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 Sun Nov 8 12:38:00 2009 Return-Path: Delivered-To: freebsd-multimedia@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id D00CF106568D for ; Sun, 8 Nov 2009 12:38:00 +0000 (UTC) (envelope-from usleepless@gmail.com) Received: from mail-bw0-f213.google.com (mail-bw0-f213.google.com [209.85.218.213]) by mx1.freebsd.org (Postfix) with ESMTP id 557528FC15 for ; Sun, 8 Nov 2009 12:38:00 +0000 (UTC) Received: by bwz5 with SMTP id 5so2679487bwz.3 for ; Sun, 08 Nov 2009 04:37:59 -0800 (PST) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=gamma; h=domainkey-signature:mime-version:received:in-reply-to:references :date:message-id:subject:from:to:cc:content-type; bh=9wG1VnboXgjuj9AuAH34gEr6aUVTVnWPir8inCtLfII=; b=LdoThjWWJw0b5TpmkhCjsK8gqVq292GILdPQCrbzz3bOWyvzzfBdzc98ykHEy+s9Af FzxJo3iAWqnH0tetgNYZmDNlN38t0AQFpzUtYL/XtzdV7AfEt1DzJ0FFq3fhb/xbysjC Bxlw0PaQ+xB7sl5nwMPO07vJ+BoaV2GjskzTU= DomainKey-Signature: a=rsa-sha1; c=nofws; d=gmail.com; s=gamma; h=mime-version:in-reply-to:references:date:message-id:subject:from:to :cc:content-type; b=wUPtU8AuVpaQUGbBzdelM2zrSb/4e3Ny+4bW0leC8geJ85diCftPE5x1jxx9mupsWu qa91kgXSJslg7B3Biw4wHnnKkckxwsm/3j6LvgWAO3JVmNyab1y4DtidN84CAmHIoWvt +PLkWjKUGj1XE0ocP1ow5252GPBB9yqpaWPvE= MIME-Version: 1.0 Received: by 10.204.34.20 with SMTP id j20mr313284bkd.57.1257683879368; Sun, 08 Nov 2009 04:37:59 -0800 (PST) In-Reply-To: References: <20091107233658.bb970c84.torfinn.ingolfsen@broadpark.no> Date: Sun, 8 Nov 2009 13:37:59 +0100 Message-ID: From: usleepless@gmail.com To: Torfinn Ingolfsen Content-Type: text/plain; charset=ISO-8859-1 X-Content-Filtered-By: Mailman/MimeDel 2.1.5 Cc: freebsd-multimedia@freebsd.org Subject: Re: MythTV 0.22 is out 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, 08 Nov 2009 12:38:00 -0000 On Sun, Nov 8, 2009 at 1:36 PM, wrote: > > > On Sun, Nov 8, 2009 at 11:18 AM, wrote: > >> Hi Torfinn and MM-enthousiasts, >> >> On Sat, Nov 7, 2009 at 11:36 PM, Torfinn Ingolfsen < >> torfinn.ingolfsen@broadpark.no> wrote: >> >>> FYI, >>> >>> MythTV[1] 0.22 is out. >>> Just in case anyone has an urge to port it... >>> >>> Thanks for the headsup. >> >> Configure needs at least this: >> >> ./configure --disable-dvb --prefix=/usr/local >> --extra-cflags=-I/usr/local/include --extra-ldflags=-L/usr/local/lib >> >> I am building now to see if there are any compile-errors. This configure >> has ivtv-disabled ( so no support for hauppage/pvrxxx ). But if this run >> compiles without errors, i will try to get it to build with ivtv/pvrxxx >> support. >> >> > First builderror: build picks up headers from /usr/local/include/libavutil. > It shouldn't. Move that directory out of the way if it is a problem in > compiling libavcodec. > > audiooutputbase.cpp audiooutputdigitalencoder.cpp ( coded_id_string ): > > hack configure to remove itvtv disabledment from freebsd section > > sorry, this was an 'work in progress' . please ignore. regards, usleep kind regards, >> >> usleep >> >> >> >>> References: >>> 1) http://www.mythtv.org/ >>> -- >>> Torfinn >>> >>> _______________________________________________ >>> 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 Sun Nov 8 18:20:37 2009 Return-Path: Delivered-To: freebsd-multimedia@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 68FC0106568D for ; Sun, 8 Nov 2009 18:20:37 +0000 (UTC) (envelope-from decke@bluelife.at) Received: from mail.itac.at (mail.itac.at [91.205.172.9]) by mx1.freebsd.org (Postfix) with ESMTP id 29C578FC13 for ; Sun, 8 Nov 2009 18:20:36 +0000 (UTC) Received: from localhost ([127.0.0.1] helo=webmail.itac.at) by mail.itac.at with esmtpa (Exim 4.63) (envelope-from ) id 1N7Bwh-0001j5-HT; Sun, 08 Nov 2009 18:52:59 +0100 Received: from 77.116.255.222 (SquirrelMail authenticated user decke@bluelife.at) by webmail.itac.at with HTTP; Sun, 8 Nov 2009 18:52:59 +0100 (CET) Message-ID: <7e3974417cdc29b6c8485fcfc126d5fb.squirrel@webmail.itac.at> In-Reply-To: <20091107233658.bb970c84.torfinn.ingolfsen@broadpark.no> References: <20091107233658.bb970c84.torfinn.ingolfsen@broadpark.no> Date: Sun, 8 Nov 2009 18:52:59 +0100 (CET) From: "Bernhard Froehlich" To: "Torfinn Ingolfsen" User-Agent: SquirrelMail/1.4.15 MIME-Version: 1.0 Content-Type: text/plain;charset=iso-8859-1 Content-Transfer-Encoding: 8bit X-Priority: 3 (Normal) Importance: Normal Cc: freebsd-multimedia@freebsd.org Subject: Re: MythTV 0.22 is out 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, 08 Nov 2009 18:20:37 -0000 On Sat, November 7, 2009 11:36 pm, Torfinn Ingolfsen wrote: > FYI, > > MythTV[1] 0.22 is out. > Just in case anyone has an urge to port it... > I've already updated the ports to 0.22rc2 and want to do a CFT this week. http://svn.bluelife.at/index.cgi/packages/browse/blueports/multimedia -- Bernhard Fröhlich http://www.bluelife.at/ From owner-freebsd-multimedia@FreeBSD.ORG Sun Nov 8 18:56:19 2009 Return-Path: Delivered-To: freebsd-multimedia@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id DD8851065676 for ; Sun, 8 Nov 2009 18:56:18 +0000 (UTC) (envelope-from usleepless@gmail.com) Received: from mail-fx0-f227.google.com (mail-fx0-f227.google.com [209.85.220.227]) by mx1.freebsd.org (Postfix) with ESMTP id 503F18FC1C for ; Sun, 8 Nov 2009 18:56:17 +0000 (UTC) Received: by fxm27 with SMTP id 27so822318fxm.3 for ; Sun, 08 Nov 2009 10:56:17 -0800 (PST) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=gamma; h=domainkey-signature:mime-version:received:in-reply-to:references :date:message-id:subject:from:to:cc:content-type; bh=QGH/p9DgdjtLxFB35yX+uUUd+lrpQIOTnsjHIeJkyjs=; b=aRFBT9ZMLpyFCLQA3yLhR5zDcOxCBrKW7tL8lifWJDr3gUSyHBLDQ9LWvPzAELPJX1 Xqu55zsJRsZMc3TG5yU7CyfBmx3l0YkOcBBptg6A0bz4BO95ufCTi+dm4uIl6Iy+hzpW EsKgTkqeSGz+nthb1A5Itm7mX8mbOsh9nXP8U= DomainKey-Signature: a=rsa-sha1; c=nofws; d=gmail.com; s=gamma; h=mime-version:in-reply-to:references:date:message-id:subject:from:to :cc:content-type; b=GrNkuj9+7hJD4C2n3589U6NBFzP7+s5hJCxVisQ1dRlM2n7cguFV9X6BUmUNjNoW0d gCi1WvZeyuOEAxDm/OrmOZxRQ+uT4plNrOnKpC762g6PhqcF5Y9toFO+Z+HTakdHxpfx /vpS+hWZ2gOz24YoRhaMSoHXdTmNssHKHC9GE= MIME-Version: 1.0 Received: by 10.204.3.220 with SMTP id 28mr7567603bko.4.1257706576974; Sun, 08 Nov 2009 10:56:16 -0800 (PST) In-Reply-To: References: <20091107233658.bb970c84.torfinn.ingolfsen@broadpark.no> Date: Sun, 8 Nov 2009 19:56:16 +0100 Message-ID: From: usleepless@gmail.com To: Torfinn Ingolfsen Content-Type: text/plain; charset=ISO-8859-1 X-Content-Filtered-By: Mailman/MimeDel 2.1.5 Cc: freebsd-multimedia@freebsd.org Subject: Re: MythTV 0.22 is out 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, 08 Nov 2009 18:56:19 -0000 On Sun, Nov 8, 2009 at 1:37 PM, wrote: > > > On Sun, Nov 8, 2009 at 1:36 PM, wrote: > >> >> >> On Sun, Nov 8, 2009 at 11:18 AM, wrote: >> >>> Hi Torfinn and MM-enthousiasts, >>> >>> On Sat, Nov 7, 2009 at 11:36 PM, Torfinn Ingolfsen < >>> torfinn.ingolfsen@broadpark.no> wrote: >>> >>>> FYI, >>>> >>>> MythTV[1] 0.22 is out. >>>> Just in case anyone has an urge to port it... >>>> >>>> Thanks for the headsup. >>> >>> Configure needs at least this: >>> >>> ./configure --disable-dvb --prefix=/usr/local >>> --extra-cflags=-I/usr/local/include --extra-ldflags=-L/usr/local/lib >>> >>> I am building now to see if there are any compile-errors. This configure >>> has ivtv-disabled ( so no support for hauppage/pvrxxx ). But if this run >>> compiles without errors, i will try to get it to build with ivtv/pvrxxx >>> support. >>> >>> >> First builderror: build picks up headers from >> /usr/local/include/libavutil. It shouldn't. Move that directory out of the >> way if it is a problem in compiling libavcodec. >> >> audiooutputbase.cpp audiooutputdigitalencoder.cpp ( coded_id_string ): >> >> hack configure to remove itvtv disabledment from freebsd section >> >> > > sorry, this was an 'work in progress' . please ignore. > So, after my f*ckup, here are the steps to build mythtv-0.22 on freebsd ( mine was 7.2 ) for use with pvrxxx driver. 1. Download source tarball from www.mythtv.org 2. Extract 3. Edit configure, remove "disable ivtv" from freebsd specific section ( search for 'freebsd' ) 4. Run configure with "--disable-dvb --prefix=/usr/local --extra-cflags=-I/usr/local/include --extra-ldflags=-L/usr/local/lib --enable-ivtv --disable-directfb". although i believe the "disable-directfb" is not necessary. 5. edit mpeg2fix.cpp ( find . -name mpeg2fix.cpp ). add "#include " 6. edit videoout_ivtv.cpp ( find . -name videoout_ivtv.cpp ) replace "#include " with: " // Linux headers #ifdef __LINUX__ #include #else typedef struct fb_var_screeninfo { int xres,yres,bits_per_pixel,xres_virtual,yres_virtual,xoffset,yoffset,nonstd,activate; } ; typedef struct fb_fix_screeninfo { int smem_start; }; #define FBIOPAN_DISPLAY 0 #define FBIOBLANK 0 #define FBIOGET_FSCREENINFO 0 #define VESA_VSYNC_SUSPEND 0 #define FB_ACTIVATE_NOW 0 #define FBIOPUT_VSCREENINFO 0 #define VESA_NO_BLANKING 0 #define FBIOGET_VSCREENINFO 0 #endif " Bernhard: Thank you very much for keeping a mythtv-port up-to-date. Will you submit it to the FreeBSD project? Would you care to include step 6 into your port? it makes it possible to run on pvrxxx-cards using the ivtv interface ( --enable-ivtv ). It is my intent to push as much freebsd-patches upstream to the mythtv project, so "porting" every release takes less effort. I have already done so with earlier releases, and it has certainly paid off. The MythTV project is receptive to platform-related patches. As of .22 I can think of 2 patches to request to the MythTV project: 1. the #include fix for mpeg2fix.cpp 2. the fix in step 6. to make ivtv compile Do you have any more suggestions? regards, usleep > regards, > > usleep > > > kind regards, >>> >>> usleep >>> >>> >>> >>>> References: >>>> 1) http://www.mythtv.org/ >>>> -- >>>> Torfinn >>>> >>>> _______________________________________________ >>>> 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 Mon Nov 9 10:00:43 2009 Return-Path: Delivered-To: freebsd-multimedia@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id CBCEE1065672 for ; Mon, 9 Nov 2009 10:00:43 +0000 (UTC) (envelope-from decke@bluelife.at) Received: from mail.itac.at (mail.itac.at [91.205.172.9]) by mx1.freebsd.org (Postfix) with ESMTP id 598A68FC1E for ; Mon, 9 Nov 2009 10:00:42 +0000 (UTC) Received: from localhost ([127.0.0.1] helo=webmail.itac.at) by mail.itac.at with esmtpa (Exim 4.63) (envelope-from ) id 1N7R3B-0006qD-8K; Mon, 09 Nov 2009 11:00:41 +0100 Received: from 83.64.253.201 (proxying for unknown) (SquirrelMail authenticated user decke@bluelife.at) by webmail.itac.at with HTTP; Mon, 9 Nov 2009 11:00:41 +0100 (CET) Message-ID: In-Reply-To: References: <20091107233658.bb970c84.torfinn.ingolfsen@broadpark.no> Date: Mon, 9 Nov 2009 11:00:41 +0100 (CET) From: "Bernhard Froehlich" To: usleepless@gmail.com User-Agent: SquirrelMail/1.4.15 MIME-Version: 1.0 Content-Type: text/plain;charset=iso-8859-1 Content-Transfer-Encoding: 8bit X-Priority: 3 (Normal) Importance: Normal Cc: freebsd-multimedia@freebsd.org Subject: Re: MythTV 0.22 is out 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, 09 Nov 2009 10:00:43 -0000 On Sun, November 8, 2009 7:56 pm, usleepless@gmail.com wrote: > On Sun, Nov 8, 2009 at 1:37 PM, wrote: > >> >> >> On Sun, Nov 8, 2009 at 1:36 PM, wrote: >> >>> >>> >>> On Sun, Nov 8, 2009 at 11:18 AM, wrote: >>> >>>> Hi Torfinn and MM-enthousiasts, >>>> >>>> On Sat, Nov 7, 2009 at 11:36 PM, Torfinn Ingolfsen < >>>> torfinn.ingolfsen@broadpark.no> wrote: >>>> >>>>> FYI, >>>>> >>>>> MythTV[1] 0.22 is out. >>>>> Just in case anyone has an urge to port it... >>>>> >>>>> Thanks for the headsup. >>>> >>>> Configure needs at least this: >>>> >>>> ./configure --disable-dvb --prefix=/usr/local >>>> --extra-cflags=-I/usr/local/include --extra-ldflags=-L/usr/local/lib >>>> >>>> I am building now to see if there are any compile-errors. This >>>> configure >>>> has ivtv-disabled ( so no support for hauppage/pvrxxx ). But if this >>>> run >>>> compiles without errors, i will try to get it to build with >>>> ivtv/pvrxxx >>>> support. >>>> >>>> >>> First builderror: build picks up headers from >>> /usr/local/include/libavutil. It shouldn't. Move that directory out of >>> the >>> way if it is a problem in compiling libavcodec. >>> >>> audiooutputbase.cpp audiooutputdigitalencoder.cpp ( coded_id_string ): >>> >>> hack configure to remove itvtv disabledment from freebsd section >>> >>> >> >> sorry, this was an 'work in progress' . please ignore. >> > > So, after my f*ckup, here are the steps to build mythtv-0.22 on freebsd ( > mine was 7.2 ) for use with pvrxxx driver. > > 1. Download source tarball from www.mythtv.org > 2. Extract > 3. Edit configure, remove "disable ivtv" from freebsd specific section ( > search for 'freebsd' ) > 4. Run configure with "--disable-dvb --prefix=/usr/local > --extra-cflags=-I/usr/local/include > --extra-ldflags=-L/usr/local/lib --enable-ivtv --disable-directfb". > although > i believe the "disable-directfb" is not necessary. > 5. edit mpeg2fix.cpp ( find . -name mpeg2fix.cpp ). add "#include > " > 6. edit videoout_ivtv.cpp ( find . -name videoout_ivtv.cpp ) replace > "#include " with: > > " > // Linux headers > #ifdef __LINUX__ > #include > #else > typedef struct fb_var_screeninfo { int > xres,yres,bits_per_pixel,xres_virtual,yres_virtual,xoffset,yoffset,nonstd,activate; > } ; > typedef struct fb_fix_screeninfo { int smem_start; }; > #define FBIOPAN_DISPLAY 0 > #define FBIOBLANK 0 > #define FBIOGET_FSCREENINFO 0 > #define VESA_VSYNC_SUSPEND 0 > #define FB_ACTIVATE_NOW 0 > #define FBIOPUT_VSCREENINFO 0 > #define VESA_NO_BLANKING 0 > #define FBIOGET_VSCREENINFO 0 > #endif > " > > Bernhard: Thank you very much for keeping a mythtv-port up-to-date. Will > you submit it to the FreeBSD project? Sure. > Would you care to include step 6 into your port? it makes it possible to > run on pvrxxx-cards using the ivtv interface ( --enable-ivtv ). Yeah sure. I will update the ports in my svn repository to 0.22 today and fix a few rough edges so we can do a call for testers soon. > It is my intent to push as much freebsd-patches upstream to the mythtv > project, so "porting" every release takes less effort. I have already done > so with earlier releases, and it has certainly paid off. The MythTV > project is receptive to platform-related patches. There are very few fixes that would make sense upstream in their current form. The biggest one is to fix the Qt3 style includes and i've already found a developer that will do a review of the patch and commit it. > As of .22 I can think of 2 patches to request to the MythTV project: > 1. the #include fix for mpeg2fix.cpp That patch is already known to the developers. > 2. the fix in step 6. to make ivtv compile Don't know if that is the best way. I will have a closer look at it later. > Do you have any more suggestions? I have no supported card so i cannot test mythtv backend on FreeBSD and would appreciate it if anyone could test functionality of mythtv. Frontend is easier to test for me and i will try to upgrade my linux box with the backend this week. -- Bernhard Fröhlich http://www.bluelife.at/ From owner-freebsd-multimedia@FreeBSD.ORG Mon Nov 9 11:06:58 2009 Return-Path: Delivered-To: freebsd-multimedia@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 82AD01065679 for ; Mon, 9 Nov 2009 11:06:58 +0000 (UTC) (envelope-from owner-bugmaster@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:4f8:fff6::28]) by mx1.freebsd.org (Postfix) with ESMTP id 701E28FC25 for ; Mon, 9 Nov 2009 11:06:58 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.3/8.14.3) with ESMTP id nA9B6wHr079059 for ; Mon, 9 Nov 2009 11:06:58 GMT (envelope-from owner-bugmaster@FreeBSD.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.3/8.14.3/Submit) id nA9B6vXY079057 for freebsd-multimedia@FreeBSD.org; Mon, 9 Nov 2009 11:06:57 GMT (envelope-from owner-bugmaster@FreeBSD.org) Date: Mon, 9 Nov 2009 11:06:57 GMT Message-Id: <200911091106.nA9B6vXY079057@freefall.freebsd.org> X-Authentication-Warning: freefall.freebsd.org: gnats set sender to owner-bugmaster@FreeBSD.org using -f From: FreeBSD bugmaster To: freebsd-multimedia@FreeBSD.org Cc: Subject: Current problem reports assigned to freebsd-multimedia@FreeBSD.org 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, 09 Nov 2009 11:06:58 -0000 Note: to view an individual PR, use: http://www.freebsd.org/cgi/query-pr.cgi?pr=(number). The following is a listing of current problems submitted by FreeBSD users. These represent problem reports covering all versions including experimental development code and obsolete releases. S Tracker Resp. Description -------------------------------------------------------------------------------- o ports/139071 multimedia multimedia/x264 does not link on 8-RC1 o ports/138386 multimedia multimedia/mkvtoolnix lacks the Qt-Gui and configure-k o ports/138213 multimedia Apply SqueezeCenter patches to audio/faad that enable o kern/137589 multimedia [snd_uaudio] snd_uaudio.ko (USB audio driver) doesn't o ports/137495 multimedia multimedia/linux-realplayer: wrong directory on ftp se o kern/134767 multimedia [sound] [snd_hda] [regression] Sigmatel STAC9205X no s o ports/133462 multimedia multimedia/x264 build fails on powerpc o kern/132848 multimedia [sound] [snd_emu10kx] driver problem with card init, s o kern/132511 multimedia [sound] [snd_hda] Probing ALC888 codec on ASRock K10N7 o kern/129604 multimedia [sound] Sound stops with error: pcm0:virtual:dsp0.vp0: o kern/127131 multimedia [bktr] /usr/src/sys/dev/bktr/bktr_os.c, line 469: wron o ports/127084 multimedia multimedia/linux-realplayer is vulnerable s kern/125756 multimedia [sound] [patch] cannot detect soft-modem on HDA bus o kern/124319 multimedia [sound] [snd_emu10k1] [regression] Cannot record from o kern/122086 multimedia [sound] maestro sound driver is working, but mixer ini p kern/121156 multimedia [sound] [patch] Turn on inverted external amplifier se o kern/120857 multimedia [sound] [snd_emu10k1] snd_emu10k1 driver issues a warn o kern/120780 multimedia [sound] [snd_hda] snd_hda doesn't work on Dell Latitut o kern/119973 multimedia [sound] [snd_maestro] [regression] snd_maestro only wo o kern/119931 multimedia [sound] No sound card detected on ASUS "K8V-X SE R2.00 o kern/119759 multimedia [sound] [snd_emu10k1] [regression] Can not record anyt f kern/115666 multimedia [sound] Microphone does not work o kern/115300 multimedia [sound] [snd_hda] [regression] snd_hda(4) fails to att o kern/114760 multimedia [sound] [snd_cmi] snd_cmi driver causing sporadic syst s kern/113950 multimedia [sound] [patch] [request] add per-vchan mixer support o kern/111767 multimedia [sound] ATI SB450 High Definition Audio Controller sou o kern/107516 multimedia [sound] [snd_emu10k1] - skips, clicks and lag after a o kern/107051 multimedia [sound] only 2 channels output works for the ALC850 (o o kern/104874 multimedia [sound] [snd_emu10k1] kldload snd_emu10k1 hangs system o kern/104626 multimedia [sound] FreeBSD 6.2 does not support SoundBlaster Audi o kern/101417 multimedia [sound] 4-speakers output not possible on Asus A8V-Del o kern/100859 multimedia [sound] [snd_ich] snd_ich broken on GIGABYTE 915 syste o kern/98752 multimedia [sound] Intel ich6 82801 FB - on Packard Bell A8810 la o kern/98504 multimedia [sound] Sound is distorted with SB Live 5.1 o kern/98496 multimedia [sound] [snd_ich] some functions don't work in my soun o kern/98167 multimedia [sound] [es137x] [patch] ES1370 mixer volumes incorrec o kern/97609 multimedia [sound] Load Sound Module - VIA8233 - fails o kern/97535 multimedia [sound] [snd_mss] doesn't work in 6.0-RELEASE and abov o kern/96538 multimedia [sound] emu10k1-driver inverts channels o kern/95086 multimedia [sound] uaudio line in problem with sbdm lx o kern/94279 multimedia [sound] [snd_neomagic] snd_neomagic crashes on FreeBSD o kern/93986 multimedia [sound] Acer TravelMate 4652LMi pcm0 channel dead o kern/92512 multimedia [sound] distorted mono output with emu10k1 o kern/87782 multimedia [sound] snd_t4dwave and pcm0:record:0: record interrup s kern/83697 multimedia [sound] [snd_mss] [patch] support, docs added for full o kern/82043 multimedia [sound] snd_emu10k1 - mixer does not work. o kern/81146 multimedia [sound] Sound isn't working AT ALL for Sis7012 onboard o kern/80632 multimedia [sound] pcm driver missing support for CMI8738 auxilla o kern/79912 multimedia [sound] sound broken for 2 VIA chipsets: interrupt sto o kern/79905 multimedia [sound] sis7018 sound module problem o kern/79678 multimedia [sound] sound works except recording from any source f kern/72995 multimedia [sound] Intel ICH2 (82801BA) - sound nearly inaudible o kern/63204 multimedia [sound] /dev/mixer broken with ESS Maestro-2E (still o o kern/60677 multimedia [sound] [patch] No reaction of volume controy key on I s kern/60599 multimedia [bktr] [partial patch] No sound for ATI TV Wonder (ste o kern/37600 multimedia [sound] [partial patch] t4dwave drive doesn't record. o kern/23546 multimedia [sound] [snd_csa] [patch] csa DMA-interrupt problem 57 problems total. From owner-freebsd-multimedia@FreeBSD.ORG Mon Nov 9 18:55:04 2009 Return-Path: Delivered-To: freebsd-multimedia@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id DB3CF106566B for ; Mon, 9 Nov 2009 18:55:04 +0000 (UTC) (envelope-from torfinn.ingolfsen@broadpark.no) Received: from bgo1smout1.broadpark.no (bgo1smout1.broadpark.no [217.13.4.94]) by mx1.freebsd.org (Postfix) with ESMTP id 95A928FC18 for ; Mon, 9 Nov 2009 18:55:04 +0000 (UTC) MIME-version: 1.0 Content-transfer-encoding: 7BIT Content-type: text/plain; charset=US-ASCII Received: from bgo1sminn1.broadpark.no ([217.13.4.93]) by bgo1smout1.broadpark.no (Sun Java(tm) System Messaging Server 6.3-3.01 (built Jul 12 2007; 32bit)) with ESMTP id <0KSU00LU6V7C4Q10@bgo1smout1.broadpark.no> for freebsd-multimedia@freebsd.org; Mon, 09 Nov 2009 19:54:48 +0100 (CET) Received: from kg-v2.kg4.no ([80.203.92.186]) by bgo1sminn1.broadpark.no (Sun Java(tm) System Messaging Server 6.3-3.01 (built Jul 12 2007; 32bit)) with SMTP id <0KSU00JIUV7BON40@bgo1sminn1.broadpark.no> for freebsd-multimedia@freebsd.org; Mon, 09 Nov 2009 19:54:48 +0100 (CET) Date: Mon, 09 Nov 2009 19:54:47 +0100 From: Torfinn Ingolfsen To: freebsd-multimedia@freebsd.org Message-id: <20091109195447.ef0fb4fe.torfinn.ingolfsen@broadpark.no> In-reply-to: References: <20091107233658.bb970c84.torfinn.ingolfsen@broadpark.no> X-Mailer: Sylpheed 2.7.1 (GTK+ 2.16.6; amd64-portbld-freebsd7.2) 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 Subject: Re: MythTV 0.22 is out 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, 09 Nov 2009 18:55:04 -0000 On Mon, 09 Nov 2009 11:00:41 +0100 (CET) Bernhard Froehlich wrote: > I have no supported card so i cannot test mythtv backend on FreeBSD > and would appreciate it if anyone could test functionality of mythtv. I have a PVR-350 (on my test machine) and will test backend as much as I can / have time for. I also have a PVR-500, but that is in my production backend, and thus testing is a bit more awkward. But both use the pvrxxx driver, so it shouldn't matter. -- Regards, Torfinn Ingolfsen From owner-freebsd-multimedia@FreeBSD.ORG Wed Nov 11 08:42:58 2009 Return-Path: Delivered-To: freebsd-multimedia@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 23D081065696; Wed, 11 Nov 2009 08:42:58 +0000 (UTC) (envelope-from remko@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:4f8:fff6::28]) by mx1.freebsd.org (Postfix) with ESMTP id EE9678FC21; Wed, 11 Nov 2009 08:42:57 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.3/8.14.3) with ESMTP id nAB8gvdr016425; Wed, 11 Nov 2009 08:42:57 GMT (envelope-from remko@freefall.freebsd.org) Received: (from remko@localhost) by freefall.freebsd.org (8.14.3/8.14.3/Submit) id nAB8gvxB016421; Wed, 11 Nov 2009 08:42:57 GMT (envelope-from remko) Date: Wed, 11 Nov 2009 08:42:57 GMT Message-Id: <200911110842.nAB8gvxB016421@freefall.freebsd.org> To: remko@FreeBSD.org, freebsd-bugs@FreeBSD.org, freebsd-multimedia@FreeBSD.org From: remko@FreeBSD.org Cc: Subject: Re: kern/140453: [sound] No sound inside Virtualbox on 50% volume 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, 11 Nov 2009 08:42:58 -0000 Synopsis: [sound] No sound inside Virtualbox on 50% volume Responsible-Changed-From-To: freebsd-bugs->freebsd-multimedia Responsible-Changed-By: remko Responsible-Changed-When: Wed Nov 11 08:42:46 UTC 2009 Responsible-Changed-Why: reassign to multimedia team http://www.freebsd.org/cgi/query-pr.cgi?pr=140453 From owner-freebsd-multimedia@FreeBSD.ORG Wed Nov 11 18:10:17 2009 Return-Path: Delivered-To: freebsd-multimedia@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id DB5B71065670; Wed, 11 Nov 2009 18:10:17 +0000 (UTC) (envelope-from edwin@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:4f8:fff6::28]) by mx1.freebsd.org (Postfix) with ESMTP id B26E88FC14; Wed, 11 Nov 2009 18:10:17 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.3/8.14.3) with ESMTP id nABIAHST003226; Wed, 11 Nov 2009 18:10:17 GMT (envelope-from edwin@freefall.freebsd.org) Received: (from edwin@localhost) by freefall.freebsd.org (8.14.3/8.14.3/Submit) id nABIAHYs003218; Wed, 11 Nov 2009 18:10:17 GMT (envelope-from edwin) Date: Wed, 11 Nov 2009 18:10:17 GMT Message-Id: <200911111810.nABIAHYs003218@freefall.freebsd.org> To: edwin@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org, freebsd-multimedia@FreeBSD.org From: edwin@FreeBSD.org Cc: Subject: Re: ports/140480: Update port: audio/denemo to 0.8.10 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, 11 Nov 2009 18:10:17 -0000 Synopsis: Update port: audio/denemo to 0.8.10 Responsible-Changed-From-To: freebsd-ports-bugs->freebsd-multimedia Responsible-Changed-By: edwin Responsible-Changed-When: Wed Nov 11 18:10:17 UTC 2009 Responsible-Changed-Why: Over to maintainer (via the GNATS Auto Assign Tool) http://www.freebsd.org/cgi/query-pr.cgi?pr=140480 From owner-freebsd-multimedia@FreeBSD.ORG Wed Nov 11 18:16:39 2009 Return-Path: Delivered-To: freebsd-multimedia@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 62204106566C; Wed, 11 Nov 2009 18:16:39 +0000 (UTC) (envelope-from miwi@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:4f8:fff6::28]) by mx1.freebsd.org (Postfix) with ESMTP id 399308FC20; Wed, 11 Nov 2009 18:16:39 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.3/8.14.3) with ESMTP id nABIGdoY012018; Wed, 11 Nov 2009 18:16:39 GMT (envelope-from miwi@freefall.freebsd.org) Received: (from miwi@localhost) by freefall.freebsd.org (8.14.3/8.14.3/Submit) id nABIGd3Q012014; Wed, 11 Nov 2009 18:16:39 GMT (envelope-from miwi) Date: Wed, 11 Nov 2009 18:16:39 GMT Message-Id: <200911111816.nABIGd3Q012014@freefall.freebsd.org> To: miwi@FreeBSD.org, freebsd-multimedia@FreeBSD.org, miwi@FreeBSD.org From: miwi@FreeBSD.org Cc: Subject: Re: ports/140480: Update port: audio/denemo to 0.8.10 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, 11 Nov 2009 18:16:39 -0000 Synopsis: Update port: audio/denemo to 0.8.10 Responsible-Changed-From-To: freebsd-multimedia->miwi Responsible-Changed-By: miwi Responsible-Changed-When: Wed Nov 11 18:16:38 UTC 2009 Responsible-Changed-Why: I'll take it. http://www.freebsd.org/cgi/query-pr.cgi?pr=140480 From owner-freebsd-multimedia@FreeBSD.ORG Thu Nov 12 12:03:52 2009 Return-Path: Delivered-To: multimedia@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 5310A106566C; Thu, 12 Nov 2009 12:03:52 +0000 (UTC) (envelope-from itetcu@freebsd.org) Received: from worf.ds9.tecnik93.com (worf.ds9.tecnik93.com [81.196.207.130]) by mx1.freebsd.org (Postfix) with ESMTP id D6A7C8FC12; Thu, 12 Nov 2009 12:03:51 +0000 (UTC) Received: from quark.ds9.tecnik93.com (quark.ds9.tecnik93.com [81.196.207.132]) by worf.ds9.tecnik93.com (Postfix) with ESMTP id 2C75322C531A; Thu, 12 Nov 2009 14:05:31 +0200 (EET) Received: by quark.ds9.tecnik93.com (Postfix, from userid 0) id BFC1012E3D88; Thu, 12 Nov 2009 14:06:10 +0200 (EET) From: QAT@FreeBSD.org To: multimedia@FreeBSD.org X-Mailer: $Tecnik: people/itetcu/ports/QA-Tindy/QAT_postPortBuild.sh, v 1.57 2009/03/08 00:17:57 itetcu Exp $ X-QAT-Tindy_Version: tinderbox-devel-3.2_4; dsversion: 3.2 X-QAT-Jail_Arch: amd64 X-QAT-Jail_Csup_Tag: RELENG_7 X-QAT-Jail_Last_Built: 2009-05-12 16:51:22 X-QAT-Port: audio/jack X-QAT-Log: http://T64.TecNik93.com/logs/7-STABLE-FTP/jackit-0.116.2_2.log X-QAT-Build_Reason: Dependency X-QAT-Fail_Reason: compiler_error Message-Id: <20091112120610.BFC1012E3D88@quark.ds9.tecnik93.com> Date: Thu, 12 Nov 2009 14:06:10 +0200 (EET) Cc: Subject: audio/jack - fails: compiler_error 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, 12 Nov 2009 12:03:52 -0000 The Restless Daemon identified a compiler error while trying to build: jackit-0.116.2_2 maintained by multimedia@FreeBSD.org Makefile ident: $FreeBSD: ports/audio/jack/Makefile,v 1.51 2009/05/12 11:28:14 itetcu Exp $ Excerpt from http://T64.TecNik93.com/logs/7-STABLE-FTP/jackit-0.116.2_2.log : portaudio_driver.c:785: warning: unused variable 'deviceID' portaudio_driver.c:532: warning: 'outputDeviceID' may be used uninitialized in this function portaudio_driver.c:532: note: 'outputDeviceID' was declared here portaudio_driver.c:532: warning: 'inputDeviceID' may be used uninitialized in this function portaudio_driver.c:532: note: 'inputDeviceID' was declared here mv -f .deps/portaudio_driver.Tpo .deps/portaudio_driver.Plo /bin/sh ../../libtool --tag=CC --mode=link cc -I../../config -I../.. -I../.. -D_REENTRANT -D_POSIX_PTHREAD_SEMANTICS -Wall -g -O2 -fno-strict-aliasing -pipe -I../../config -I../.. -I../.. -D_REENTRANT -D_POSIX_PTHREAD_SEMANTICS -Wall -g -I/usr/local/include -module -avoid-version -L/usr/local/lib -o jack_portaudio.la -rpath /usr/local/lib/jack portaudio_driver.lo -lportaudio -lm -pthread -L/usr/local/lib -lsamplerate -L/usr/local/lib -lcelt -lm cc -shared .libs/portaudio_driver.o -Wl,--rpath -Wl,/usr/local/lib -Wl,--rpath -Wl,/usr/local/lib -L/usr/local/lib -lportaudio /usr/local/lib/libsamplerate.so /usr/local/lib/libcelt.so -lm -pthread -Wl,-soname -Wl,jack_portaudio.so -o .libs/jack_portaudio.so creating jack_portaudio.la (cd .libs && rm -f jack_portaudio.la && ln -s ../jack_portaudio.la jack_portaudio.la) gmake[3]: Leaving directory `/work/a/ports/audio/jack/work/jack-audio-connection-kit-0.116.2/drivers/portaudio' Making all in netjack gmake[3]: Entering directory `/work/a/ports/audio/jack/work/jack-audio-connection-kit-0.116.2/drivers/netjack' /bin/sh ../../libtool --tag=CC --mode=compile cc -DHAVE_CONFIG_H -I. -I../.. -I/usr/local/include -I../../config -I../.. -I../.. -D_REENTRANT -D_POSIX_PTHREAD_SEMANTICS -Wall -g -O2 -fno-strict-aliasing -pipe -I../../config -I../.. -I../.. -D_REENTRANT -D_POSIX_PTHREAD_SEMANTICS -Wall -g -I/usr/local/include -MT net_driver.lo -MD -MP -MF .deps/net_driver.Tpo -c -o net_driver.lo net_driver.c mkdir .libs cc -DHAVE_CONFIG_H -I. -I../.. -I/usr/local/include -I../../config -I../.. -I../.. -D_REENTRANT -D_POSIX_PTHREAD_SEMANTICS -Wall -g -O2 -fno-strict-aliasing -pipe -I../../config -I../.. -I../.. -D_REENTRANT -D_POSIX_PTHREAD_SEMANTICS -Wall -g -I/usr/local/include -MT net_driver.lo -MD -MP -MF .deps/net_driver.Tpo -c net_driver.c -fPIC -DPIC -o .libs/net_driver.o net_driver.c: In function 'net_driver_attach': net_driver.c:551: error: 'celt_int32_t' undeclared (first use in this function) net_driver.c:551: error: (Each undeclared identifier is reported only once net_driver.c:551: error: for each function it appears in.) net_driver.c:551: error: expected ';' before 'lookahead' net_driver.c:553: warning: passing argument 3 of 'celt_mode_create' makes pointer from integer without a cast net_driver.c:553: error: too many arguments to function 'celt_mode_create' net_driver.c:554: error: 'lookahead' undeclared (first use in this function) net_driver.c:557: error: too few arguments to function 'celt_decoder_create' net_driver.c:599: warning: passing argument 3 of 'celt_mode_create' makes pointer from integer without a cast net_driver.c:599: error: too many arguments to function 'celt_mode_create' net_driver.c:600: error: too few arguments to function 'celt_encoder_create' gmake[3]: *** [net_driver.lo] Error 1 gmake[3]: Leaving directory `/work/a/ports/audio/jack/work/jack-audio-connection-kit-0.116.2/drivers/netjack' gmake[2]: *** [all-recursive] Error 1 gmake[2]: Leaving directory `/work/a/ports/audio/jack/work/jack-audio-connection-kit-0.116.2/drivers' gmake[1]: *** [all-recursive] Error 1 gmake[1]: Leaving directory `/work/a/ports/audio/jack/work/jack-audio-connection-kit-0.116.2' gmake: *** [all] Error 2 *** Error code 1 Stop in /a/ports/audio/jack. ================================================================ build of /usr/ports/audio/jack ended at Thu Nov 12 12:06:07 UTC 2009 PortsMon page for the port: http://portsmon.freebsd.org/portoverview.py?category=audio&portname=jack The build which triggered this BotMail was done under tinderbox-devel-3.2_4; dsversion: 3.2 on RELENG_7 on amd64, kern.smp.cpus: 1 with tinderd_flags="-nullfs -plistcheck -onceonly" and ccache support, with the "official" up-to-date Ports Tree, with the following vars set: NOPORTDOCS=yes, NOPORTEXAMPLES=yes, NOPORTDATA=yes, FORCE_PACKAGE=yes. A description of the testing process can be found here: http://T32.TecNik93.com/FreeBSD/QA-Tindy/ Thanks for your work on making FreeBSD better, -- QAT - your friendly neighborhood Daemon, preparing a heck of an error trapping system: - "HMC and EOI?" - "Halt, Melt and Catch fire or Execute Operator Immediately." From owner-freebsd-multimedia@FreeBSD.ORG Thu Nov 12 23:16:00 2009 Return-Path: Delivered-To: freebsd-multimedia@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id EAE60106566B for ; Thu, 12 Nov 2009 23:16:00 +0000 (UTC) (envelope-from ports@mark.reidel.info) Received: from smtprelay04.ispgateway.de (smtprelay04.ispgateway.de [80.67.31.27]) by mx1.freebsd.org (Postfix) with ESMTP id AD8828FC0A for ; Thu, 12 Nov 2009 23:16:00 +0000 (UTC) Received: from [93.104.111.222] (helo=karm.dyndns.org) by smtprelay04.ispgateway.de with esmtpsa (TLSv1:AES256-SHA:256) (Exim 4.68) (envelope-from ) id 1N8ihV-0004bk-Au for freebsd-multimedia@freebsd.org; Fri, 13 Nov 2009 00:03:37 +0100 Received: from [192.168.42.12] (helo=alu.reidel.info) by karm.dyndns.org with esmtps (TLSv1:AES128-SHA:128) (Exim 4.69 (FreeBSD)) (envelope-from ) id 1N8iha-0001zR-TX for freebsd-multimedia@freebsd.org; Fri, 13 Nov 2009 00:03:43 +0100 Date: Fri, 13 Nov 2009 00:04:14 +0100 From: Mark Daniel Reidel To: freebsd-multimedia@freebsd.org Message-ID: <20091113000414.3ce150d0@alu.reidel.info> X-Mailer: Claws Mail, because everything else is just a toy Mime-Version: 1.0 Content-Type: text/plain; charset=US-ASCII Content-Transfer-Encoding: 7bit X-Df-Sender: 793055 Subject: No sound with 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, 12 Nov 2009 23:16:01 -0000 Hello people! I bought my wife a new computer about a week ago and was happy that sound was working. But once I installed Windows XP (and the correct sound-driver), sound with FreeBSD 8.0-RC1 stopped working. When I plug in my mic, I can hear myself speaking on the speakers (attached to the rear), but other than that, no luck in playing any sounds :o( I even tried fiddling with the device-hints as documented in snd_hda, but to no avail. Maybe someone on this list can figure out what is happening? I've uploaded a boot -v of her machine to http://mark.reidel.info/luna.txt Any help on what's possibly wrong is appreciated. I'm really clueless because it all worked until I installed Windows XP *rolls eyes* Many thanks in advance - Mark -- Fortune cookie of the hour: Seek simplicity -- and distrust it. -- Alfred North Whitehead From owner-freebsd-multimedia@FreeBSD.ORG Fri Nov 13 09:10:30 2009 Return-Path: Delivered-To: multimedia@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 13ABC106566B; Fri, 13 Nov 2009 09:10:30 +0000 (UTC) (envelope-from trasz@pin.if.uz.zgora.pl) Received: from pin.if.uz.zgora.pl (pin.if.uz.zgora.pl [212.109.128.251]) by mx1.freebsd.org (Postfix) with ESMTP id 9398F8FC17; Fri, 13 Nov 2009 09:10:29 +0000 (UTC) Received: by pin.if.uz.zgora.pl (Postfix, from userid 1001) id A543C39B2C; Fri, 13 Nov 2009 10:14:40 +0100 (CET) To: FreeBSD-gnats-submit@freebsd.org From: Edward Tomasz Napierala X-send-pr-version: 3.113 X-GNATS-Notify: Message-Id: <20091113091440.A543C39B2C@pin.if.uz.zgora.pl> Date: Fri, 13 Nov 2009 10:14:40 +0100 (CET) Cc: multimedia@FreeBSD.org Subject: [PATCH] audio/jack: fix build after audio/celt update 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, 13 Nov 2009 09:10:30 -0000 >Submitter-Id: current-users >Originator: Edward Tomasz Napierala >Organization: >Confidential: no >Synopsis: [PATCH] audio/jack: fix build after audio/celt update >Severity: serious >Priority: high >Category: ports >Class: change-request >Release: FreeBSD 7.2-STABLE i386 >Environment: System: FreeBSD pin.if.uz.zgora.pl 7.2-STABLE FreeBSD 7.2-STABLE #0: Sat Oct 3 02:15:11 CEST >Description: Attached patch fixes build breakage caused by updating audio/celt. Added file(s): - files/patch-tools-netsource.c Port maintainer (multimedia@FreeBSD.org) is cc'd. Generated with FreeBSD Port Tools 0.77 >How-To-Repeat: >Fix: --- jackit-0.116.2_2.patch begins here --- diff -ruN --exclude=CVS /usr/ports/audio/jack/files/patch-drivers-netjack-net_driver.c /home/trasz/jack/files/patch-drivers-netjack-net_driver.c --- /usr/ports/audio/jack/files/patch-drivers-netjack-net_driver.c 2009-03-30 20:21:21.000000000 +0200 +++ /home/trasz/jack/files/patch-drivers-netjack-net_driver.c 2009-11-13 10:12:23.000000000 +0100 @@ -1,6 +1,6 @@ ---- drivers/netjack/net_driver.c.orig 2009-02-11 20:49:54.000000000 +0100 -+++ drivers/netjack/net_driver.c 2009-02-11 20:50:05.000000000 +0100 -@@ -497,7 +497,7 @@ +--- drivers/netjack/net_driver.c.orig 2009-02-06 11:34:50.000000000 +0100 ++++ drivers/netjack/net_driver.c 2009-11-13 10:04:27.282082404 +0100 +@@ -497,7 +497,7 @@ net_driver_write (net_driver_t* driver, { int r; @@ -9,3 +9,31 @@ static const int flag = 0; #else static const int flag = MSG_CONFIRM; +@@ -548,13 +548,13 @@ net_driver_attach (net_driver_t *driver) + + if( driver->bitdepth == 1000 ) { + #if HAVE_CELT +- celt_int32_t lookahead; ++ celt_int32 lookahead; + // XXX: memory leak +- CELTMode *celt_mode = celt_mode_create( driver->sample_rate, 1, driver->period_size, NULL ); ++ CELTMode *celt_mode = celt_mode_create( driver->sample_rate, driver->period_size, NULL ); + celt_mode_info( celt_mode, CELT_GET_LOOKAHEAD, &lookahead ); + driver->codec_latency = 2*lookahead; + +- driver->capture_srcs = jack_slist_append(driver->capture_srcs, celt_decoder_create( celt_mode ) ); ++ driver->capture_srcs = jack_slist_append(driver->capture_srcs, celt_decoder_create( celt_mode, 1, NULL ) ); + #endif + } else { + #if HAVE_SAMPLERATE +@@ -596,8 +596,8 @@ net_driver_attach (net_driver_t *driver) + if( driver->bitdepth == 1000 ) { + #if HAVE_CELT + // XXX: memory leak +- CELTMode *celt_mode = celt_mode_create( driver->sample_rate, 1, driver->period_size, NULL ); +- driver->playback_srcs = jack_slist_append(driver->playback_srcs, celt_encoder_create( celt_mode ) ); ++ CELTMode *celt_mode = celt_mode_create( driver->sample_rate, driver->period_size, NULL ); ++ driver->playback_srcs = jack_slist_append(driver->playback_srcs, celt_encoder_create( celt_mode, 1, NULL ) ); + #endif + } else { + #if HAVE_SAMPLERATE diff -ruN --exclude=CVS /usr/ports/audio/jack/files/patch-tools-netsource.c /home/trasz/jack/files/patch-tools-netsource.c --- /usr/ports/audio/jack/files/patch-tools-netsource.c 1970-01-01 01:00:00.000000000 +0100 +++ /home/trasz/jack/files/patch-tools-netsource.c 2009-11-13 10:12:23.000000000 +0100 @@ -0,0 +1,24 @@ +--- tools/netsource.c.orig 2009-11-13 09:59:11.301019727 +0100 ++++ tools/netsource.c 2009-11-13 09:59:42.991223929 +0100 +@@ -124,8 +124,8 @@ alloc_ports (int n_capture_audio, int n_ + if( bitdepth == 1000 ) { + #if HAVE_CELT + // XXX: memory leak +- CELTMode *celt_mode = celt_mode_create( jack_get_sample_rate( client ), 1, jack_get_buffer_size(client), NULL ); +- capture_srcs = jack_slist_append(capture_srcs, celt_decoder_create( celt_mode ) ); ++ CELTMode *celt_mode = celt_mode_create( jack_get_sample_rate( client ), jack_get_buffer_size(client), NULL ); ++ capture_srcs = jack_slist_append(capture_srcs, celt_decoder_create( celt_mode, 1, NULL ) ); + #endif + } else { + #if HAVE_SAMPLERATE +@@ -163,8 +163,8 @@ alloc_ports (int n_capture_audio, int n_ + if( bitdepth == 1000 ) { + #if HAVE_CELT + // XXX: memory leak +- CELTMode *celt_mode = celt_mode_create( jack_get_sample_rate (client), 1, jack_get_buffer_size(client), NULL ); +- playback_srcs = jack_slist_append(playback_srcs, celt_encoder_create( celt_mode ) ); ++ CELTMode *celt_mode = celt_mode_create( jack_get_sample_rate (client), jack_get_buffer_size(client), NULL ); ++ playback_srcs = jack_slist_append(playback_srcs, celt_encoder_create( celt_mode, 1, NULL ) ); + #endif + } else { + #if HAVE_SAMPLERATE --- jackit-0.116.2_2.patch ends here --- From owner-freebsd-multimedia@FreeBSD.ORG Fri Nov 13 09:20:18 2009 Return-Path: Delivered-To: freebsd-multimedia@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 860F51065670; Fri, 13 Nov 2009 09:20:18 +0000 (UTC) (envelope-from edwin@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:4f8:fff6::28]) by mx1.freebsd.org (Postfix) with ESMTP id 5DE9F8FC1A; Fri, 13 Nov 2009 09:20:18 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.3/8.14.3) with ESMTP id nAD9KI7Z001705; Fri, 13 Nov 2009 09:20:18 GMT (envelope-from edwin@freefall.freebsd.org) Received: (from edwin@localhost) by freefall.freebsd.org (8.14.3/8.14.3/Submit) id nAD9KIF0001701; Fri, 13 Nov 2009 09:20:18 GMT (envelope-from edwin) Date: Fri, 13 Nov 2009 09:20:18 GMT Message-Id: <200911130920.nAD9KIF0001701@freefall.freebsd.org> To: edwin@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org, freebsd-multimedia@FreeBSD.org From: edwin@FreeBSD.org Cc: Subject: Re: ports/140524: [PATCH] audio/jack: fix build after audio/celt update 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, 13 Nov 2009 09:20:18 -0000 Synopsis: [PATCH] audio/jack: fix build after audio/celt update Responsible-Changed-From-To: freebsd-ports-bugs->freebsd-multimedia Responsible-Changed-By: edwin Responsible-Changed-When: Fri Nov 13 09:20:17 UTC 2009 Responsible-Changed-Why: Over to maintainer (via the GNATS Auto Assign Tool) http://www.freebsd.org/cgi/query-pr.cgi?pr=140524 From owner-freebsd-multimedia@FreeBSD.ORG Fri Nov 13 09:58:03 2009 Return-Path: Delivered-To: multimedia@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 10BA41065693 for ; Fri, 13 Nov 2009 09:58:03 +0000 (UTC) (envelope-from QAT@FeeBSD.org) Received: from worf.ds9.tecnik93.com (worf.ds9.tecnik93.com [81.196.207.130]) by mx1.freebsd.org (Postfix) with ESMTP id B593D8FC19 for ; Fri, 13 Nov 2009 09:58:02 +0000 (UTC) Received: from quark.ds9.tecnik93.com (quark.ds9.tecnik93.com [81.196.207.132]) by worf.ds9.tecnik93.com (Postfix) with ESMTP id 7B0BB22C532D; Fri, 13 Nov 2009 11:43:20 +0200 (EET) Received: by quark.ds9.tecnik93.com (Postfix, from userid 0) id 0A25812E3D88; Fri, 13 Nov 2009 11:44:07 +0200 (EET) From: QAT@FreeBSD.org To: Edward Tomasz Napierala In-Reply-To: <200911130939.nAD9dY14021167@repoman.freebsd.org> References: <200911130939.nAD9dY14021167@repoman.freebsd.org> X-Mailer: $Tecnik: people/itetcu/ports/QA-Tindy/QAT_postPortBuild.sh, v 1.57 2009/03/08 00:17:57 itetcu Exp $ X-QAT-Tindy_Version: tinderbox-devel-3.2_4; dsversion: 3.2 X-QAT-Jail_Arch: amd64 X-QAT-Jail_Csup_Tag: RELENG_7 X-QAT-Jail_Last_Built: 2009-05-12 16:51:22 X-QAT-Port: audio/jack X-QAT-Log: http://T64.TecNik93.com/logs/7-STABLE-FTP/jackit-0.116.2_3.log X-QAT-Build_Reason: Commit X-QAT-Fail_Reason: OK Message-Id: <20091113094407.0A25812E3D88@quark.ds9.tecnik93.com> Date: Fri, 13 Nov 2009 11:44:06 +0200 (EET) Cc: cvs-ports@FreeBSD.org, multimedia@FreeBSD.org, cvs-all@FreeBSD.org, ports-committers@FreeBSD.org Subject: Now OK (Re: cvs commit: ports/audio/jack Makefile ports/audio/jack/files patch-drivers-netjack-net_driver.c patch-tools-netsource.c) 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, 13 Nov 2009 09:58:03 -0000 audio/jack, which was previously failing is OK after this commit. Thanks for fixing it! A description of the testing process can be found here: http://T32.TecNik93.com/FreeBSD/QA-Tindy/ Thanks for your work on making FreeBSD better, -- QAT - your friendly neighborhood Daemon, preparing a heck of an error trapping system: - "HMC and EOI?" - "Halt, Melt and Catch fire or Execute Operator Immediately." From owner-freebsd-multimedia@FreeBSD.ORG Fri Nov 13 13:06:47 2009 Return-Path: Delivered-To: freebsd-multimedia@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id DC7DA106566C; Fri, 13 Nov 2009 13:06:47 +0000 (UTC) (envelope-from trasz@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:4f8:fff6::28]) by mx1.freebsd.org (Postfix) with ESMTP id B25328FC13; Fri, 13 Nov 2009 13:06:47 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.3/8.14.3) with ESMTP id nADD6l2S077309; Fri, 13 Nov 2009 13:06:47 GMT (envelope-from trasz@freefall.freebsd.org) Received: (from trasz@localhost) by freefall.freebsd.org (8.14.3/8.14.3/Submit) id nADD6lkI077305; Fri, 13 Nov 2009 13:06:47 GMT (envelope-from trasz) Date: Fri, 13 Nov 2009 13:06:47 GMT Message-Id: <200911131306.nADD6lkI077305@freefall.freebsd.org> To: trasz@FreeBSD.org, freebsd-multimedia@FreeBSD.org, trasz@FreeBSD.org From: trasz@FreeBSD.org Cc: Subject: Re: ports/140524: [PATCH] audio/jack: fix build after audio/celt update 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, 13 Nov 2009 13:06:47 -0000 Synopsis: [PATCH] audio/jack: fix build after audio/celt update Responsible-Changed-From-To: freebsd-multimedia->trasz Responsible-Changed-By: trasz Responsible-Changed-When: Fri Nov 13 13:06:47 UTC 2009 Responsible-Changed-Why: I'll take it. http://www.freebsd.org/cgi/query-pr.cgi?pr=140524 From owner-freebsd-multimedia@FreeBSD.ORG Fri Nov 13 13:42:17 2009 Return-Path: Delivered-To: multimedia@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 1F7C210656B9 for ; Fri, 13 Nov 2009 13:42:17 +0000 (UTC) (envelope-from office@atn.com) Received: from hm855.locaweb.com.br (hm855-2.locaweb.com.br [201.76.49.5]) by mx1.freebsd.org (Postfix) with ESMTP id CCAFA8FC19 for ; Fri, 13 Nov 2009 13:42:16 +0000 (UTC) Received: from hm2115 (hm2115.locaweb.com.br [201.76.59.104]) by hm855.locaweb.com.br (Postfix) with SMTP id 3F64E17221B for ; Fri, 13 Nov 2009 11:29:19 -0200 (BRST) Date: Fri, 13 Nov 2009 11:29:19 -0200 To: multimedia@FreeBSD.org From: Dr. Harris Conklin MIME-Version: 1.0 Content-Type: text/plain Content-Transfer-Encoding: 8bit Message-Id: <20091113134217.1F7C210656B9@hub.freebsd.org> Cc: Subject: Your Ref: SNT/ATM/822 X-BeenThere: freebsd-multimedia@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list Reply-To: dr.harrisc@gala.net List-Id: Multimedia discussions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 13 Nov 2009 13:42:17 -0000 Our Ref: FGN/SNT/RAL Your Ref: SNT/ATM/822 Attn: I am directed to inform you that your payment verification and confirmations are correct, Therefore we are happy to inform you that arrangements have been concluded to effect your payment as soon as possible and in our bid to transparency. It is my pleasure to inform you that ATM Card Number: 5428050011004432 have been approved in your favor; The ATM Card Value is $315,810.00 USD (Three Hundred and Fifteen Thousand, Eight Hundred and Ten USD Only) You are advised that a maximum withdrawal value of $5,000.00 USD is permitted on withdrawal per day and are duly Inter Switch so you can make withdrawal in any location and ATM Center of your choice. We have concluded delivery arrangement with the ups courier services. Please note that the UPS Courier Company is fully insured by Nicon Insurance Corporation. Please you advice to pay for the delivery cost of your parcel which is ($155.00USD) so that I will know how to proceed, and please be informed that the delivery will be made to your address in 48 hours (2 days) after our confirmation of this payment for delivery, as you know that the delivery fee receipt will be used to attach on your payment delivery documents to avoid being delayed by customs. Treat urgently and note that your ATM Card is ready and available for dispatch to you. Please call me immediately you receive this email. My email is dr.harrisc@gala.net Regards, Dr. Harris Conklin Office Number: +2348032312897 HEAD OF INTENTIONAL REMITTANCE DEPARTMENT From owner-freebsd-multimedia@FreeBSD.ORG Sat Nov 14 19:59:33 2009 Return-Path: Delivered-To: freebsd-multimedia@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id C2E3D1065670 for ; Sat, 14 Nov 2009 19:59:33 +0000 (UTC) (envelope-from torfinn.ingolfsen@broadpark.no) Received: from bgo1smout1.broadpark.no (bgo1smout1.broadpark.no [217.13.4.94]) by mx1.freebsd.org (Postfix) with ESMTP id 7A0808FC12 for ; Sat, 14 Nov 2009 19:59:33 +0000 (UTC) MIME-version: 1.0 Content-type: multipart/mixed; boundary="Boundary_(ID_jlqdGDOFlU9UlNH8CAlHig)" Received: from bgo1sminn1.broadpark.no ([217.13.4.93]) by bgo1smout1.broadpark.no (Sun Java(tm) System Messaging Server 6.3-3.01 (built Jul 12 2007; 32bit)) with ESMTP id <0KT4005647J2I7A0@bgo1smout1.broadpark.no> for freebsd-multimedia@freebsd.org; Sat, 14 Nov 2009 20:59:26 +0100 (CET) Received: from kg-v2.kg4.no ([80.203.92.186]) by bgo1sminn1.broadpark.no (Sun Java(tm) System Messaging Server 6.3-3.01 (built Jul 12 2007; 32bit)) with SMTP id <0KT400CYP7J1P4C0@bgo1sminn1.broadpark.no> for freebsd-multimedia@freebsd.org; Sat, 14 Nov 2009 20:59:26 +0100 (CET) Date: Sat, 14 Nov 2009 20:59:25 +0100 From: Torfinn Ingolfsen To: freebsd-multimedia@freebsd.org Message-id: <20091114205925.a58f1e6d.torfinn.ingolfsen@broadpark.no> In-reply-to: <20090418170021.00e727aa.torfinn.ingolfsen@broadpark.no> References: <20090418170021.00e727aa.torfinn.ingolfsen@broadpark.no> X-Mailer: Sylpheed 2.7.1 (GTK+ 2.16.6; amd64-portbld-freebsd7.2) 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 X-Content-Filtered-By: Mailman/MimeDel 2.1.5 Subject: Re: Testing MythTV 0.21 - no MPEG hardware cards? 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, 14 Nov 2009 19:59:33 -0000 This is a multi-part message in MIME format. --Boundary_(ID_jlqdGDOFlU9UlNH8CAlHig) Content-type: text/plain; charset=US-ASCII Content-transfer-encoding: 7BIT Hello, old thread, but I finally got a clue which helped me figuring this out. On Sat, 18 Apr 2009 17:00:21 +0200 Torfinn Ingolfsen wrote: > In mythtv-setup I choose a "V4L analog card" - there didn't seem to > be a more appropriate setting. Specifically, why can't I select a > "MPEG-2 encoder card" or something like that? The choices are: The reason for this is the '--disable-ivtv' flag in the CONFIG line i the Makefile of the port. I removed that flag, and I added the patch to videoout_ivtv.cpp suggested[1] by usleep in the MythTV 0.22 discussion on this very mailing list. (patch attached) After that, MythTV 0.21_2 compiles, installs and runs on this machine: root@kg-quiet# uname -a FreeBSD kg-quiet.kg4.no 7.2-STABLE FreeBSD 7.2-STABLE #6: Sat May 30 16:13:13 CEST 2009 root@kg-quiet.kg4.no:/usr/obj/usr/src/sys/QUIET amd64 There are still a few problems: - mythtv and mythfromtend core dumps when closing But hey - progress at last! References: 1) http://lists.freebsd.org/pipermail/freebsd-multimedia/2009-November/010483.html -- Regards, Torfinn Ingolfsen --Boundary_(ID_jlqdGDOFlU9UlNH8CAlHig)-- From owner-freebsd-multimedia@FreeBSD.ORG Sat Nov 14 23:46:57 2009 Return-Path: Delivered-To: multimedia@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 4B449106566B for ; Sat, 14 Nov 2009 23:46:57 +0000 (UTC) (envelope-from tingox@gmail.com) Received: from mail-bw0-f213.google.com (mail-bw0-f213.google.com [209.85.218.213]) by mx1.freebsd.org (Postfix) with ESMTP id D401D8FC15 for ; Sat, 14 Nov 2009 23:46:56 +0000 (UTC) Received: by bwz5 with SMTP id 5so4834307bwz.3 for ; Sat, 14 Nov 2009 15:46:55 -0800 (PST) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=gamma; h=domainkey-signature:mime-version:received:date:message-id:subject :from:to:cc:content-type; bh=NZ8agfnA3ExpOQRF7fBwu2/noSdxbSv62rFB3BYV5hY=; b=YdSEhWYMp0fmqk6CCmn4MbVEsrOc07wCb4TaD6OKZyQj6jsHaPtHfWoxdhbhUQyw+z pHQV821ikPgFWcVGkx6OzpjNLuOm+RzRkyVRT46ussyR6wZ8YheykQTShO/lkyJw6nVI naaY5d22IvL+KgzunReP1deDHsmh+AvFwWOfA= DomainKey-Signature: a=rsa-sha1; c=nofws; d=gmail.com; s=gamma; h=mime-version:date:message-id:subject:from:to:cc:content-type; b=c8RHSbun6kYsVyBYDN0ikGS1pNuiMloZZZt2iu3oHozaQEiy0CJM9F/u0/GEzmtuqR lJjTCQs6doHTNhSMm3KmrmDpaJG0uQaBmNAz/FjIDEMXIL6bxVj1KXzwyBeBW8r6xiE1 OGbZtmr4ITtqGmKlJ9oDAUSOEZVZEKtpHQtos= MIME-Version: 1.0 Received: by 10.223.15.92 with SMTP id j28mr864946faa.11.1258241092445; Sat, 14 Nov 2009 15:24:52 -0800 (PST) Date: Sun, 15 Nov 2009 00:24:52 +0100 Message-ID: From: Torfinn Ingolfsen To: FreeBSD Ports ML Content-Type: text/plain; charset=ISO-8859-1 X-Content-Filtered-By: Mailman/MimeDel 2.1.5 Cc: multimedia@FreeBSD.org Subject: p5-xmltv - old? 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, 14 Nov 2009 23:46:57 -0000 Hello, Is there a reason why p5-xmltv haven't been updated? In ports we have version 0.5.52, but on the main web site version 0.5.56 have been available a while now. Simply chnaging the version in the Makefile, removing the PORTREVISION line and doing 'make makesum' get the port working: root@kg-quiet# diff -u p5-xmltv_0.5.52/Makefile p5-xmltv/Makefile --- p5-xmltv_0.5.52/Makefile 2009-10-18 10:26:10.000000000 +0200 +++ p5-xmltv/Makefile 2009-11-14 22:16:39.000000000 +0100 @@ -6,8 +6,7 @@ # PORTNAME= xmltv -PORTVERSION= 0.5.52 -PORTREVISION= 1 +PORTVERSION= 0.5.56 CATEGORIES= textproc perl5 MASTER_SITES= SF PKGNAMEPREFIX= p5- Ok, It isn't perfect, it complains a bit when you install: ===> Compressing manual pages for p5-xmltv-0.5.56 gzip: can't stat: /usr/local/man/man1/tv_grab_be.1: No such file or directory gzip: can't stat: /usr/local/man/man1/tv_grab_br_net.1: No such file or directory gzip: can't stat: /usr/local/man/man1/tv_grab_dk.1: No such file or directory gzip: can't stat: /usr/local/man/man1/tv_grab_es.1: No such file or directory gzip: can't stat: /usr/local/man/man1/tv_grab_jp.1: No such file or directory ===> Registering installation for p5-xmltv-0.5.56 But it is a good starting point. -- Regards, Torfinn Ingolfsen