Re: [PATCH 2/4] Modifications to the driver mb86a20s

2011-05-12 Thread Mauro Carvalho Chehab
Em 13-05-2011 04:05, Manoel PN escreveu: > > This patch implements mb86a20s_read_snr and adds mb86a20s_read_ber and > mb86a20s_read_ucblocks both without practical utility but that programs as > dvbsnoop need. Please try to align comments into up to 75 columns. It looks nicer when people look i

Re: [PATCH 1/4] Modifications to the driver mb86a20s

2011-05-12 Thread Mauro Carvalho Chehab
Em 13-05-2011 04:02, Manoel PN escreveu: > > Hi to all, > > I added some modifications to the driver mb86a20s and would appreciate your > comments. > >> >> File: drivers/media/dvb/frontends/mb86a20s.c >> >> -static int debug = 1; >> +static int debug = 0; >> module_param(debug, int, 0644); >> M

RE: [PATCH] [media] at91: add Atmel Image Sensor Interface (ISI)support

2011-05-12 Thread Wu, Josh
On Thursday, May 12, 2011 5:35 PM, Russell King wrote: > A few more points... >> +static int __init atmel_isi_probe(struct platform_device *pdev) > Should be __devinit otherwise you'll have section errors. Ok, will be fixed in V2 patch. >> +{ >> +unsigned int irq; >> +struct atmel_isi *i

adding dvb-t scan files for New Zealand

2011-05-12 Thread Jodi the Tigger
Hello all, I want to add dvb-t scan files for New Zealand, as there only seems to be one (For Waiatarua, Auckland, NZ). However I have no idea how to actually get the files I created added to the linux tv project. So if someone could either: 1) point me to a faq / wiki / web site explaining how I

[PATCH 4/4] Modifications to the driver mb86a20s‏‏

2011-05-12 Thread Manoel PN
This patch implement changes to the function mb86a20s_read_signal_strength. The original function, binary search, does not work with device dtb08. I would like to know if this function works. Signed-off-by: Manoel Pinheiro signal_strength.patch D

[PATCH 3/4] Modifications to the driver mb86a20s‏

2011-05-12 Thread Manoel PN
This patch implements some modifications in the function This patch implements some modifications in the initialization function of the mb86a20s. Explanation: Several registers of mb86a20s can be programmed and to simplify this task and due to lack of technical literature to elaborate the nec

[PATCH 2/4] Modifications to the driver mb86a20s

2011-05-12 Thread Manoel PN
This patch implements mb86a20s_read_snr and adds mb86a20s_read_ber and mb86a20s_read_ucblocks both without practical utility but that programs as dvbsnoop need. Signed-off-by: Manoel Pinheiro read_snr.patch Description: Binary data

[PATCH 2/4] Modifications to the driver mb86a20s

2011-05-12 Thread Manoel PN
This patch implements mb86a20s_read_snr and adds mb86a20s_read_ber and mb86a20s_read_ucblocks both without practical utility but that programs as dvbsnoop need. Signed-off-by: Manoel Pinheiro -- To unsubscribe from this list: send the line "unsubscr

[PATCH 1/4] Modifications to the driver mb86a20s

2011-05-12 Thread Manoel PN
Hi to all, I added some modifications to the driver mb86a20s and would appreciate your comments. > > File: drivers/media/dvb/frontends/mb86a20s.c > > -static int debug = 1; > +static int debug = 0; > module_param(debug, int, 0644); > MODULE_PARM_DESC(debug, "Activates frontend debugging (defaul

Re: [PATCH] [media] at91: add Atmel Image Sensor Interface (ISI) support

2011-05-12 Thread Jean-Christophe PLAGNIOL-VILLARD
> > + > > +/* Constants for RGB_CFG(ISI_V2) */ > > +#define ISI_V2_RGB_CFG_DEFAULT 0 > > +#define ISI_V2_RGB_CFG_MODE_1 1 > > +#define ISI_V2_RGB_CFG_MODE_2 2 > > +#define ISI_V2_RGB_CFG_MODE_3 3 > > + > > +/* Bit ma

Re: IR remote control autorepeat / evdev

2011-05-12 Thread Anssi Hannula
On 12.05.2011 04:36, Mauro Carvalho Chehab wrote: > Em 12-05-2011 03:10, Mauro Carvalho Chehab escreveu: >> Em 12-05-2011 02:37, Anssi Hannula escreveu: > >>> I don't see any other places: >>> $ git grep 'REP_PERIOD' . >>> dvb/dvb-usb/dvb-usb-remote.c: input_dev->rep[REP_PERIOD] = >>> d->props.r

[ANNOUNCE] New OMAP4 V4L2 Camera Project started

2011-05-12 Thread Aguirre, Sergio
Hi all, Just to let you know that I've just officially registered for a new project in the Pandaboard.org portal for OMAP4 v4l2 camera support. You can find it here: http://omiio.org/content/omap4-v4l2-camera And also, you can find the actual Gitorious project with the code here: https://www.g

Re: [PATCH 0/6] DVB-T2 API updates, documentation and accompanying small fixes

2011-05-12 Thread Antti Palosaari
Hello all, Rémi informed he have added this new API and DVB-T2 support for VLC media player Git tree [1]. I didn't test it yet, mostly due to lack of time :i I will test that sooner or later, feel free to test! [1] http://git.videolan.org/?p=vlc.git regards Antti On 05/08/2011 06:51 PM,

Re: ngene CI problems

2011-05-12 Thread Oliver Endriss
On Thursday 12 May 2011 22:28:52 Issa Gorissen wrote: > On 11/05/11 20:59, Oliver Endriss wrote: > > > > I reworked the driver to strip those null packets. Please try > > http://linuxtv.org/hg/~endriss/ngene-octopus-test/raw-rev/f0dc4237ad08 > > Tried your patch, but FFs have been replaced by 6Fs

Re: [PATCH] [media] at91: add Atmel Image Sensor Interface (ISI) support

2011-05-12 Thread Ryan Mallon
On 05/13/2011 12:14 AM, Guennadi Liakhovetski wrote: > On Thu, 12 May 2011, Jean-Christophe PLAGNIOL-VILLARD wrote: > > [snip] > >>> + if (0 == *nbuffers) >> please invert the test > > Don't think this is required by CodingStyle or anything like that. If it > were, you'd have to revamp half o

Re: [PATCH] [media] at91: add Atmel Image Sensor Interface (ISI) support

2011-05-12 Thread Ryan Mallon
On 05/12/2011 07:42 PM, Josh Wu wrote: > This patch is to enable Atmel Image Sensor Interface (ISI) driver support. > - Using soc-camera framework with videobuf2 dma-contig allocator > - Supporting video streaming of YUV packed format > - Tested on AT91SAM9M10G45-EK with OV2640 Hi Josh, Thansk f

Re: [PATCH v2 5/5] Documentation: Update to include DVB-T2 additions

2011-05-12 Thread Steve Kerrison
I've just realised there is some illegal whitespace in this patch here: > @@ -553,5 +568,20 @@ typedef enum fe_guard_interval { > > > > + > + DVB-T2 parameters > + > + This section covers parameter

[PATCH v3] DVB: Add basic API support for DVB-T2 and bump minor version

2011-05-12 Thread Steve Kerrison
From: Andreas Oberritter st...@stevekerrison.com: Remove private definitions from cxd2820r that existed before API was defined Signed-off-by: Andreas Oberritter Signed-off-by: Steve Kerrison --- drivers/media/dvb/dvb-core/dvb_frontend.c | 13 + drivers/media/dvb/dvb-core/dvb_

Re: DVB nGene CI : TS Discontinuities issues

2011-05-12 Thread Issa Gorissen
On 11/05/11 15:12, Issa Gorissen wrote: > From: Ralph Metzler >> Issa Gorissen writes: >> > Could you please take a look at the cxd2099 issues ? >> > >> > I have attached a version with my changes. I have tested a lot of >> > different settings with the help of the chip datasheet. >> > >>

Re: Audio Video synchronization for data received from a HDMI receiver chip

2011-05-12 Thread Hans Verkuil
On Thursday, May 12, 2011 18:59:33 Charlie X. Liu wrote: > Which HDMI receiver chip? Indeed, that's my question as well :-) Anyway, this question comes up regularly. V4L2 provides timestamps for each frame, so that's no problem. But my understanding is that ALSA does not give you timestamps, so i

Re: ngene CI problems

2011-05-12 Thread Issa Gorissen
On 11/05/11 20:59, Oliver Endriss wrote: > > I reworked the driver to strip those null packets. Please try > http://linuxtv.org/hg/~endriss/ngene-octopus-test/raw-rev/f0dc4237ad08 > > CU > Oliver > Hi Oliver, Tried your patch, but FFs have been replaced by 6Fs in null packets. Other than that, no

Re: [PATCH] Add VIDEO IN driver for OKI SEMICONDUCTOR ML7213/ML7223 IOHs

2011-05-12 Thread Hans Verkuil
Hi Tomoya, This is a pretty big patch and it will take some time to review properly. However, I can give some high-level comments already based on an initial scan of the code. 1) New drivers that use controls (G/S_CTRL et al) must use the new control framework. See Documentation/video4linux/v4l2-

[PATCH 2/3] tea575x: remove unused card from struct

2011-05-12 Thread Ondrej Zary
struct snd_card *card is present in struct snd_tea575x but never used. Remove it. Signed-off-by: Ondrej Zary --- linux-2.6.39-rc2-/include/sound/tea575x-tuner.h 2011-05-12 21:22:35.0 +0200 +++ linux-2.6.39-rc2/include/sound/tea575x-tuner.h 2011-05-12 21:21:37.0 +0200 @

[PATCH 3/3] tea575x: use better card and bus names

2011-05-12 Thread Ondrej Zary
Provide real card and bus_info instead of hardcoded values. Signed-off-by: Ondrej Zary --- linux-2.6.39-rc2-/include/sound/tea575x-tuner.h 2011-05-12 21:53:43.0 +0200 +++ linux-2.6.39-rc2/include/sound/tea575x-tuner.h 2011-05-12 21:37:40.0 +0200 @@ -52,6 +52,8 @@ struc

[PATCH 1/3] tea575x: remove freq_fixup from struct

2011-05-12 Thread Ondrej Zary
freq_fixup is a constant, no need to hold it in struct snd_tea575x and set in each driver. Signed-off-by: Ondrej Zary --- linux-2.6.39-rc2-/include/sound/tea575x-tuner.h 2011-05-10 22:31:40.0 +0200 +++ linux-2.6.39-rc2/include/sound/tea575x-tuner.h 2011-05-12 21:00:50.

Re: [GIT PATCHES FOR 2.6.39] Fix subdev control enumeration

2011-05-12 Thread Hans Verkuil
Hi Mauro, I haven't seen this fix appearing upstream, did it slip through the cracks? Regards, Hans On Monday, May 02, 2011 13:19:03 Hans Verkuil wrote: > Hi Mauro, > > This fix is for 2.6.39. Control enumeration for subdev device nodes is > broken. > The fix is simple and has been t

digital tuner

2011-05-12 Thread James
I have an analog: Hauppauge WinTV-Go PLUS which has a lineout. I'm considering a digital card. The Hauppauge WinTV-HVR-1250 does NOT have a lineout so how does it do sound? Does PCIe pass through the sound to the OS sound system? I read on the linuxtv wiki that only the digital works on this card

[cron job] v4l-dvb daily build: ERRORS

2011-05-12 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:Thu May 12 19:02:02 CEST 2011 git hash:f9b51477fe540fb4c65a05027fdd6f2ecce4db3b gcc version: i686-linux-gcc (GCC) 4.5

Re: Help needed: Anysee E30C Plus (DVB-C Tuner)

2011-05-12 Thread Antti Palosaari
Thanks for the report. I have now following matrix: not working: OpenSuSE 11.4 Kernel 2.6.37 Ubuntu 11.4 Kernel 2.6.38 working: Fedora 14 Kernel 2.6.35 regards Antti On 05/12/2011 05:35 PM, Per Kofod wrote: Thanks, that worked. Actually I am not running ubuntu on this PC; but OpenSuSE 11.4; b

RE: Audio Video synchronization for data received from a HDMI receiver chip

2011-05-12 Thread Charlie X. Liu
Which HDMI receiver chip? -Original Message- From: linux-media-ow...@vger.kernel.org [mailto:linux-media-ow...@vger.kernel.org] On Behalf Of Bhupesh SHARMA Sent: Wednesday, May 11, 2011 10:49 PM To: linux-media@vger.kernel.org Cc: Laurent Pinchart; Guennadi Liakhovetski; Hans Verkuil Subje

Re: [GIT PATCH FOR 2.6.40] uvcvideo patches

2011-05-12 Thread Laurent Pinchart
Hi Mauro, On Thursday 12 May 2011 17:30:36 Laurent Pinchart wrote: > Hi Mauro, > > The following changes since commit > f9b51477fe540fb4c65a05027fdd6f2ecce4db3b: > > [media] DVB: return meaningful error codes in dvb_frontend (2011-05-09 > 05:47:20 +0200) > > are available in the git repositor

[GIT PATCH FOR 2.6.40] uvcvideo patches

2011-05-12 Thread Laurent Pinchart
Hi Mauro, The following changes since commit f9b51477fe540fb4c65a05027fdd6f2ecce4db3b: [media] DVB: return meaningful error codes in dvb_frontend (2011-05-09 05:47:20 +0200) are available in the git repository at: git://linuxtv.org/pinchartl/uvcvideo.git uvcvideo-next Bob Liu (2): Re

Re: Help needed: Anysee E30C Plus (DVB-C Tuner)

2011-05-12 Thread Per Kofod
Thanks, that worked. Actually I am not running ubuntu on this PC; but OpenSuSE 11.4; but I was planninh using Mythbuntu far my media center. Thanks a lot. Cheers Per On 05/12/2011 04:08 PM, Antti Palosaari wrote: On 05/12/2011 04:27 PM, Per Kofod wrote: Hi I am new to this mailing list, so

Re: Bug in HVR1300. Found part of a patch, if reverted

2011-05-12 Thread Mike
Hi there in the latest kernel (and all those since when the patch was written) this patch is still required for the HVR-1300 to work, any chance of it getting incorporated? thanks Mike > Hi list, > > there seems to be a bug in cx88 (HVR1300) that is responsible for not > switching channels,

Re: Help needed: Anysee E30C Plus (DVB-C Tuner)

2011-05-12 Thread Antti Palosaari
On 05/12/2011 04:27 PM, Per Kofod wrote: Hi I am new to this mailing list, so bare with me if this have been asked before. I have just bought an Anysee E30C Plus, as I had read, that this device is supported in Linux, my plan is building a Mythtv media center, to replace my old harddisk recorde

[PATCH] ngene: blocking and nonblocking io for sec0

2011-05-12 Thread Issa Gorissen
Patch allows for blocking or nonblocking io on the ngene sec0 device. It also enforces one reader and one writer at a time. Signed-off-by: Issa Gorissen -- --- a/linux/drivers/media/dvb/ngene/ngene-dvb.c 2011-05-10 19:11:21.0 +0200 +++ b/linux/drivers/media/dvb/ngene/ngene-dvb.c 2011-05

Help needed: Anysee E30C Plus (DVB-C Tuner)

2011-05-12 Thread Per Kofod
Hi I am new to this mailing list, so bare with me if this have been asked before. I have just bought an Anysee E30C Plus, as I had read, that this device is supported in Linux, my plan is building a Mythtv media center, to replace my old harddisk recorder. However I cannot get it to work,

Re: IR remote control autorepeat / evdev

2011-05-12 Thread Jarod Wilson
Peter Hutterer wrote: On Thu, May 12, 2011 at 03:36:47AM +0200, Mauro Carvalho Chehab wrote: Em 12-05-2011 03:10, Mauro Carvalho Chehab escreveu: Em 12-05-2011 02:37, Anssi Hannula escreveu: I don't see any other places: $ git grep 'REP_PERIOD' . dvb/dvb-usb/dvb-usb-remote.c: input_dev->rep[

Re: TT-budget S2-3200 cannot tune on HB13E DVBS2 transponder

2011-05-12 Thread Issa Gorissen
On 04/05/2011 13:27, Lutz Sammer wrote: > On 05/04/11 01:16, Mauro Carvalho Chehab wrote: >> Em 13-04-2011 21:05, Lutz Sammer escreveu: On 05/04/11 21:07, Steffen Barszus wrote: > On Tue, 05 Apr 2011 13:00:14 +0200 > "Issa Gorissen" wrote: > >> Hi, >> >> Eutelsat made

Re: [PATCH] [media] at91: add Atmel Image Sensor Interface (ISI) support

2011-05-12 Thread Guennadi Liakhovetski
On Thu, 12 May 2011, Jean-Christophe PLAGNIOL-VILLARD wrote: [snip] > > + if (0 == *nbuffers) > please invert the test Don't think this is required by CodingStyle or anything like that. If it were, you'd have to revamp half of the kernel. Thanks Guennadi --- Guennadi Liakhovetski, Ph.D. Free

Re: [PATCH] [media] at91: add Atmel Image Sensor Interface (ISI) support

2011-05-12 Thread Jean-Christophe PLAGNIOL-VILLARD
> +struct atmel_isi; do we really this here? > + > +enum atmel_isi_pixfmt { > + ATMEL_ISI_PIXFMT_GREY, /* Greyscale */ > + ATMEL_ISI_PIXFMT_CbYCrY, > + ATMEL_ISI_PIXFMT_CrYCbY, > + ATMEL_ISI_PIXFMT_YCbYCr, > + ATMEL_ISI_PIXFMT_YCrYCb, > + ATMEL_ISI_PIXFMT_RGB24, > +

Re: ngene CI problems

2011-05-12 Thread Issa Gorissen
On 11/05/2011 20:59, Oliver Endriss wrote: > I reworked the driver to strip those null packets. Please try > http://linuxtv.org/hg/~endriss/ngene-octopus-test/raw-rev/f0dc4237ad08 > > CU > Oliver Great! Will give it a try tonight and report. Thx, -- Issa -- To unsubscribe from this list: send the

Re: dvb-core/dvb_frontend.c: Synchronizing legacy and new tuning API

2011-05-12 Thread Bjørn Mork
HoP writes: > 2011/5/12 Bjørn Mork : >> Andreas Oberritter writes: >> >>> Please try the patches submitted for testing: >>> >>> http://www.mail-archive.com/linux-media@vger.kernel.org/msg31194.html >> >> Ah, great! Thanks.  Nothing better than a problem already solved. > > Not solved. Andreas did

Re: [linux-dvb] TeVii S470 (cx23885 / ds3000) makes the machine unstable

2011-05-12 Thread Andrew Junev
Monday, May 9, 2011, 7:39:09 PM, you wrote: > I still have this very annoying issue. I see no obvious reason, but > my DVB-S card just stops locking the signal, I get really a lot of > these errors in my syslog: > May 9 19:04:33 localhost kernel: ds3000_readreg: reg=0xd(error=-5) > May 9 19:04:

RE: [PATCH] [media] at91: add Atmel Image Sensor Interface (ISI)support

2011-05-12 Thread Wu, Josh
From: Guennadi Liakhovetski [mailto:g.liakhovet...@gmx.de] Sent: Thursday, May 12, 2011 5:32 PM > On Thu, 12 May 2011, Wu, Josh wrote: >> Hi, Russell >> >> From: Russell King - ARM Linux [mailto:li...@arm.linux.org.uk] Sent: >> Thursday, May 12, 2011 3:47 PM >> > On Thu, May 12, 2011 at 03:42:1

Re: [PATCH] [media] at91: add Atmel Image Sensor Interface (ISI) support

2011-05-12 Thread Russell King - ARM Linux
On Thu, May 12, 2011 at 03:42:18PM +0800, Josh Wu wrote: > This patch is to enable Atmel Image Sensor Interface (ISI) driver support. > - Using soc-camera framework with videobuf2 dma-contig allocator > - Supporting video streaming of YUV packed format > - Tested on AT91SAM9M10G45-EK with OV2640

RE: [PATCH] [media] at91: add Atmel Image Sensor Interface (ISI)support

2011-05-12 Thread Guennadi Liakhovetski
On Thu, 12 May 2011, Wu, Josh wrote: > Hi, Russell > > From: Russell King - ARM Linux [mailto:li...@arm.linux.org.uk] Sent: > Thursday, May 12, 2011 3:47 PM > > On Thu, May 12, 2011 at 03:42:18PM +0800, Josh Wu wrote: > >> +err_alloc_isi: > >> + clk_disable(pclk); > > clk_put() ? > Ok, will be

RE: [PATCH] [media] at91: add Atmel Image Sensor Interface (ISI)support

2011-05-12 Thread Wu, Josh
Hi, Russell From: Russell King - ARM Linux [mailto:li...@arm.linux.org.uk] Sent: Thursday, May 12, 2011 3:47 PM > On Thu, May 12, 2011 at 03:42:18PM +0800, Josh Wu wrote: >> +err_alloc_isi: >> +clk_disable(pclk); > clk_put() ? Ok, will be fixed in V2 patch. Thanks. Best Regards, Josh Wu -- T

Re: Problems of Pinnacle PCTV Hybrid pro stick in linux

2011-05-12 Thread a baffian
Hello all Is there anyone could find the source of problems described below? http://daftar.minidns.net/pctv/problem.html On Mon, May 9, 2011 at 3:08 PM, a baffian wrote: > Hello all, > > Can anyone help to solve the problems of linux driver of "Pinnacle > PCTV Hybrid pro stick" ? > It is an em28x

Re: [PATCH] [media] at91: add Atmel Image Sensor Interface (ISI) support

2011-05-12 Thread Russell King - ARM Linux
On Thu, May 12, 2011 at 03:42:18PM +0800, Josh Wu wrote: > +err_alloc_isi: > + clk_disable(pclk); clk_put() ? -- To unsubscribe from this list: send the line "unsubscribe linux-media" in the body of a message to majord...@vger.kernel.org More majordomo info at http://vger.kernel.org/majordomo

[PATCH] [media] at91: add Atmel Image Sensor Interface (ISI) support

2011-05-12 Thread Josh Wu
This patch is to enable Atmel Image Sensor Interface (ISI) driver support. - Using soc-camera framework with videobuf2 dma-contig allocator - Supporting video streaming of YUV packed format - Tested on AT91SAM9M10G45-EK with OV2640 Signed-off-by: Josh Wu --- base on branch staging/for_v2.6.40

Re: dvb-core/dvb_frontend.c: Synchronizing legacy and new tuning API

2011-05-12 Thread HoP
2011/5/12 Bjørn Mork : > Andreas Oberritter writes: > >> Please try the patches submitted for testing: >> >> http://www.mail-archive.com/linux-media@vger.kernel.org/msg31194.html > > Ah, great! Thanks.  Nothing better than a problem already solved. Not solved. Andreas did an attempt to solve it (

Re: dvb-core/dvb_frontend.c: Synchronizing legacy and new tuning API

2011-05-12 Thread Bjørn Mork
Andreas Oberritter writes: > Please try the patches submitted for testing: > > http://www.mail-archive.com/linux-media@vger.kernel.org/msg31194.html Ah, great! Thanks. Nothing better than a problem already solved. Bjørn -- To unsubscribe from this list: send the line "unsubscribe linux-media