Re: [linux-dvb] Technisat DVB-S2 Skystar HD

2007-10-08 Thread Mario Smit
Hi Manu, I was rather busy lately. I just picked up reading on the mailinglist again. Saw you have been busy lately. :) I thought I'll give it a try. Got your latest tree (of today). I have a TT3200 card. Zapping DVB-S works 9 out of 10 times. Zapping DVB-S2 5 out of 10 times. Looking at the

[linux-dvb] hanftek DVB-T USB on ARM926 == can't find firmware

2007-10-08 Thread Akio
Dear All: Could you give me some idea? Right now, I'm working on an ARM926 Platform, and my linux kernel is 2.6.19.2. the following is my kernel message and I put the firmware in /usr/lib/hotplug/firmware

[linux-dvb] Asus Tiger can't find any channels

2007-10-08 Thread Anssi Purola
Hi. (sorry about bad English, if you don't understand something I'm telling, just ask ;) I have a Asus Tiger DVB-T card (got it when I bought this used computer..). lspci says Philips Semiconductors SAA7133/SAA7135 Video Broadcast Decoder (rev d1) and if I don't give any modprobe options, my

Re: [linux-dvb] Technisat DVB-S2 Skystar HD

2007-10-08 Thread Oliver Bardenheier (obardenh)
In make menuconfig I have to choose the following (deprecated entry) for getting the modules: M Video For Linux [*] Enable Video For Linux API 1 (DEPRECATED) --- Enable Video For Linux API 1 compatible Layer [*] Video capture adapters --- -Original

Re: [linux-dvb] [RFC-final] videobuf tree

2007-10-08 Thread Mauro Carvalho Chehab
Em Dom, 2007-10-07 às 14:03 -0700, Trent Piepho escreveu: On Sun, 7 Oct 2007, Mauro Carvalho Chehab wrote: I took a look at cx23885 code. It seems that there's a serious error on the way you're using cx23885_buffer there: cx23885-dvb.c: return cx23885_buf_prepare(q, port, (struct

Re: [linux-dvb] [RFC-final] videobuf tree

2007-10-08 Thread Mauro Carvalho Chehab
For now, let me give a quick explanation of the basics of videobuf. --- (part 2) As you know, the original author of videobuf is Gerd. At the changes I did, I've tried to preserve, as much as possible, the code outside videobuf without changes(*). (*) This is also true for the binary code

Re: [linux-dvb] Asus Tiger can't find any channels

2007-10-08 Thread Marko Ristola
Hi Anssi, I don't have the same card as you, but I live in Finland also. I use DVB-C card Twinhan Cab-CI 2033. It might be that the problems you have seen, are similar that I have seen. (Personally I wouldn't recommend this card even though it works enough for me). Here in Finland there are

Re: [linux-dvb] Technisat DVB-S2 Skystar HD

2007-10-08 Thread Manu Abraham
Oliver Bardenheier (obardenh) wrote: In make menuconfig I have to choose the following (deprecated entry) for getting the modules: M Video For Linux [*] Enable Video For Linux API 1 (DEPRECATED) --- Enable Video For Linux API 1 compatible Layer [*] Video

Re: [linux-dvb] Asus Tiger can't find any channels

2007-10-08 Thread Manu Abraham
Marko Ristola wrote: One thing is, that INVERSION=1 is used in Finland. Others use INVERSION=0. Thus INVERSION_AUTO might not work in kernel drivers if the INVERSION_AUTO is implemented in software, as it is with Twinhan Cab-CI 2033. If you need INVERSION=1(INVERSION_ON) , why do you

Re: [linux-dvb] Technisat DVB-S2 Skystar HD

2007-10-08 Thread Manu Abraham
Mario Smit wrote: Hi Manu, I was rather busy lately. I just picked up reading on the mailinglist again. Saw you have been busy lately. :) I thought I'll give it a try. Got your latest tree (of today). I have a TT3200 card. Zapping DVB-S works 9 out of 10 times. Zapping DVB-S2 5 out of

Re: [linux-dvb] HVR4000 - several questions [sls][spam-bayes][heur][bcc][faked-from]

2007-10-08 Thread Steven Toth
Igor Nikanov wrote: Hi on http://www.tbc.ru/index.php?option=com_contenttask=viewid=36Itemid=31 I read about supported FEC Rates 1/2, 2/3, 3/4, 5/6, 7/8 - and what about fec = 9/10 - is it supported ? The hardware supports those rates, if the driver does not then it's a minor

Re: [linux-dvb] [RFC-final] videobuf tree

2007-10-08 Thread Mauro Carvalho Chehab
Michael, However, cx23885 is now broken. Upon starting a DVB stream, the following OOPS is generated: I've reviewed cx23885 videobuf stuff. I noticed a problem at the conversions: It is still using the abstract videobuf constructor, instead of the pci DMA S/G one. I've just added a patch

Re: [linux-dvb] [RFC-final] videobuf tree

2007-10-08 Thread Michael Krufky
Mauro Carvalho Chehab wrote: Michael, However, cx23885 is now broken. Upon starting a DVB stream, the following OOPS is generated: I've reviewed cx23885 videobuf stuff. I noticed a problem at the conversions: It is still using the abstract videobuf constructor, instead of the

Re: [linux-dvb] [RFC-final] videobuf tree

2007-10-08 Thread Mauro Carvalho Chehab
Mauro, This new patch fixed the problem. CX23885 functionality is restored! :-) Good! If you send your reviewed-by, I'll add at the proper changesets touching videobuf. side note: If we had left a single header, video-buf.h, we could have avoided this problem. When we rename files like

Re: [linux-dvb] [RFC-final] videobuf tree

2007-10-08 Thread Michael Krufky
Mauro Carvalho Chehab wrote: Mauro, This new patch fixed the problem. CX23885 functionality is restored! :-) Good! If you send your reviewed-by, I'll add at the proper changesets touching videobuf. 3762b92e232a - V4L/DVB (6287) - Fix DMA Scatter/Gather constructor Reviewed-by: Michael

Re: [linux-dvb] [RFC-final] videobuf tree

2007-10-08 Thread Mauro Carvalho Chehab
I don't like to create a video-buf.h header. This will make non-pci devices dependent on PCI, or will require some additional logic for checking kernel Kconfig symbols. I also expect that other newer videobuf methods to be created. So, this header will just generate undesirable mess.

Re: [linux-dvb] [RFC-final] videobuf tree

2007-10-08 Thread mkrufky
Mauro Carvalho Chehab wrote: I don't like to create a video-buf.h header. This will make non-pci devices dependent on PCI, or will require some additional logic for checking kernel Kconfig symbols. I also expect that other newer videobuf methods to be created. So, this header will just

Re: [linux-dvb] Some thoughts and questions

2007-10-08 Thread Manu Abraham
Wolfgang Wegner wrote: Hi, On Sat, Sep 29, 2007 at 01:01:31PM +0200, Felix Domke wrote: [...] I don't know if broadcasters are required to send non-inverted signals. I just know (read: remember) that some do. I might be wrong, so second opinions are welcome. sorry for the delay...

Re: [linux-dvb] KNC1 DVB-S2 Plus, Satelco DVB-S2, TT S2 3200, Technisat DVB-S2

2007-10-08 Thread Ralf Jelinek
Manu Abraham wrote: Hi folks, I have pushed out a tree containing support for the mentioned hardware. Please note, support is still incomplete. Still much more to happen. NOTE: Still in BETA stage. Please collect all your issues, will go through one by one. I can go through the issues

[linux-dvb] [patch] Improvement dvb-s2 lock with KNC1 DVB-S2 Plus, Satelco DVB-S2, TT S2 3200, Technisat DVB-S2

2007-10-08 Thread jlac vdr
Hi, This is a patch which improve locking on dvb-s2 channels for card using stb0899 (KNC1 DVB-S2 Plus, Satelco DVB-S2, TT S2 3200, Technisat DVB-S2) Regards, JLac --- linux/drivers/media/dvb/frontends/stb0899_algo.c.org 2007-10-08 21:25:09.0 +0200 +++

Re: [linux-dvb] New card for http://www.bttv-gallery.de/

2007-10-08 Thread Aidan Thornton
On 10/8/07, David Campbell [EMAIL PROTECTED] wrote: Aidan Thornton wrote: On 10/6/07, David Campbell [EMAIL PROTECTED] wrote: Nils Kassube wrote: There is a new version of sniffusb available here: http://www.pcausa.com/Utilities/UsbSnoop/default.htm That version lets you set a

[linux-dvb] Re : TT S-1500 CI not finding fro ntend driver

2007-10-08 Thread manu
Just to add another problem: it was working great, I watched TV and dumped some channels to do some epg work and then at some point it issued an Invalid PC Card insterted, whereas I did not insert/eject it, and now I tried to insert/eject it several times with no succes, each time it says

[linux-dvb] DVB-T scan file for de-Brocken_Magdeburg

2007-10-08 Thread Tobias Stoeber
Hi, attached to this mail please find the scan file for dvbscan for the region Brocken/Harz/Magdeburg-Stadt (Mt. Brocken / Harz Mountain Area / Magdeburg-City, western part of Saxony-Anhalt in Germany). Official lauch is today (October 9, 2007); broadcasting has already started. There are