From owner-freebsd-multimedia@FreeBSD.ORG Sun Jan 23 00:29:08 2011 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 66048106564A; Sun, 23 Jan 2011 00:29:08 +0000 (UTC) (envelope-from nox@jelal.kn-bremen.de) Received: from smtp.kn-bremen.de (gelbbaer.kn-bremen.de [78.46.108.116]) by mx1.freebsd.org (Postfix) with ESMTP id 1134C8FC17; Sun, 23 Jan 2011 00:29:07 +0000 (UTC) Received: by smtp.kn-bremen.de (Postfix, from userid 10) id AB78F1E000D3; Sun, 23 Jan 2011 01:29:06 +0100 (CET) Received: from triton8.kn-bremen.de (noident@localhost [127.0.0.1]) by triton8.kn-bremen.de (8.14.4/8.14.3) with ESMTP id p0N0OqD8068143; Sun, 23 Jan 2011 01:24:52 +0100 (CET) (envelope-from nox@triton8.kn-bremen.de) Received: (from nox@localhost) by triton8.kn-bremen.de (8.14.4/8.14.3/Submit) id p0N0OqJZ068142; Sun, 23 Jan 2011 01:24:52 +0100 (CET) (envelope-from nox) From: Juergen Lock Date: Sun, 23 Jan 2011 01:24:51 +0100 To: freebsd-multimedia@FreeBSD.org Message-ID: <20110123002451.GA65567@triton8.kn-bremen.de> MIME-Version: 1.0 Content-Type: text/plain; charset=iso-8859-1 Content-Disposition: inline Content-Transfer-Encoding: 8bit User-Agent: Mutt/1.5.21 (2010-09-15) Cc: hselasky@FreeBSD.org Subject: Using "LC Power LC-USB-DVBT" remote with vdr/webcamd (af9015.c patch) 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, 23 Jan 2011 00:29:08 -0000 Hi! Someone on irc pointed me to the "remote=" module parameter for the dvb-usb-af9015 Linux driver so I tested it with this "LC Power LC-USB-DVBT" tuner I got for a little more than ¤ 20 and indeed, a value of 4 got the remote do something. [1] I then looked at the driver and found it has a table of device eprom checksums to assign a default remote, so I added mine: [2] http://people.freebsd.org/~nox/dvb/webcamd/patch-af9015.c.txt (patch also the end of this mail, it also has the pidfilter flag I needed for my other dvb-t tuner that I talked about here: http://lists.freebsd.org/pipermail/freebsd-multimedia/2010-December/011509.html ) This tuner's remote attaches as an usb keyboard sendig mostly digits and control characters, to use it with vdr on FreeBSD I did basically the same as I did for the (bigger) usb remote that I originally patched the vdr remote plugin for as I posted here: http://lists.freebsd.org/pipermail/freebsd-multimedia/2010-September/011240.html (and also noted in the remote plugin's pkg-descr in the vdr shar), i.e. I forced it to uhid(4) by adding a quirk UQ_KBD_IGNORE via usbconfig: usbconfig add_dev_quirk_vplh 0x15a4 0x9016 0 0xffff UQ_KBD_IGNORE and instead of unplugging it for a moment I then did an: usbconfig -d 5.3 reset (of course replace 5.3 with whatever bus/addr your tuner comes up at.) My vdr's /usr/local/etc/vdr/remote.conf already had the config for the other remote so with vdr stopped I backed that up, removed the lines starting with remote-uhid0, touch(1)'ed /usr/local/etc/vdr/channels.conf and then started vdr with '-Premote -h /dev/uhid0' added to its args, started vdr-sxfe and tried to configure the remote. It's credit-card size and doesn't have up/down/left/right/menu/ok and red/green/yellow/blue buttons so I had to use others for those functions and I skipped a lot of less important other buttons too, but at least it seems to work so far. (When I originally tested the remote I sometimes had a button `stuck on repeat' until i pressed another one but for some reason that hasn't happened anymore at least today...) I'll have to think more about a good mapping that makes the best of the existing buttons and uses all the remaining ones that I skipped, if anyone wants a remote.conf for this tuner I guess I should do that first. And as mentioned in the remote plugin's pkg-descr you may need to use an xorg.conf with Option "AutoAddDevices" "False" in Section "ServerFlags" (and possibly explicit InputDevice sections for keyboard and mouse) to stop xorg from grabbing /dev/uhid0 too. (Or maybe it also won't if you make sure vdr always starts before xorg, but I guess then you can't restart vdr or plug in the tuner later. Or it's also possible you can set some hald(1) config to make xorg ignore the remote...) Enjoy, :) Juergen [1] webcamd doesn't handle runtime module parameters yet(?) so if you want to do this on FreeBSD without my patch or with a different module parameter or tuner you'll have to look up the module_param_named() line in the driver source and set the variable named in the second arg appropriately, i.e. in this case look for: module_param_named(remote, dvb_usb_af9015_remote, int, 0644); and change the line static int dvb_usb_af9015_remote; to static int dvb_usb_af9015_remote = 4; [2] I also looked if I maybe should send the eprom checksum diff upstream to the Linux v4l-dvb folks but found they now seem to use a different git location: http://git.linuxtv.org/media_build.git and the remote stuff in there has changed a bit. Maybe I should look at this again later... And here comes the /usr/ports/multimedia/webcamd/files/patch-af9015.c : --- v4l-dvb/linux/drivers/media/dvb/dvb-usb/af9015.c.orig +++ v4l-dvb/linux/drivers/media/dvb/dvb-usb/af9015.c @@ -832,6 +836,9 @@ static const struct af9015_setup af9015_ { 0x9b7dc64e, ir_codes_af9015_table_mygictv, ARRAY_SIZE(ir_codes_af9015_table_mygictv), af9015_ir_table_mygictv, ARRAY_SIZE(af9015_ir_table_mygictv) }, + { 0x5d49e3db, + ir_codes_af9015_table_digittrade, ARRAY_SIZE(ir_codes_af9015_table_digittrade), + af9015_ir_table_digittrade, ARRAY_SIZE(af9015_ir_table_digittrade) }, { } }; @@ -1465,6 +1472,9 @@ static struct dvb_usb_device_properties .adapter = { { .caps = DVB_USB_ADAP_HAS_PID_FILTER | +#if 1 + DVB_USB_ADAP_NEED_PID_FILTERING | +#endif DVB_USB_ADAP_PID_FILTER_CAN_BE_TURNED_OFF, .pid_filter_count = 32, From owner-freebsd-multimedia@FreeBSD.ORG Mon Jan 24 11:07:05 2011 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 F39E01065780 for ; Mon, 24 Jan 2011 11:07:04 +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 E10438FC1F for ; Mon, 24 Jan 2011 11:07:04 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.4/8.14.4) with ESMTP id p0OB74Sd077860 for ; Mon, 24 Jan 2011 11:07:04 GMT (envelope-from owner-bugmaster@FreeBSD.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.4/8.14.4/Submit) id p0OB74Br077858 for freebsd-multimedia@FreeBSD.org; Mon, 24 Jan 2011 11:07:04 GMT (envelope-from owner-bugmaster@FreeBSD.org) Date: Mon, 24 Jan 2011 11:07:04 GMT Message-Id: <201101241107.p0OB74Br077858@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, 24 Jan 2011 11:07:05 -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/154100 multimedia [ patch ] multimedia/libdvbpsi: version 0.1.7 released o ports/154083 multimedia multimedia/gstreamer-plugins-fluendo-mpegdemux: update o ports/154082 multimedia audio/gstreamer-plugins-fluendo-mp3: update to 0.10.15 o kern/153920 multimedia [sound] [patch] Replace the GPL'd sound/maestro3 heade o kern/153901 multimedia [sound] [patch] Replace the GPL'd emu10k1-alsa.h with o ports/153846 multimedia graphics/libcaca 0.99.beta17 - Hidden dependency on Xl o kern/152622 multimedia [pcm] uaudio recording problem o kern/152500 multimedia [hdac] play interrupt timeout, channel dead o kern/152378 multimedia [sound][patch] Update snd_envy24ht to be MPSAFE and us o ports/151203 multimedia Fixed syntax in libfame.m4 file in multimedia/libfame o ports/150502 multimedia multimedia/gpac-libgpac 0.4.5_4,1 fails to compile on o kern/150284 multimedia [snd_hda] No gain with Audio o kern/149943 multimedia [pcm]: CS4236 audio problem o ports/149765 multimedia [PATCH] audio/faac: improve build patches o kern/148741 multimedia [sound] Headphones are deaf (do not work) on Lenovo Th o kern/147504 multimedia [oss] [panic] panic: dev_pager_getpage: map function r p kern/147466 multimedia [snd_hda] [patch] Thinkpad t510, codecs not recognized o kern/146031 multimedia [snd_hda] race condition when kldunload snd_hda sound o kern/144659 multimedia [pcm] The distortion of the sound playback of music at o kern/143505 multimedia [pcm] FreeBSD 8.0-RELEASE (x64) won't make sound card o kern/141826 multimedia [snd_hda] load of snd_hda module fails o kern/140591 multimedia [PATCH][sound] No sound output on lineout/headphone ja o kern/140453 multimedia [sound] No sound inside Virtualbox on 50% volume o kern/137589 multimedia [snd_uaudio] snd_uaudio.ko (USB audio driver) doesn't o kern/134767 multimedia [sound] [snd_hda] [regression] Sigmatel STAC9205X no s 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 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 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/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 o conf/75137 multimedia [sound] add snd_* modules support to /etc/rc.d/mixer 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 73 problems total. From owner-freebsd-multimedia@FreeBSD.ORG Tue Jan 25 13:27:57 2011 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 80BAD1065672; Tue, 25 Jan 2011 13:27:57 +0000 (UTC) (envelope-from guru@unixarea.de) Received: from ms16-1.1blu.de (ms16-1.1blu.de [89.202.0.34]) by mx1.freebsd.org (Postfix) with ESMTP id 192658FC1A; Tue, 25 Jan 2011 13:27:56 +0000 (UTC) Received: from [193.31.11.193] (helo=current.Sisis.de) by ms16-1.1blu.de with esmtpsa (TLS-1.0:DHE_RSA_AES_256_CBC_SHA1:32) (Exim 4.69) (envelope-from ) id 1Phiw6-0001Ug-RP; Tue, 25 Jan 2011 14:27:55 +0100 Received: from current.Sisis.de (current [127.0.0.1]) by current.Sisis.de (8.14.3/8.14.3) with ESMTP id p0PDRwwr003541; Tue, 25 Jan 2011 14:27:58 +0100 (CET) (envelope-from guru@unixarea.de) Received: (from guru@localhost) by current.Sisis.de (8.14.3/8.14.3/Submit) id p0PDRwge003540; Tue, 25 Jan 2011 14:27:58 +0100 (CET) (envelope-from guru@unixarea.de) X-Authentication-Warning: current.Sisis.de: guru set sender to guru@unixarea.de using -f Date: Tue, 25 Jan 2011 14:27:58 +0100 From: Matthias Apitz To: freebsd-multimedia@freebsd.org, freebsd-questions@freebsd.org Message-ID: <20110125132757.GA3479@current.Sisis.de> MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline X-Operating-System: FreeBSD 8.0-CURRENT (i386) User-Agent: Mutt/1.5.19 (2009-01-05) X-Con-Id: 51246 X-Originating-IP: 193.31.11.193 Cc: Subject: snd_es137x && no recording from headset micro X-BeenThere: freebsd-multimedia@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list Reply-To: Matthias Apitz List-Id: Multimedia discussions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 25 Jan 2011 13:27:57 -0000 Hello, I run FreeBSD 8.x in a VMWare hosted on Win7. The VM presents the Intel HDA sound card of the laptop as AudioPCI ES1371-A and I have to use the driver snd_es137x(4) which works fine with only the problem that I can not manage to record from the headset micro. The headset micro works fine in Win7 and it switches between the laptop build-in micro and the headset micro on plug-in; as well while running FreeBSD before as host system on this laptop I could record from both micro (using the snd_hda(4) driver. The output of /dev/sndstat is: $ cat /dev/sndstat FreeBSD Audio Driver (newpcm: 32bit 2007061600/i386) Installed devices: pcm0: at io 0x2040 irq 16 kld snd_es137x [MPSAFE] (2p:4v/1r:4v channels duplex default) i.e. there is only pcm0 and no pcm1 (should it?) I also tried setting: # sysctl dev.pcm.0.play.vchans=4 # sysctl dev.pcm.0.rec.vchans=4 # sysctl hw.snd.maxautovchans=4 mixer(1) says: $ mixer Mixer vol is currently set to 85:85 Mixer pcm is currently set to 100:100 Mixer line is currently set to 90:90 Mixer mic is currently set to 83:83 Mixer cd is currently set to 83:83 Mixer rec is currently set to 72:72 Mixer igain is currently set to 90:90 Mixer line1 is currently set to 83:83 Mixer phin is currently set to 86:86 Mixer video is currently set to 86:86 Recording source: mic and I tried changing to all available recording devices: $ mixer bla ... rec devices: vol, line, mic, cd, line1, phin, phout, video with no luck; any idea how could I record from headset micro? Thanks matthias -- Matthias Apitz t +49-89-61308 351 - f +49-89-61308 399 - m +49-170-4527211 e - w http://www.unixarea.de/ From owner-freebsd-multimedia@FreeBSD.ORG Wed Jan 26 01:41:42 2011 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 823CA106566B for ; Wed, 26 Jan 2011 01:41:42 +0000 (UTC) (envelope-from gallatin@gmail.com) Received: from mail-gw0-f54.google.com (mail-gw0-f54.google.com [74.125.83.54]) by mx1.freebsd.org (Postfix) with ESMTP id 3C8048FC19 for ; Wed, 26 Jan 2011 01:41:41 +0000 (UTC) Received: by gwj21 with SMTP id 21so2067587gwj.13 for ; Tue, 25 Jan 2011 17:41:41 -0800 (PST) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=gamma; h=domainkey-signature:mime-version:date:message-id:subject:from:to:cc :content-type; bh=WFkTv8SFz0B5hhBuefjxPx9PR5xipjVq6G7Bh28li60=; b=j01dE5w1IZfjR/SdZA7llyOsrFsjY11NNr6wbwigXArewAv7MQ9J5y87bIrqPMvonl ynBfbPaDQ1UVZXe4HNjcleBiJir0v04pscPbmTdrkzpbk4uCphL0obAJDgpWMfHoc2Qx SVtHgNVwbXTPVmxdLwKRb1H1ivEmLo8anGtXw= 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=sLBcrdpYeqFGR5u+cVMUp6X7H9yPEsZbQq4xkOE0VSC+8By+0s8+5XckHdu6Kj/y9Z 0iCmgUBuOLbYdDwGpLi0YjfgfFiSogIv2A4ucJCZlNMdVTmKmAGhYzjdMIs37kMse16Q 4h6zYs6/CHgQzgLTwRsmuDzApg71toqQ5S/QU= MIME-Version: 1.0 Received: by 10.100.205.12 with SMTP id c12mr4400019ang.194.1296006101246; Tue, 25 Jan 2011 17:41:41 -0800 (PST) Received: by 10.101.11.28 with HTTP; Tue, 25 Jan 2011 17:41:41 -0800 (PST) Date: Tue, 25 Jan 2011 20:41:41 -0500 Message-ID: From: Andrew Gallatin To: Hans Petter Selasky Content-Type: text/plain; charset=ISO-8859-1 Cc: freebsd-multimedia@freebsd.org Subject: webcamd: PCTV 801eSE 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, 26 Jan 2011 01:41:42 -0000 Hi Hans, I'm trying to use a USB stick that I just bought. (http://linuxtv.org/wiki/index.php/Pinnacle_PCTV_HD_Stick_(801eSE)) It works perfectly under Linux (Arch Linux's 2.6.35). Webcamd sees it, and it seems to almost work: # usbconfig -u 4 -a 2 dump_device_desc ugen4.2: at usbus4, cfg=0 md=HOST spd=HIGH (480Mbps) pwr=ON bLength = 0x0012 bDescriptorType = 0x0001 bcdUSB = 0x0200 bDeviceClass = 0x0000 bDeviceSubClass = 0x0000 bDeviceProtocol = 0x0000 bMaxPacketSize0 = 0x0040 idVendor = 0x2304 idProduct = 0x023a bcdDevice = 0x0100 iManufacturer = 0x0001 iProduct = 0x0002 iSerialNumber = 0x0003 <01008D3B7A> bNumConfigurations = 0x0001 # webcamd <...> dvb-usb: found a 'Pinnacle PCTV HD Pro USB Stick' in warm state. dvb-usb: will pass the complete MPEG2 transport stream to the software demuxer. DVB: registering new adapter (Pinnacle PCTV HD Pro USB Stick) DVB: registering adapter 0 frontend 0 (Samsung S5H1411 QAM/8VSB Frontend)... xc5000 129-0064: creating new instance xc5000: Successfully identified at address 0x64 xc5000: Firmware has been loaded previously dvb-usb: schedule remote query interval to 50 msecs. dvb-usb: Pinnacle PCTV HD Pro USB Stick successfully initialized and connected. dib0700: rc submit urb failed Creating /dev/dvb/adapter0/demux0 Creating /dev/dvb/adapter0/dvr0 Creating /dev/dvb/adapter0/frontend0 xc5000: waiting for firmware upload (dvb-fe-xc5000-1.6.114.fw)... Loading firmware at '/boot/modules/dvb-fe-xc5000-1.6.114.fw', f=7 xc5000: firmware read Zu bytes. xc5000: firmware uploading... xc5000: firmware upload complete... dib0700: i2c write error (status = -32) s5h1411_readreg: readreg error (ret == 0) dib0700: i2c write error (status = -32) s5h1411_readreg: readreg error (ret == 0) However, I'm running into issues in that the actual recorded stream is quite corrupt, even though the signal is fine, and the same station comes in clearly if I boot into linux. Eg, a tool like "azap" does not show any "uncorrectable errors", but the stream itself is pixelated / corrupt enough to crash mplayer. I can see just enough of the picture to tell that I'm tuned to the correct station. I'm not sure if this is a tuning issue, or a USB issue or what is going on. I also do not see the s5h1411_readreg and dib0700 errors on linux. These errors do not happen all the time on FreeBSD either. But the stream is always corrupt. This is on a fairly beefy machine (Xeon 5150 @ 2.66GHz) which can easily sustain 20Gb/s through its PCIe bus (its one of my 10GbE testing machines in my home lab).. I'm running 9-current as of last weekend, with witness/diagnostic disabled. I'm running webcamd pulled from your svn as of this evening. A ~2 week old build also shows the same issue. Can you offer any advice as to how to debug this? Thanks, Drew PS: One more bit of info -- when I ^C test_dvr, it hangs. I have to ^C webcamd itself to get azap & test_dvr to exit. From owner-freebsd-multimedia@FreeBSD.ORG Wed Jan 26 08:01:18 2011 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 969FF1065670 for ; Wed, 26 Jan 2011 08:01:18 +0000 (UTC) (envelope-from hselasky@c2i.net) Received: from swip.net (mailfe04.c2i.net [212.247.154.98]) by mx1.freebsd.org (Postfix) with ESMTP id 1834E8FC12 for ; Wed, 26 Jan 2011 08:01:17 +0000 (UTC) X-Cloudmark-Score: 0.000000 [] X-Cloudmark-Analysis: v=1.1 cv=wd7fLirDSts22yawIUsTeMUS9lsm8Llc0grT6RvpTjU= c=1 sm=1 a=8nJEP1OIZ-IA:10 a=CL8lFSKtTFcA:10 a=i9M/sDlu2rpZ9XS819oYzg==:17 a=xq3W2uTSAAAA:8 a=qnmMcjOPhsKM3pm3ChoA:9 a=7BeerQF0D5Gq652e7FkA:7 a=UBqmhdbBPGD-_o5S1SuwtlNW4JoA:4 a=wPNLvfGTeEIA:10 a=K3ocPEHWFzcA:10 a=NGvTQoL1X-7ETxtE:21 a=4WTsfeCq1eNEdM3C:21 a=i9M/sDlu2rpZ9XS819oYzg==:117 Received: from [188.126.198.129] (account mc467741@c2i.net HELO laptop002.hselasky.homeunix.org) by mailfe04.swip.net (CommuniGate Pro SMTP 5.2.19) with ESMTPA id 78545389; Wed, 26 Jan 2011 09:01:14 +0100 From: Hans Petter Selasky To: Andrew Gallatin Date: Wed, 26 Jan 2011 09:01:19 +0100 User-Agent: KMail/1.13.5 (FreeBSD/8.2-PRERELEASE; KDE/4.4.5; amd64; ; ) References: In-Reply-To: X-Face: *nPdTl_}RuAI6^PVpA02T?$%Xa^>@hE0uyUIoiha$pC:9TVgl.Oq, NwSZ4V"|LR.+tj}g5 %V,x^qOs~mnU3]Gn; cQLv&.N>TrxmSFf+p6(30a/{)KUU!s}w\IhQBj}[g}bj0I3^glmC( :AuzV9:.hESm-x4h240C`9=w MIME-Version: 1.0 Content-Type: Text/Plain; charset="iso-8859-1" Content-Transfer-Encoding: 7bit Message-Id: <201101260901.19745.hselasky@c2i.net> Cc: freebsd-multimedia@freebsd.org Subject: Re: webcamd: PCTV 801eSE 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, 26 Jan 2011 08:01:18 -0000 On Wednesday 26 January 2011 02:41:41 Andrew Gallatin wrote: > Hi Hans, > > I'm trying to use a USB stick that I just bought. > (http://linuxtv.org/wiki/index.php/Pinnacle_PCTV_HD_Stick_(801eSE)) > > It works perfectly under Linux (Arch Linux's 2.6.35). Webcamd sees it, and > it seems to almost work: > > # usbconfig -u 4 -a 2 dump_device_desc > ugen4.2: at usbus4, cfg=0 md=HOST spd=HIGH (480Mbps) > pwr=ON > > bLength = 0x0012 > bDescriptorType = 0x0001 > bcdUSB = 0x0200 > bDeviceClass = 0x0000 > bDeviceSubClass = 0x0000 > bDeviceProtocol = 0x0000 > bMaxPacketSize0 = 0x0040 > idVendor = 0x2304 > idProduct = 0x023a > bcdDevice = 0x0100 > iManufacturer = 0x0001 > iProduct = 0x0002 > iSerialNumber = 0x0003 <01008D3B7A> > bNumConfigurations = 0x0001 > > > # webcamd > <...> > dvb-usb: found a 'Pinnacle PCTV HD Pro USB Stick' in warm state. > dvb-usb: will pass the complete MPEG2 transport stream to the software > demuxer. DVB: registering new adapter (Pinnacle PCTV HD Pro USB Stick) > DVB: registering adapter 0 frontend 0 (Samsung S5H1411 QAM/8VSB > Frontend)... xc5000 129-0064: creating new instance > xc5000: Successfully identified at address 0x64 > xc5000: Firmware has been loaded previously > dvb-usb: schedule remote query interval to 50 msecs. > dvb-usb: Pinnacle PCTV HD Pro USB Stick successfully initialized and > connected. dib0700: rc submit urb failed > > Creating /dev/dvb/adapter0/demux0 > Creating /dev/dvb/adapter0/dvr0 > Creating /dev/dvb/adapter0/frontend0 > xc5000: waiting for firmware upload (dvb-fe-xc5000-1.6.114.fw)... > Loading firmware at '/boot/modules/dvb-fe-xc5000-1.6.114.fw', f=7 > xc5000: firmware read Zu bytes. > xc5000: firmware uploading... > xc5000: firmware upload complete... > dib0700: i2c write error (status = -32) > > s5h1411_readreg: readreg error (ret == 0) > dib0700: i2c write error (status = -32) > > s5h1411_readreg: readreg error (ret == 0) > > > However, I'm running into issues in that the actual recorded stream is > quite corrupt, even though the signal is fine, and the same station > comes in clearly if I boot into linux. Eg, a tool like "azap" does > not show any "uncorrectable errors", but the stream itself is > pixelated / corrupt enough to crash mplayer. I can see just enough > of the picture to tell that I'm tuned to the correct station. I'm > not sure if this is a tuning issue, or a USB issue or what is going > on. I also do not see the > s5h1411_readreg and dib0700 errors on linux. These errors do not > happen all the time on FreeBSD either. But the stream is always > corrupt. > > This is on a fairly beefy machine (Xeon 5150 @ 2.66GHz) which can > easily sustain 20Gb/s through its PCIe bus (its one of my 10GbE > testing machines in my home lab).. I'm running 9-current as of last > weekend, with witness/diagnostic disabled. I'm running webcamd pulled > from your svn as of this evening. A ~2 week old build also shows the > same issue. > > Can you offer any advice as to how to debug this? > Try to check the USB buffer size: #define DIB0700_DEFAULT_STREAMING_CONFIG(ep) \ .streaming_ctrl = dib0700_streaming_ctrl, \ .stream = { \ .type = USB_BULK, \ .count = 4, \ .endpoint = ep, \ .u = { \ .bulk = { \ .buffersize = 39480, \ } \ } \ } 1) Number is not power of 512! > 39480 / 512 ans = 77.109 Try updating that value first. Else you can try adding some printouts in kern/linux_usb.c about printing out the URB lengths that are setup, and any status value in the function usb_linux_non_isoc_callback(). --HPS From owner-freebsd-multimedia@FreeBSD.ORG Wed Jan 26 09:33:14 2011 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 CBAF0106564A for ; Wed, 26 Jan 2011 09:33:14 +0000 (UTC) (envelope-from hselasky@c2i.net) Received: from swip.net (mailfe08.c2i.net [212.247.154.226]) by mx1.freebsd.org (Postfix) with ESMTP id 5A1A58FC15 for ; Wed, 26 Jan 2011 09:33:13 +0000 (UTC) X-Cloudmark-Score: 0.000000 [] X-Cloudmark-Analysis: v=1.1 cv=6QwXiDozn7Gnsf2tGidwH+ndAwLlGixx7JAIKZICKmI= c=1 sm=1 a=8nJEP1OIZ-IA:10 a=CL8lFSKtTFcA:10 a=i9M/sDlu2rpZ9XS819oYzg==:17 a=CSUfAar9qnqh0A5-cRAA:9 a=4bJVbwjJ31BJ-N3iFZ0rUAiODucA:4 a=wPNLvfGTeEIA:10 a=i9M/sDlu2rpZ9XS819oYzg==:117 Received: from [188.126.198.129] (account mc467741@c2i.net HELO laptop002.hselasky.homeunix.org) by mailfe08.swip.net (CommuniGate Pro SMTP 5.2.19) with ESMTPA id 79064409; Wed, 26 Jan 2011 10:33:12 +0100 From: Hans Petter Selasky To: freebsd-multimedia@freebsd.org Date: Wed, 26 Jan 2011 10:33:18 +0100 User-Agent: KMail/1.13.5 (FreeBSD/8.2-PRERELEASE; KDE/4.4.5; amd64; ; ) References: <201101260901.19745.hselasky@c2i.net> In-Reply-To: <201101260901.19745.hselasky@c2i.net> X-Face: *nPdTl_}RuAI6^PVpA02T?$%Xa^>@hE0uyUIoiha$pC:9TVgl.Oq,NwSZ4V" =?iso-8859-1?q?=7CLR=2E+tj=7Dg5=0A=09=25V?=,x^qOs~mnU3]Gn; cQLv&.N>TrxmSFf+p6(30a/{)KUU!s}w\IhQBj}[g}bj0I3^glmC( =?iso-8859-1?q?=0A=09=3AAuzV9=3A=2EhESm-x4h240C=609=3Dw?= MIME-Version: 1.0 Content-Type: Text/Plain; charset="iso-8859-1" Content-Transfer-Encoding: 7bit Message-Id: <201101261033.18183.hselasky@c2i.net> Cc: Subject: Re: webcamd: PCTV 801eSE 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, 26 Jan 2011 09:33:14 -0000 On Wednesday 26 January 2011 09:01:19 Hans Petter Selasky wrote: > } > > 1) Number is not power of 512! ^^^ factor of --HPS From owner-freebsd-multimedia@FreeBSD.ORG Wed Jan 26 11:08:51 2011 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 C97851065675; Wed, 26 Jan 2011 11:08:51 +0000 (UTC) (envelope-from linimon@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:4f8:fff6::28]) by mx1.freebsd.org (Postfix) with ESMTP id 9F7AA8FC25; Wed, 26 Jan 2011 11:08:51 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.4/8.14.4) with ESMTP id p0QB8p6W032672; Wed, 26 Jan 2011 11:08:51 GMT (envelope-from linimon@freefall.freebsd.org) Received: (from linimon@localhost) by freefall.freebsd.org (8.14.4/8.14.4/Submit) id p0QB8pvj032668; Wed, 26 Jan 2011 11:08:51 GMT (envelope-from linimon) Date: Wed, 26 Jan 2011 11:08:51 GMT Message-Id: <201101261108.p0QB8pvj032668@freefall.freebsd.org> To: linimon@FreeBSD.org, freebsd-bugs@FreeBSD.org, freebsd-multimedia@FreeBSD.org From: linimon@FreeBSD.org Cc: Subject: Re: kern/154259: [sound][snd_emu10kx][patch] Fix data type overflow (signed/unsigned mismatch) in args of bus_dma_tag_create 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, 26 Jan 2011 11:08:51 -0000 Synopsis: [sound][snd_emu10kx][patch] Fix data type overflow (signed/unsigned mismatch) in args of bus_dma_tag_create Responsible-Changed-From-To: freebsd-bugs->freebsd-multimedia Responsible-Changed-By: linimon Responsible-Changed-When: Wed Jan 26 11:08:37 UTC 2011 Responsible-Changed-Why: Over to maintainer(s). http://www.freebsd.org/cgi/query-pr.cgi?pr=154259 From owner-freebsd-multimedia@FreeBSD.ORG Wed Jan 26 13:40:11 2011 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 1A8C31065698; Wed, 26 Jan 2011 13:40:11 +0000 (UTC) (envelope-from guru@unixarea.de) Received: from ms16-1.1blu.de (ms16-1.1blu.de [89.202.0.34]) by mx1.freebsd.org (Postfix) with ESMTP id 9BC3A8FC27; Wed, 26 Jan 2011 13:40:10 +0000 (UTC) Received: from [193.31.11.193] (helo=current.Sisis.de) by ms16-1.1blu.de with esmtpsa (TLS-1.0:DHE_RSA_AES_256_CBC_SHA1:32) (Exim 4.69) (envelope-from ) id 1Pi5bU-0005wX-Ku; Wed, 26 Jan 2011 14:40:08 +0100 Received: from current.Sisis.de (current [127.0.0.1]) by current.Sisis.de (8.14.3/8.14.3) with ESMTP id p0QDeGZL001778; Wed, 26 Jan 2011 14:40:16 +0100 (CET) (envelope-from guru@unixarea.de) Received: (from guru@localhost) by current.Sisis.de (8.14.3/8.14.3/Submit) id p0QDeFRf001777; Wed, 26 Jan 2011 14:40:15 +0100 (CET) (envelope-from guru@unixarea.de) X-Authentication-Warning: current.Sisis.de: guru set sender to guru@unixarea.de using -f Date: Wed, 26 Jan 2011 14:40:15 +0100 From: Matthias Apitz To: freebsd-multimedia@freebsd.org, freebsd-questions@freebsd.org Message-ID: <20110126134015.GA1709@current.Sisis.de> References: <20110125132757.GA3479@current.Sisis.de> MIME-Version: 1.0 Content-Type: text/plain; charset=iso-8859-1 Content-Disposition: inline Content-Transfer-Encoding: 8bit In-Reply-To: <20110125132757.GA3479@current.Sisis.de> X-Operating-System: FreeBSD 8.0-CURRENT (i386) User-Agent: Mutt/1.5.19 (2009-01-05) X-Con-Id: 51246 X-Originating-IP: 193.31.11.193 Cc: Subject: Re: snd_es137x && no recording from headset micro X-BeenThere: freebsd-multimedia@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list Reply-To: Matthias Apitz List-Id: Multimedia discussions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 26 Jan 2011 13:40:11 -0000 El día Tuesday, January 25, 2011 a las 02:27:58PM +0100, Matthias Apitz escribió: > > Hello, > > I run FreeBSD 8.x in a VMWare hosted on Win7. The VM presents the Intel > HDA sound card of the laptop as AudioPCI ES1371-A and I have to use the driver > snd_es137x(4) which works fine with only the problem that I can not > manage to record from the headset micro. > > The headset micro works fine in Win7 and it switches between the laptop > build-in micro and the headset micro on plug-in; as well while running > FreeBSD before as host system on this laptop I could record from both micro (using the > snd_hda(4) driver. > > The output of /dev/sndstat is: > > $ cat /dev/sndstat > FreeBSD Audio Driver (newpcm: 32bit 2007061600/i386) > Installed devices: > pcm0: at io 0x2040 irq 16 kld snd_es137x [MPSAFE] (2p:4v/1r:4v channels duplex default) > > i.e. there is only pcm0 and no pcm1 (should it?) I did some more tests and have now a clear picture: 1) in Win7 you can control (System-control-->Sound-->Input) the input devices (build-in micro ./. headset micro), you can test them there and you can define which one is the default; if you set 'headset micro' as default and pull it out, the default switches to build-in micro and back again if you plug it in again; 2) if you start the VM while a) headset micro is pluged-in and b) set as default, the recording in Skype works from headset micro; YES, it works! 3) if you pull out the headset micro, the recording (also in the VM with Skype) falls back to build-in micro; but you can't switch back by pluging it in again, is stays with build-in micro; even a FreeBSD guest system reboot does not change it back; only a restart of VMWare bring the headset micro again as default; It looks like a bug in VMWare or Win7, I think, and nothing we could address here in FreeBSD world, or? Just for the record, se also http://communities.vmware.com/thread/300335 Thanks matthias -- Matthias Apitz t +49-89-61308 351 - f +49-89-61308 399 - m +49-170-4527211 e - w http://www.unixarea.de/ From owner-freebsd-multimedia@FreeBSD.ORG Wed Jan 26 16:14:22 2011 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 4FA291065670 for ; Wed, 26 Jan 2011 16:14:22 +0000 (UTC) (envelope-from gallatin@gmail.com) Received: from mail-yw0-f54.google.com (mail-yw0-f54.google.com [209.85.213.54]) by mx1.freebsd.org (Postfix) with ESMTP id 086598FC18 for ; Wed, 26 Jan 2011 16:14:21 +0000 (UTC) Received: by ywp6 with SMTP id 6so186494ywp.13 for ; Wed, 26 Jan 2011 08:14:21 -0800 (PST) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=gamma; h=domainkey-signature:mime-version:in-reply-to:references:date :message-id:subject:from:to:cc:content-type; bh=YshTfTlU60aTnFsD/A1wC8/X19J3QcUz7wV6xnkW2y4=; b=LBSvlLZiUUfL208ddnA1Bb0ApL/wB8jAD/t79OVO5EYr8K9Gf/BYEFHE8a6c3+xDCE ELgUTeHYKtYWQhuFC7jRRWgEqeglfqt37XBA/6Zy2TfvQl1DSaVFv5YTztYANjJJkh2b dVqwaIhupg2u1eUYknQfyE8xBhLQKdEV/NqyY= 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=qQXLtc8axpppTee9NfOoEr+T9TZNU8V3DehPBg0MYkQ5VKdEg0oKggcToPalUb0Y3z xrqd/c+pe9uFfU00g3AZ6bb68xihV3bezIENqEqNoipdJY4bjxlcsZezZgqlh6WqeKH8 UMD4fuI4HHemlthkzd4TjTmditNTT38t+rslY= MIME-Version: 1.0 Received: by 10.100.4.10 with SMTP id 10mr2438679and.126.1296058461227; Wed, 26 Jan 2011 08:14:21 -0800 (PST) Received: by 10.101.11.28 with HTTP; Wed, 26 Jan 2011 08:14:21 -0800 (PST) In-Reply-To: <201101260901.19745.hselasky@c2i.net> References: <201101260901.19745.hselasky@c2i.net> Date: Wed, 26 Jan 2011 11:14:21 -0500 Message-ID: From: Andrew Gallatin To: Hans Petter Selasky Content-Type: multipart/mixed; boundary=0016e644cb46308ae4049ac22025 Cc: freebsd-multimedia@freebsd.org Subject: Re: webcamd: PCTV 801eSE 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, 26 Jan 2011 16:14:22 -0000 --0016e644cb46308ae4049ac22025 Content-Type: text/plain; charset=ISO-8859-1 On Wed, Jan 26, 2011 at 3:01 AM, Hans Petter Selasky wrote: > Try to check the USB buffer size: > > #define DIB0700_DEFAULT_STREAMING_CONFIG(ep) \ That seems to have been it! I used the attached patch, and now the picture is clear from stations 100km away, where it was unusable on stations 25km away before. Is there some difference between the Linux & FreeBSD USB systems that Linux is able to handle non-512 byte multiples? I still have the occasional error messages: xc5000: waiting for firmware upload (dvb-fe-xc5000-1.6.114.fw)... Loading firmware at '/boot/modules/dvb-fe-xc5000-1.6.114.fw', f=7 xc5000: firmware read Zu bytes. xc5000: firmware uploading... xc5000: firmware upload complete... dib0700: i2c write error (status = -32) s5h1411_readreg: readreg error (ret == 0) dib0700: i2c write error (status = -32) s5h1411_readreg: readreg error (ret == 0) xc5000: waiting for firmware upload (dvb-fe-xc5000-1.6.114.fw)... Loading firmware at '/boot/modules/dvb-fe-xc5000-1.6.114.fw', f=7 xc5000: firmware read Zu bytes. xc5000: firmware uploading... xc5000: firmware upload complete... dib0700: i2c write error (status = -32) s5h1411_readreg: readreg error (ret == 0) dib0700: i2c write error (status = -32) s5h1411_readreg: readreg error (ret == 0) <...> Should I be concerned? Thank you, Drew --0016e644cb46308ae4049ac22025 Content-Type: text/x-patch; charset=US-ASCII; name="dib.diff" Content-Disposition: attachment; filename="dib.diff" Content-Transfer-Encoding: base64 X-Attachment-Id: f_gjefq17f0 LS0tIC4vdjRsLWR2Yi1hYmQzYWFjNjY0NGUvbGludXgvZHJpdmVycy9tZWRpYS9kdmIvZHZiLXVz Yi9kaWIwNzAwX2RldmljZXMuYwkyMDExLTAxLTI2IDEwOjQyOjUwLjQ4MzQzNTI4MyAtMDUwMAor KysgL2hvbWUvZ2FsbGF0aW4vZHZiL3Y0bC1kdmIvbGludXgvZHJpdmVycy9tZWRpYS9kdmIvZHZi LXVzYi9kaWIwNzAwX2RldmljZXMuYwkyMDEwLTA3LTAyIDEyOjAzOjUxLjU3MjU2MDg4OCAtMDQw MApAQCAtMjExMyw3ICsyMTEzLDcgQEAgTU9EVUxFX0RFVklDRV9UQUJMRSh1c2IsIGRpYjA3MDBf dXNiX2lkXwogCQkuZW5kcG9pbnQgPSBlcCwgXAogCQkudSA9IHsgXAogCQkJLmJ1bGsgPSB7IFwK LQkJCQkuYnVmZmVyc2l6ZSA9IDUxMio3OCwgXAorCQkJCS5idWZmZXJzaXplID0gMzk0ODAsIFwK IAkJCX0gXAogCQl9IFwKIAl9Cg== --0016e644cb46308ae4049ac22025-- From owner-freebsd-multimedia@FreeBSD.ORG Wed Jan 26 16:32:22 2011 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 EFA5B1065694 for ; Wed, 26 Jan 2011 16:32:22 +0000 (UTC) (envelope-from hselasky@c2i.net) Received: from swip.net (mailfe04.c2i.net [212.247.154.98]) by mx1.freebsd.org (Postfix) with ESMTP id 794EE8FC19 for ; Wed, 26 Jan 2011 16:32:21 +0000 (UTC) X-Cloudmark-Score: 0.000000 [] X-Cloudmark-Analysis: v=1.1 cv=wd7fLirDSts22yawIUsTeMUS9lsm8Llc0grT6RvpTjU= c=1 sm=1 a=Q9fys5e9bTEA:10 a=CL8lFSKtTFcA:10 a=i9M/sDlu2rpZ9XS819oYzg==:17 a=8kQB0OdkAAAA:8 a=Ajq-WlRAfH2a3NaP-rgA:9 a=gjxssW6q89ts7LELkooA:7 a=tY_MZLHI6L1oX610idpWoTBA2A4A:4 a=PUjeQqilurYA:10 a=9aOQ2cSd83gA:10 a=i9M/sDlu2rpZ9XS819oYzg==:117 Received: from [188.126.198.129] (account mc467741@c2i.net HELO laptop002.hselasky.homeunix.org) by mailfe04.swip.net (CommuniGate Pro SMTP 5.2.19) with ESMTPA id 78816257; Wed, 26 Jan 2011 17:32:20 +0100 From: Hans Petter Selasky To: Andrew Gallatin Date: Wed, 26 Jan 2011 17:32:24 +0100 User-Agent: KMail/1.13.5 (FreeBSD/8.2-PRERELEASE; KDE/4.4.5; amd64; ; ) References: <201101260901.19745.hselasky@c2i.net> In-Reply-To: X-Face: *nPdTl_}RuAI6^PVpA02T?$%Xa^>@hE0uyUIoiha$pC:9TVgl.Oq, NwSZ4V"|LR.+tj}g5 %V,x^qOs~mnU3]Gn; cQLv&.N>TrxmSFf+p6(30a/{)KUU!s}w\IhQBj}[g}bj0I3^glmC( :AuzV9:.hESm-x4h240C`9=w MIME-Version: 1.0 Content-Type: Text/Plain; charset="iso-8859-15" Content-Transfer-Encoding: 7bit Message-Id: <201101261732.24928.hselasky@c2i.net> Cc: freebsd-multimedia@freebsd.org Subject: Re: webcamd: PCTV 801eSE 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, 26 Jan 2011 16:32:23 -0000 On Wednesday 26 January 2011 17:14:21 Andrew Gallatin wrote: > On Wed, Jan 26, 2011 at 3:01 AM, Hans Petter Selasky wrote: > > Try to check the USB buffer size: > > Hi, > > #define DIB0700_DEFAULT_STREAMING_CONFIG(ep) \ > > That seems to have been it! I used the attached patch, and now the > picture is clear from stations 100km away, where it was unusable on > stations 25km away before. > > Is there some difference between the Linux & FreeBSD USB systems that > Linux is able to handle non-512 byte multiples? I think linux maybe handles this case differently. The issue is that USB is packet based, and there is no FIFO to fixup partly received packets. Linux should have this patch aswell! But probably better, one layer up, in the DVB layer which parses this structure. In r1711 I've updated "patches/do_patch.sh" to include your patch! > > I still have the occasional error messages: > > > xc5000: waiting for firmware upload (dvb-fe-xc5000-1.6.114.fw)... > Loading firmware at '/boot/modules/dvb-fe-xc5000-1.6.114.fw', f=7 > xc5000: firmware read Zu bytes. > xc5000: firmware uploading... > xc5000: firmware upload complete... > dib0700: i2c write error (status = -32) > > s5h1411_readreg: readreg error (ret == 0) > dib0700: i2c write error (status = -32) > > s5h1411_readreg: readreg error (ret == 0) > xc5000: waiting for firmware upload (dvb-fe-xc5000-1.6.114.fw)... > Loading firmware at '/boot/modules/dvb-fe-xc5000-1.6.114.fw', f=7 > xc5000: firmware read Zu bytes. > xc5000: firmware uploading... > xc5000: firmware upload complete... > dib0700: i2c write error (status = -32) > > s5h1411_readreg: readreg error (ret == 0) > dib0700: i2c write error (status = -32) > > s5h1411_readreg: readreg error (ret == 0) > <...> > > Should I be concerned? If the functionality is OK, I would not worry. I think -32 means EPIPE which means STALL. That means that the driver most likely is writing a non-supported register. --HPS From owner-freebsd-multimedia@FreeBSD.ORG Wed Jan 26 16:56:44 2011 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 DB8DF1065674 for ; Wed, 26 Jan 2011 16:56:44 +0000 (UTC) (envelope-from gallatin@gmail.com) Received: from mail-gx0-f182.google.com (mail-gx0-f182.google.com [209.85.161.182]) by mx1.freebsd.org (Postfix) with ESMTP id 96A328FC16 for ; Wed, 26 Jan 2011 16:56:44 +0000 (UTC) Received: by gxk8 with SMTP id 8so228358gxk.13 for ; Wed, 26 Jan 2011 08:56:43 -0800 (PST) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=gamma; h=domainkey-signature:mime-version:in-reply-to:references:date :message-id:subject:from:to:cc:content-type; bh=SB/5M5Rg1IZ79PNB10iy438ecBF+BgnTMcSZQRXE5+s=; b=VWTzFx//VEzCUZCNvf1fXoevW1oZK8KLZbxvrVPY8Ch2ibowAnnJ+fi6DJYGijR7ln dThoWLeP/YI2g3AQErS07ngq6azEk2/9IJKsxsE7ktazk/egUPFndNifkKwEffEm8ZwN VhrwA5TfeC1CzrGPCNIVPigyDtOGBLyJa2y4Y= 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=Jy7vjXPWvrYm6d3fZxuc8qOFprFP4A584q+scG0x2lZgG5C4tJEOcZvIGNDlSvXF9q ry8PeALVxUOjRLkSLNvX3nYkRDNcgTdkxyTimSQcCDmwp8/invU2KSf/hnEnRyCZt9ha PcwnldeMQmBXBUGsiyLO44ldirHcIP+F8Kopk= MIME-Version: 1.0 Received: by 10.100.57.2 with SMTP id f2mr5025533ana.160.1296061003680; Wed, 26 Jan 2011 08:56:43 -0800 (PST) Received: by 10.101.11.28 with HTTP; Wed, 26 Jan 2011 08:56:43 -0800 (PST) In-Reply-To: <201101261732.24928.hselasky@c2i.net> References: <201101260901.19745.hselasky@c2i.net> <201101261732.24928.hselasky@c2i.net> Date: Wed, 26 Jan 2011 11:56:43 -0500 Message-ID: From: Andrew Gallatin To: Hans Petter Selasky Content-Type: text/plain; charset=ISO-8859-1 Cc: freebsd-multimedia@freebsd.org Subject: Re: webcamd: PCTV 801eSE 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, 26 Jan 2011 16:56:44 -0000 On Wed, Jan 26, 2011 at 11:32 AM, Hans Petter Selasky wrote: > If the functionality is OK, I would not worry. I think -32 means EPIPE which > means STALL. That means that the driver most likely is writing a non-supported > register. > > --HPS > I was thinking that it might have something to do with the fact that I've got the cheaper variant of the stick, with no IR support. Maybe its probing for IR. I guess as long as it works, I'm happy :) Thank you again! Drew From owner-freebsd-multimedia@FreeBSD.ORG Thu Jan 27 21:47:35 2011 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 2CE6B106566C for ; Thu, 27 Jan 2011 21:47:35 +0000 (UTC) (envelope-from yuri.pankov@gmail.com) Received: from mail-ew0-f54.google.com (mail-ew0-f54.google.com [209.85.215.54]) by mx1.freebsd.org (Postfix) with ESMTP id AAB348FC12 for ; Thu, 27 Jan 2011 21:47:34 +0000 (UTC) Received: by ewy24 with SMTP id 24so1256902ewy.13 for ; Thu, 27 Jan 2011 13:47:33 -0800 (PST) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=gamma; h=domainkey-signature:x-authentication-warning:date:from:to:subject :message-id:mime-version:content-type:content-disposition:user-agent; bh=0c7vitp5hANz1jGyBAH7fxR5kOb9lNUNQpypG1j4vWU=; b=eDqH+l07nLODcWfEI3fpjd8jyAWAWvgnHyOII3B8GhfHOg8EkB0RnOiD6/dwwGln1s iG4TdpvYGqf+I9DhalQ01HWgZ8c6nZd0nICb5Jc1nNXyip62zEjEOB28o8r0ZhdArLcg XNory+epiiFesvccclCQDvjLVa/ZT0J38MJPs= DomainKey-Signature: a=rsa-sha1; c=nofws; d=gmail.com; s=gamma; h=x-authentication-warning:date:from:to:subject:message-id :mime-version:content-type:content-disposition:user-agent; b=b4ABEXfdCn4oP0Z8kcuevE84TYkcMp/z/R3Zwnc42RXSzMpz4+JTFit77xIVcGY2QY jOHbBEncwn0eFqMczgFvemO+bVjtEkxqSyWjy+/v8pW+VK4U0uk/T+rdNW17I/1uV7ev L1ERmo1bYg0+bfSgqyWx/Vb4/sERo700oH1HU= Received: by 10.14.127.73 with SMTP id c49mr2750888eei.20.1296163425287; Thu, 27 Jan 2011 13:23:45 -0800 (PST) Received: from darklight.org.ru ([213.132.76.142]) by mx.google.com with ESMTPS id b52sm13241631eei.19.2011.01.27.13.23.43 (version=TLSv1/SSLv3 cipher=RC4-MD5); Thu, 27 Jan 2011 13:23:44 -0800 (PST) Received: from darklight.org.ru (yuri@darklight.org.ru [IPv6:::1]) by darklight.org.ru (8.14.4/8.14.4) with ESMTP id p0RLNa0C066432 for ; Fri, 28 Jan 2011 00:23:36 +0300 (MSK) (envelope-from yuri.pankov@gmail.com) Received: (from yuri@localhost) by darklight.org.ru (8.14.4/8.14.4/Submit) id p0RLNZNE066430 for freebsd-multimedia@FreeBSD.org; Fri, 28 Jan 2011 00:23:35 +0300 (MSK) (envelope-from yuri.pankov@gmail.com) X-Authentication-Warning: darklight.org.ru: yuri set sender to yuri.pankov@gmail.com using -f Date: Fri, 28 Jan 2011 00:23:35 +0300 From: Yuri Pankov To: freebsd-multimedia@FreeBSD.org Message-ID: <20110127212335.GA63800@darklight.org.ru> MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline User-Agent: Mutt/1.5.21 (2010-09-15) Cc: Subject: audio/libsamplerate distfile size mismatch 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, 27 Jan 2011 21:47:35 -0000 Hi, Looks like distfile for audio/libsamplerate was re-rolled: => libsamplerate-0.1.7.tar.gz doesn't seem to exist in /usr/ports/distfiles/. => Attempting to fetch from http://www.mega-nerd.com/SRC/. fetch: http://www.mega-nerd.com/SRC/libsamplerate-0.1.7.tar.gz: size mismatch: expected 4340634, actual 4340619 Distfile with correct size/checksum is available from ftp.freebsd.org, but still this sounds alarming.. Has anyone tried contacting the author? TIA, Yuri From owner-freebsd-multimedia@FreeBSD.ORG Fri Jan 28 12:50:34 2011 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 C1B251065679; Fri, 28 Jan 2011 12:50:34 +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 98E348FC16; Fri, 28 Jan 2011 12:50:34 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.4/8.14.4) with ESMTP id p0SCoYmj067541; Fri, 28 Jan 2011 12:50:34 GMT (envelope-from arved@freefall.freebsd.org) Received: (from arved@localhost) by freefall.freebsd.org (8.14.4/8.14.4/Submit) id p0SCoYu4067465; Fri, 28 Jan 2011 12:50:34 GMT (envelope-from arved) Date: Fri, 28 Jan 2011 12:50:34 GMT Message-Id: <201101281250.p0SCoYu4067465@freefall.freebsd.org> To: magik@roorback.net, arved@FreeBSD.org, freebsd-multimedia@FreeBSD.org From: arved@FreeBSD.org Cc: Subject: Re: ports/151203: Fixed syntax in libfame.m4 file in multimedia/libfame 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, 28 Jan 2011 12:50:34 -0000 Synopsis: Fixed syntax in libfame.m4 file in multimedia/libfame port State-Changed-From-To: open->closed State-Changed-By: arved State-Changed-When: Fri Jan 28 12:50:29 UTC 2011 State-Changed-Why: committed, thanks http://www.freebsd.org/cgi/query-pr.cgi?pr=151203 From owner-freebsd-multimedia@FreeBSD.ORG Fri Jan 28 12:54:59 2011 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 07B73106567A for ; Fri, 28 Jan 2011 12:54:59 +0000 (UTC) (envelope-from kwm@freebsd.org) Received: from fep28.mx.upcmail.net (fep28.mx.upcmail.net [62.179.121.48]) by mx1.freebsd.org (Postfix) with ESMTP id 418CA8FC08 for ; Fri, 28 Jan 2011 12:54:58 +0000 (UTC) Received: from edge04.upcmail.net ([192.168.13.239]) by viefep13-int.chello.at (InterMail vM.8.01.02.02 201-2260-120-106-20100312) with ESMTP id <20110128123552.WADD1429.viefep13-int.chello.at@edge04.upcmail.net>; Fri, 28 Jan 2011 13:35:52 +0100 Received: from [192.168.0.104] ([77.250.185.194]) by edge04.upcmail.net with edge id 10bq1g07P4C4r91040bsHE; Fri, 28 Jan 2011 13:35:52 +0100 X-SourceIP: 77.250.185.194 From: Koop Mast To: Yuri Pankov In-Reply-To: <20110127212335.GA63800@darklight.org.ru> References: <20110127212335.GA63800@darklight.org.ru> Content-Type: text/plain; charset="UTF-8" Date: Fri, 28 Jan 2011 13:37:33 +0100 Message-ID: <1296218253.95184.34.camel@headache.rainbow-runner.nl> Mime-Version: 1.0 X-Mailer: Evolution 2.32.1 FreeBSD GNOME Team Port Content-Transfer-Encoding: 7bit X-Cloudmark-Analysis: v=1.1 cv=Nww7yNiXF4C1XGF+VcigPkOcTpD8wJaI1KQuZlH5eEk= c=1 sm=0 a=Q1ASeZsA8bgA:10 a=IkcTkHD0fZMA:10 a=7tCRPKC8AAAA:8 a=6I5d2MoRAAAA:8 a=9WmGVIef_WlnNV25Xl8A:9 a=KPBYS1GdiJaW7IsTL1oA:7 a=l08W8A-8jwO8T4tB2Qr7rwzAg9wA:4 a=QEXdDO2ut3YA:10 a=SV7veod9ZcQA:10 a=HpAAvcLHHh0Zw7uRqdWCyQ==:117 Cc: freebsd-multimedia@FreeBSD.org Subject: Re: audio/libsamplerate distfile size mismatch 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, 28 Jan 2011 12:54:59 -0000 On Fri, 2011-01-28 at 00:23 +0300, Yuri Pankov wrote: > Hi, > > Looks like distfile for audio/libsamplerate was re-rolled: > => libsamplerate-0.1.7.tar.gz doesn't seem to exist in /usr/ports/distfiles/. > => Attempting to fetch from http://www.mega-nerd.com/SRC/. > fetch: http://www.mega-nerd.com/SRC/libsamplerate-0.1.7.tar.gz: size mismatch: expected 4340634, actual 4340619 > > Distfile with correct size/checksum is available from ftp.freebsd.org, > but still this sounds alarming.. Has anyone tried contacting the author? I updated the distinfo file with new size/checksum, after checking what was changed. Only the changelog en the windows config.h was changed. So no security problems. Thanks for reporting this. -Koop > TIA, > Yuri > _______________________________________________ > 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 Fri Jan 28 13:00:24 2011 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 2A983106566B for ; Fri, 28 Jan 2011 13:00:24 +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 1A6598FC08 for ; Fri, 28 Jan 2011 13:00:24 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.4/8.14.4) with ESMTP id p0SD0NaT074103 for ; Fri, 28 Jan 2011 13:00:23 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.4/8.14.4/Submit) id p0SD0NGG074074; Fri, 28 Jan 2011 13:00:23 GMT (envelope-from gnats) Date: Fri, 28 Jan 2011 13:00:23 GMT Message-Id: <201101281300.p0SD0NGG074074@freefall.freebsd.org> To: freebsd-multimedia@FreeBSD.org From: dfilter@FreeBSD.ORG (dfilter service) Cc: Subject: Re: ports/151203: 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: Fri, 28 Jan 2011 13:00:24 -0000 The following reply was made to PR ports/151203; it has been noted by GNATS. From: dfilter@FreeBSD.ORG (dfilter service) To: bug-followup@FreeBSD.org Cc: Subject: Re: ports/151203: commit references a PR Date: Fri, 28 Jan 2011 12:50:26 +0000 (UTC) arved 2011-01-28 12:50:21 UTC FreeBSD ports repository Modified files: multimedia/libfame Makefile Log: Fix libfame.m4 warnings PR: 151203 Submitted by: Grzegorz Blach Feature safe: yes Revision Changes Path 1.30 +4 -1 ports/multimedia/libfame/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 Sat Jan 29 23:58:53 2011 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 6C24C1065673; Sat, 29 Jan 2011 23:58:53 +0000 (UTC) (envelope-from kwm@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:4f8:fff6::28]) by mx1.freebsd.org (Postfix) with ESMTP id 455B98FC15; Sat, 29 Jan 2011 23:58:53 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.4/8.14.4) with ESMTP id p0TNwrUh062986; Sat, 29 Jan 2011 23:58:53 GMT (envelope-from kwm@freefall.freebsd.org) Received: (from kwm@localhost) by freefall.freebsd.org (8.14.4/8.14.4/Submit) id p0TNwqg2062982; Sat, 29 Jan 2011 23:58:52 GMT (envelope-from kwm) Date: Sat, 29 Jan 2011 23:58:52 GMT Message-Id: <201101292358.p0TNwqg2062982@freefall.freebsd.org> To: dan@obluda.cz, kwm@FreeBSD.org, freebsd-multimedia@FreeBSD.org From: kwm@FreeBSD.org Cc: Subject: Re: ports/154100: [ patch ] multimedia/libdvbpsi: version 0.1.7 released 9 months ago 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, 29 Jan 2011 23:58:53 -0000 Synopsis: [ patch ] multimedia/libdvbpsi: version 0.1.7 released 9 months ago State-Changed-From-To: open->closed State-Changed-By: kwm State-Changed-When: Sat Jan 29 23:58:17 UTC 2011 State-Changed-Why: Committed thanks. http://www.freebsd.org/cgi/query-pr.cgi?pr=154100 From owner-freebsd-multimedia@FreeBSD.ORG Sun Jan 30 00:00:25 2011 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 083CC1065672 for ; Sun, 30 Jan 2011 00:00:25 +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 CDB138FC12 for ; Sun, 30 Jan 2011 00:00:24 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.4/8.14.4) with ESMTP id p0U00OOX063400 for ; Sun, 30 Jan 2011 00:00:24 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.4/8.14.4/Submit) id p0U00OXj063379; Sun, 30 Jan 2011 00:00:24 GMT (envelope-from gnats) Date: Sun, 30 Jan 2011 00:00:24 GMT Message-Id: <201101300000.p0U00OXj063379@freefall.freebsd.org> To: freebsd-multimedia@FreeBSD.org From: dfilter@FreeBSD.ORG (dfilter service) Cc: Subject: Re: ports/154100: 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, 30 Jan 2011 00:00:25 -0000 The following reply was made to PR ports/154100; it has been noted by GNATS. From: dfilter@FreeBSD.ORG (dfilter service) To: bug-followup@FreeBSD.org Cc: Subject: Re: ports/154100: commit references a PR Date: Sat, 29 Jan 2011 23:57:27 +0000 (UTC) kwm 2011-01-29 23:57:21 UTC FreeBSD ports repository Modified files: multimedia/libdvbpsi Makefile distinfo pkg-plist Removed files: multimedia/libdvbpsi/files patch-examples_connect.c Log: Update to 0.1.7. PR: ports/154100 (based on) Submitted by: Dan Lukes With hat: multimedia@ Feature safe: yes Revision Changes Path 1.23 +3 -4 ports/multimedia/libdvbpsi/Makefile 1.10 +2 -3 ports/multimedia/libdvbpsi/distinfo 1.2 +0 -12 ports/multimedia/libdvbpsi/files/patch-examples_connect.c (dead) 1.9 +8 -1 ports/multimedia/libdvbpsi/pkg-plist _______________________________________________ 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"