From owner-freebsd-multimedia@FreeBSD.ORG Tue Aug 31 19:02:22 2010 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 C1D0910656CE; Tue, 31 Aug 2010 19:02:22 +0000 (UTC) (envelope-from hselasky@freebsd.org) Received: from swip.net (mailfe08.swip.net [212.247.154.225]) by mx1.freebsd.org (Postfix) with ESMTP id AFDB48FC1F; Tue, 31 Aug 2010 19:02:21 +0000 (UTC) X-Cloudmark-Score: 0.000000 [] X-Cloudmark-Analysis: v=1.1 cv=A9i2abt5RTkKnggEwMfGtMsecE7KHeOxIgKEeBb2Lvo= c=1 sm=1 a=ivRC_LpHlL4A:10 a=8nJEP1OIZ-IA:10 a=M8b_wTzEtboA:10 a=MnI1ikcADjEx7bvsp0jZvQ==:17 a=S0Nkh98aGVJTXGfCB24A:9 a=KfqE1KWzlLcNxoEUIOkA:7 a=dZhrvbvmPTJh2tt8-xFTcy5rc0YA:4 a=wPNLvfGTeEIA:10 a=MnI1ikcADjEx7bvsp0jZvQ==:117 Received: from [188.126.201.140] (account mc467741@c2i.net HELO laptop002.hselasky.homeunix.org) by mailfe08.swip.net (CommuniGate Pro SMTP 5.2.19) with ESMTPA id 14061867; Tue, 31 Aug 2010 21:02:05 +0200 Received-SPF: softfail receiver=mailfe08.swip.net; client-ip=188.126.201.140; envelope-from=hselasky@freebsd.org From: Hans Petter Selasky To: Juergen Lock Date: Tue, 31 Aug 2010 20:58:16 +0200 User-Agent: KMail/1.13.5 (FreeBSD/8.1-STABLE; KDE/4.4.5; amd64; ; ) References: <4C66C4BC.4040504@janh.de> <201008302322.20299.hselasky@freebsd.org> <20100831184815.GA93400@triton8.kn-bremen.de> In-Reply-To: <20100831184815.GA93400@triton8.kn-bremen.de> X-Face: +~\`s("[*|O,="7?X@L.elg*F"OA\I/3%^p8g?ab%RN'(; _IjlA: hGE..Ew, XAQ*o#\/M~SC=S1-f9{EzRfT'|Hhll5Q]ha5Bt-s|oTlKMusi:1e[wJl}kd}GR Z0adGx-x_0zGbZj'e(Y[(UNle~)8CQWXW@:DX+9)_YlB[tIccCPN$7/L' MIME-Version: 1.0 Content-Type: Text/Plain; charset="iso-8859-1" Content-Transfer-Encoding: 7bit Message-Id: <201008312058.16445.hselasky@freebsd.org> Cc: freebsd-multimedia@freebsd.org, me@janh.de, kde@freebsd.org, Joe Marcus Clarke , gnome@freebsd.org Subject: Re: kaffeine-1.0 and webcamd based DVB-T? 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, 31 Aug 2010 19:02:22 -0000 On Tuesday 31 August 2010 20:48:15 Juergen Lock wrote: > On Mon, Aug 30, 2010 at 11:22:20PM +0200, Hans Petter Selasky wrote: > > Hi, > > Hi! > > > I've committed to the HAL stuff to webcamd in the I4B SVN as of r1628. To > > enable HAL support build like this: > > > > make -j3 HAVE_HAL=YES LIBDIR=/usr/local/lib > > > > Run like this: > > > > ./webcamd -H > > There's an initialization missing so the code did nothing... > (works now for dvb, v4l untested due to lack of device.) > > Cheers, > Juergen > > Index: webcamd_hal.c > =================================================================== > --- webcamd_hal.c (revision 1628) > +++ webcamd_hal.c (working copy) > @@ -69,6 +69,8 @@ > char **ppdev; > int n; > > + if (!(hal_conn = dbus_bus_get(DBUS_BUS_SYSTEM, NULL))) > + return; > hal_ctx = libhal_ctx_new(); > if (hal_ctx == NULL) > return; Committed to r1629. Thanks! --HPS