Leadtek Winfast DTV-1000S remote control support

2009-10-20 Thread Michael Obst
Hi,     I've been using the testing drivers for the dtv 1000s and they have been working great, there was no remote control support however so after a bit of messing around I managed to patch the files and get my remote working. The patch is below, but i'm new to the mailing list and patches and

Re: pctv nanoStick Solo not recognized

2009-10-20 Thread Patrick Boettcher
Hi Matteo, Sorry for being quite in the first place. On Tue, 20 Oct 2009, Matteo Miraz wrote: Devin, it worked. I added the new vendor, and changed the other entry. I'm wondering if exists a pinnacle pctv 73e se usb device... attached to this mail there is the (easy) patch. This patch is

Re: ISDB-T tuner

2009-10-20 Thread Patrick Boettcher
Hi all, On Tue, 20 Oct 2009, Akihiro TSUKADA wrote: And just for you information, in addition to EarthSoft PT1, there is a driver for 'Friio' ISDB-T USB receiver (which I wrote;) , and it is already included in the main repository. Dibcom is maybe for Brazil and may or may not work in Japan.

[RFC/PATCH 00/14] Media controller update based on Hans' v4l-dvb-mc tree

2009-10-20 Thread laurent . pinchart
Hi everybody, here's a set of patches to clean up and extend Hans' initial media controller implementation. Patches prefixed by v4l deal with the v4l core code and update existing drivers when required by an API change. The core now offers two functions to deal with entities and links: -

[RFC/PATCH 01/14] v4l-mc: Rename pins to pads

2009-10-20 Thread laurent . pinchart
Entities connection points are now named pads to avoid confusing them with physical pins. Signed-off-by: Laurent Pinchart laurent.pinch...@ideasonboard.com Index: v4l-dvb-mc/linux/include/linux/videodev2.h === ---

[RFC/PATCH 04/14] v4l-subdev: Add pads operations

2009-10-20 Thread laurent . pinchart
Add a v4l2_subdev_pad_ops structure for the operations that need to be performed at the pad level such as format-related operations. Signed-off-by: Laurent Pinchart laurent.pinch...@ideasonboard.com Index: v4l-dvb-mc/linux/include/media/v4l2-subdev.h

[RFC/PATCH 02/14] v4l-mc: Merge input and output pads

2009-10-20 Thread laurent . pinchart
The media controller doesn't need separate counts of input and output pads. Merge them into a pads count. Signed-off-by: Laurent Pinchart laurent.pinch...@ideasonboard.com Index: v4l-dvb-mc/linux/drivers/media/video/v4l2-device.c

[RFC/PATCH 03/14] v4l-mc: Replace the active pads bitmask by a link flag

2009-10-20 Thread laurent . pinchart
Signed-off-by: Laurent Pinchart laurent.pinch...@ideasonboard.com Index: v4l-dvb-mc/linux/drivers/media/video/v4l2-device.c === --- v4l-dvb-mc.orig/linux/drivers/media/video/v4l2-device.c +++

[RFC/PATCH 05/14] v4l-mc: Clean up link API

2009-10-20 Thread laurent . pinchart
Make the link API easier to use and more intuitive by introducing pad and link objects. The entity API is now made of two functions: - v4l2_entity_init() initializes an entity. The caller must provide an array of pads as well as an estimated number of links. The links array is allocated

[RFC/PATCH 10/14] uvcvideo: Fix extension units parsing

2009-10-20 Thread laurent . pinchart
The bNrInPins field is an 8 bit integer, not a 16 bit integer. Signed-off-by: Laurent Pinchart laurent.pinch...@ideasonboard.com Index: v4l-dvb-mc/linux/drivers/media/video/uvc/uvc_driver.c === ---

[RFC/PATCH 14/14] uvcvideo: Register subdevices for each entity

2009-10-20 Thread laurent . pinchart
Userspace applications can now discover the UVC device topology using the media controller API. Signed-off-by: Laurent Pinchart laurent.pinch...@ideasonboard.com Index: v4l-dvb-mc/linux/drivers/media/video/uvc/uvc_driver.c === ---

[RFC/PATCH 13/14] uvcvideo: Register a v4l2_device

2009-10-20 Thread laurent . pinchart
As a first step to the media controller integration register a v4l2_device for each UVC control interface and make the video_device a child of the v4l2_device. Signed-off-by: Laurent Pinchart laurent.pinch...@ideasonboard.com Index: v4l-dvb-mc/linux/drivers/media/video/uvc/uvc_driver.c

[RFC/PATCH 11/14] uvcvideo: Refactor chain scan

2009-10-20 Thread laurent . pinchart
Don't handle the first output terminal in a chain in a special way. Use uvc_scan_chain_entity() like for all other entities, making the chain scan code more generic. Signed-off-by: Laurent Pinchart laurent.pinch...@ideasonboard.com Index: v4l-dvb-mc/linux/drivers/media/video/uvc/uvc_driver.c

[RFC/PATCH 06/14] v4l-mc: Remove subdev v4l2_dev field

2009-10-20 Thread laurent . pinchart
A pointer to the v4l2_device is stored in the v4l2_entity structure that v4l2_subdev derives from. There is no need to hold an extra copy of the pointer. Signed-off-by: Laurent Pinchart laurent.pinch...@ideasonboard.com Index: v4l-dvb-mc/linux/include/media/v4l2-subdev.h

[RFC/PATCH 09/14] uvcvideo: Merge iterms, oterms and extensions linked lists

2009-10-20 Thread laurent . pinchart
All terminals and units are now added to a single linked list of entities per chain. This makes terminals and units handling code more generic. Signed-off-by: Laurent Pinchart laurent.pinch...@ideasonboard.com Index: v4l-dvb-mc/linux/drivers/media/video/uvc/uvc_ctrl.c

[RFC/PATCH 12/14] uvcvideo: Factorize common field in uvc_entity structure

2009-10-20 Thread laurent . pinchart
The bNrInPins and baSourceID fields are common among all entities (some of use bSourceID but this is conceptually the same). Move those two fields out of entity type-specific unions into the uvc_entity structure top level. Signed-off-by: Laurent Pinchart laurent.pinch...@ideasonboard.com Index:

[RFC/PATCH 08/14] uvcvideo: Rely on videodev to reference-count the device

2009-10-20 Thread laurent . pinchart
The uvcvideo driver has a driver-wide lock and a reference count to protect against a disconnect/open race. Now that videodev handles the race itself, reference-counting in the driver can be removed. This is a backport from the v4l-dvb tree. Signed-off-by: Laurent Pinchart

Re: uvcvideo causes ehci_hcd to halt

2009-10-20 Thread Ozan Çağlayan
Ozan Çağlayan wrote On 14-10-2009 11:16: Alan Stern wrote On 13-10-2009 17:53: Can you add a dump_stack() call just after the ehci_err() line in drivers/usb/host/ehci-hcd.c:handshake_on_error_set_halt()? It should provide some clues. At the same time (i.e., during the same test) you

Lifeview lv8h pci-e

2009-10-20 Thread Oinatz Aspiazu
I'd like to help to anyone who needs testing for this card. It seems that everyhting is recognized but the cx23885 needs something just to make it work. Thanks 2009/10/13 Oinatz Aspiazu oaspi...@gmail.com: Hello: I'm using an Arch Linux, kernel 2.6.30-ARCH. I've a Lifeview LV8H pci-e dvb-t

Re: Re : ISDB-T tuner

2009-10-20 Thread Akihiro TSUKADA
so, which device can I buy, working in Japan, in linux, and in digital (working after 2011)? known to work devices 0. 774 Friio white http://www.friio.com/ (in Japanese) USB2.0 ISDB-T, with a card-reader device, without BCAS card DVB driver: in v4l-dvb main repository direct net shopping

Re : Re : ISDB-T tuner

2009-10-20 Thread Romont Sylvain
Thanks for your answer! I will give back my pixela to the shop! and I think I will choose the SKNet MonsterTV HDUS. I don't have BCAS card because I will give back the pixela! Do you think than SKNet MonsterTV HDUS is good? Can I use it with Mythtv? (if you know mythtv) Thank you very much for

Re: uvcvideo causes ehci_hcd to halt

2009-10-20 Thread Alan Stern
On Tue, 20 Oct 2009, [UTF-8] Ozan Çağlayan wrote: Hi. First the backtrace: [ 149.510272] uvcvideo: Found UVC 1.00 device BisonCam, NB Pro (5986:0203) [ 149.515017] input: BisonCam, NB Pro as /devices/pci:00/:00:1d.7/usb1/1-5/1-5:1.0/input/input10 [ 149.515588] usbcore:

Re : Re : ISDB-T tuner

2009-10-20 Thread Romont Sylvain
I search a little about the SKNet MonsterTV HDUS and the dvb driver, but I think the BCAS card-reader is not working, is it true? - Message d'origine De : Akihiro TSUKADA ts...@yahoo.co.jp À : Romont Sylvain psgma...@yahoo.fr Cc : linux-media@vger.kernel.org Envoyé le : Mar 20 Octobre

saa7134-empress output format problem

2009-10-20 Thread Gordon Smith
Hello - I have a saa7134 video encoder card RTD Embedded Technologies VFG73 in 2.6.28.9 with recent v4l2 (3919b17dc88e). It has two compression channels and no tuner. The output pixel format for the compressed devices is showing 'BGR3' and it should be 'MPEG'. The data from the output device

Re: [PATCH 2/6 v5] Support for TVP7002 in dm365 board

2009-10-20 Thread Santiago Nunez-Corrales
Sekhar, Nori, Sekhar wrote: On Fri, Oct 16, 2009 at 00:17:46, Kevin Hilman wrote: santiago.nu...@ridgerun.com writes: From: Santiago Nunez-Corrales santiago.nu...@ridgerun.com This patch provides support for TVP7002 in architecture definitions within DM365. Signed-off-by: Santiago

RE: [PATCH 0/6 v5] Support for TVP7002 in DM365

2009-10-20 Thread Karicheri, Muralidharan
Santiago, When you are submitting the next set of patches, please include only TVP7002 driver and Kconfig/Makefile changes for TVP7002. The vpfe capture driver in the upstream tree is not up to date with the Arago tree that we use for development. So as such your patches for board/platform

Re: HP/Yuan EC372S DVB-T

2009-10-20 Thread Patryk Ściborek
Dnia 2009-10-20, wto o godzinie 02:26 +0300, Antti Palosaari pisze: Do you have Windows XP drivers? I think I could fix that device if I get my device working with Windows. And I only have XP... Hi, As far as I remember I've just installed (on XP) drivers from CD. It was included with the

[cron job] v4l-dvb daily build 2.6.22 and up: ERRORS, 2.6.16-2.6.21: ERRORS

2009-10-20 Thread Hans Verkuil
This message is generated daily by a cron job that builds v4l-dvb for the kernels and architectures in the list below. Results of the daily build of v4l-dvb: date:Tue Oct 20 19:00:03 CEST 2009 path:http://www.linuxtv.org/hg/v4l-dvb changeset: 13156:f6680fa8e7ec gcc version: gcc

Re: saa7134-empress output format problem

2009-10-20 Thread Gordon Smith
On Tue, Oct 20, 2009 at 10:11 AM, Gordon Smith spider.karma+linux-me...@gmail.com wrote: Hello - I have a saa7134 video encoder card RTD Embedded Technologies VFG73 in 2.6.28.9 with recent v4l2 (3919b17dc88e). It has two compression channels and no tuner. I can clarify that my card is RTD

Re: S2API and DVB-T tuning [Solved]

2009-10-20 Thread DUBOST Brice
DUBOST Brice a écrit : DUBOST Brice a écrit : Hello, I have some problems with DVB-T tuning under s2-api/DVB API 5 To run these tests I use scan-s2-7effc68db255 My machine runs the following kernel (uname -a) Linux fixe_barcelone 2.6.31-13-generic #42-Ubuntu SMP Thu Oct 8 20:03:54 UTC

Re: CAM initialisation failing

2009-10-20 Thread Gregor Fuis
Hi, I also have a lot of problems with my CAM module (Povercam Pro). It works in about 50% when trying to watch channels on my Viaccess card. Can you maybe share your patch? Gregor -- To unsubscribe from this list: send the line unsubscribe linux-media in the body of a message to

Re: HP/Yuan EC372S DVB-T

2009-10-20 Thread Antti Palosaari
On 10/20/2009 07:39 PM, Patryk Ściborek wrote: Dnia 2009-10-20, wto o godzinie 02:26 +0300, Antti Palosaari pisze: Do you have Windows XP drivers? I think I could fix that device if I get my device working with Windows. And I only have XP... Hi, As far as I remember I've just installed (on

Re: [RFC] v1.1: Multi-plane (discontiguous) buffers

2009-10-20 Thread Hans Verkuil
Hello, we are currently working on a chip that requires a separate buffer for each plane in a frame. Our hardware requires, those plane buffers not to be placed immediately one after another. There is no support for such buffers in V4L2 yet and we would like to propose a solution for

Re: [RFC] Video events, version 2.1

2009-10-20 Thread Hans Verkuil
Hans Verkuil wrote: [clip] #define V4L2_EVENT_ALL 0x07ff I suggest using 0 instead of 0x07ff. Yes, 0 is still a magic number, but somehow it feels a lot less magic :-) Okay. #define V4L2_EVENT_PRIVATE_START0x0800 #define V4L2_EVENT_RESERVED

Re: [RFC/PATCH 00/14] Media controller update based on Hans' v4l-dvb-mc tree

2009-10-20 Thread Laurent Pinchart
On Wednesday 21 October 2009 00:15:37 Hans Verkuil wrote: Hi Laurent, Hi everybody, here's a set of patches to clean up and extend Hans' initial media controller implementation. Patches prefixed by v4l deal with the v4l core code and update existing drivers when required by an API

parse-sniffusb2.pl update

2009-10-20 Thread Franklin Meng
I have updated/rewrote parts of the parse-sniffusb2.pl script since I noticed some minor errors that I had in the previous version. I believe everything should be correct now. Attached is a newer version for review with the name parse1b-sniffusb2.pl Thanks, Franklin Meng

Kworld 315U help?

2009-10-20 Thread Franklin Meng
I was wondering if someone would be able to help me with getting the analog and inputs for the Kworld 315U working. I was able to get the digital part working with help from Douglas Schilling and wanted to get the remaining portions of the device working. I have traces but have not made much