Filtering DSMCC streams with dib0700/dib8000 Prolink PixelView SBTVD HD

2011-10-07 Thread Felipe Magno de Almeida
Hi, I'm not sure this is the right place to ask, but since I haven't found anywhere else to ask I'm trying here. I'm in Brazil, where we use ISDB-Tb standard derived from ISDB-T and I'm using Prolink PixelView SBTVD HD. A USB adapter. It uses dvb-usb-dib0700 driver. I'm parsing PAT, PMT and NIT

Re: [PATCH] af9013 Extended monitoring in set_frontend.

2011-10-07 Thread Jason Hecker
> Try this patch, it should stop start up corruption on the same frontend. Thanks. I'll try it today. Have you been able to reproduce any of the corruption issues I and others are having? I noticed last night some recordings on the same card had different levels of corruption depending on the o

[PATCH] af9013 Extended monitoring in set_frontend.

2011-10-07 Thread Malcolm Priestley
Try this patch, it should stop start up corruption on the same frontend. It is a missing section of code that checks the frontend is ready to go. However, it will not stop corruptions on frontend A. af9013 Extended monitoring in set_front. --- drivers/media/dvb/frontends/af9013.c | 16 ++

Re: [PATCH v3] stb0899: Fix slow and not locking DVB-S transponder(s)

2011-10-07 Thread Lutz Sammer
On 10/07/11 20:20, Manu Abraham wrote: On Fri, Oct 7, 2011 at 10:31 PM, Lutz Sammer wrote: On 10/06/11 20:56, Manu Abraham wrote: Mauro, comments in-line. On Sat, Oct 1, 2011 at 12:28 AM, Mauro Carvalho Chehab wrote: Em 30-09-2011 15:41, Lutz Sammer escreveu: On 09/30/11 19:07, Maur

Re: [PATCH v2] stb0899: Fix slow and not locking DVB-S transponder(s)

2011-10-07 Thread Manu Abraham
On Fri, Oct 7, 2011 at 10:31 PM, Lutz Sammer wrote: > On 10/06/11 20:56, Manu Abraham wrote: >> >> Mauro, >> >> comments in-line. >> >> On Sat, Oct 1, 2011 at 12:28 AM, Mauro Carvalho Chehab >>  wrote: >>> >>> Em 30-09-2011 15:41, Lutz Sammer escreveu: On 09/30/11 19:07, Mauro Carvalho

Re: [RFC] Merge v4l-utils. dvb-apps and mediactl to media-utils.git

2011-10-07 Thread Manu Abraham
On Thu, Oct 6, 2011 at 5:53 PM, Hans Verkuil wrote: > Currently we have three repositories containing libraries and utilities that > are relevant to the media drivers: > > dvb-apps (http://linuxtv.org/hg/dvb-apps/) > v4l-utils (http://git.linuxtv.org/v4l-utils.git) > media-ctl (git://git.ideasonbo

cron job: media_tree daily build: WARNINGS

2011-10-07 Thread Hans Verkuil
This message is generated daily by a cron job that builds media_tree for the kernels and architectures in the list below. Results of the daily build of media_tree: date:Fri Oct 7 19:00:18 CEST 2011 git hash:2f4cf2c3a971c4d5154def8ef9ce4811d702852d gcc version: i686-linux-gcc (GC

Re: [PATCH v2] stb0899: Fix slow and not locking DVB-S transponder(s)

2011-10-07 Thread Lutz Sammer
On 10/06/11 20:56, Manu Abraham wrote: Mauro, comments in-line. On Sat, Oct 1, 2011 at 12:28 AM, Mauro Carvalho Chehab wrote: Em 30-09-2011 15:41, Lutz Sammer escreveu: On 09/30/11 19:07, Mauro Carvalho Chehab wrote: Em 29-09-2011 18:22, Lutz Sammer escreveu: Another version of http://pat

Re: [PATCHv16 0/9] Contiguous Memory Allocator

2011-10-07 Thread Arnd Bergmann
On Thursday 06 October 2011, Marek Szyprowski wrote: > Once again I decided to post an updated version of the Contiguous Memory > Allocator patches. > > This version provides mainly a bugfix for a very rare issue that might > have changed migration type of the CMA page blocks resulting in dropping

[media-ctl PATCH 2/7] Move link parsing from main.c to media.c, making it part of libmediactl

2011-10-07 Thread Sakari Ailus
This makes it possible to benefit from the link parsing code anywhere the library is being used. dprintf macro will later be replaced with proper debug support. Also fix a case where -1 was returned on error and the user was expected to check the value of errno. Negative error codes are now retur

[media-ctl PATCH 6/7] Add debugging handler

2011-10-07 Thread Sakari Ailus
Add debugging handler to media_device that may be used to redirect all debug formatting to user-supplied function. fprintf will do, and that's what media-ctl test program will use. Signed-off-by: Sakari Ailus --- src/main.c |3 +- src/mediactl.c | 105 +++

[media-ctl PATCH 5/7] Add link to media_device from the media_entity

2011-10-07 Thread Sakari Ailus
This makes it possible to obtain the media device an entity belongs to. Signed-off-by: Sakari Ailus --- src/mediactl.c |1 + src/mediactl.h |1 + 2 files changed, 2 insertions(+), 0 deletions(-) diff --git a/src/mediactl.c b/src/mediactl.c index a03c19a..8cc338d 100644 --- a/src/mediact

[media-ctl PATCH 7/7] Remove extra verbosity

2011-10-07 Thread Sakari Ailus
Remove extra verbosity by default; "-v" option brings back what used to be there. The error messages are now being printed by main.c with the possibly helpful error code attached. Signed-off-by: Sakari Ailus --- src/main.c | 48 ++-- src/mediactl

[media-ctl PATCH 4/7] libv4l2subdev and libmediactl are not test programs

2011-10-07 Thread Sakari Ailus
Call the libraries libraries rather than test programs. Signed-off-by: Sakari Ailus --- src/mediactl.c |2 +- src/mediactl.h |2 +- src/v4l2subdev.c |2 +- src/v4l2subdev.h |2 +- 4 files changed, 4 insertions(+), 4 deletions(-) diff --git a/src/mediactl.c b/src/mediactl.c i

[media-ctl PATCH 3/7] Move V4L2 subdev format parsing from main.c to subdev.c

2011-10-07 Thread Sakari Ailus
This makes format parsing a part of the libv4l2subdev and thus available on all who use the library. Signed-off-by: Sakari Ailus --- src/main.c | 340 +- src/v4l2subdev.c | 343 ++ src

[media-ctl PATCH 1/7] Rename files to match the names of the libraries

2011-10-07 Thread Sakari Ailus
Rename media.* to mediactl.* and subdev.* v4l2subdev.*. Signed-off-by: Sakari Ailus --- src/Makefile.am |6 +- src/main.c |4 +- src/media.c | 475 -- src/media.h | 161 -- src/mediactl.c | 475

[media-ctl PATCH 0/7] Move functionality to libraries, debug changes

2011-10-07 Thread Sakari Ailus
Hi, This patchset moves the string parsing functionality to libraries from the test program, making the libraries much more useful. Printing informative messages is also left to debug handler; the libraries won't print anything anymore. Error messages are also printed by media-ctl. Regards, --

Re: tvtime at linuxtv.org

2011-10-07 Thread Mauro Carvalho Chehab
Em 07-10-2011 10:38, Devin Heitmueller escreveu: On Thu, Oct 6, 2011 at 9:59 PM, Mauro Carvalho Chehab wrote: Hi Devin, I had some discussions with Mikael today at the #linuxtv channel about tvtime. Mikael has write access to the tvtime site at sourceforge and he is doing some maintainance on

Bug in xawtv with libjpeg v8

2011-10-07 Thread Markus Königshaus
Using streamer from xawtv-3.102 segfaults with jpeg-output and libjpeg v8. Attached patch will resolve the problem. Regards, Markus -- Unsere Aussagen koennen Irrtuemer und Missverstaendnisse enthalten. Bitte pruefen Sie die Aussagen fuer Ihren Fall, bevor Sie Entscheidungen auf Grundlage dies

Re: [RFC] Merge v4l-utils. dvb-apps and mediactl to media-utils.git

2011-10-07 Thread Mauro Carvalho Chehab
Em 07-10-2011 10:05, Hans de Goede escreveu: Hi, On 10/07/2011 03:02 PM, Mauro Carvalho Chehab wrote: Em 07-10-2011 03:05, Hans Verkuil escreveu: On Friday, October 07, 2011 04:07:38 Mauro Carvalho Chehab wrote: Em 06-10-2011 14:24, Mauro Carvalho Chehab escreveu: Em 06-10-2011 10:27, Mauro

Re: tvtime at linuxtv.org

2011-10-07 Thread Devin Heitmueller
On Thu, Oct 6, 2011 at 9:59 PM, Mauro Carvalho Chehab wrote: > Hi Devin, > > I had some discussions with Mikael today at the #linuxtv channel about > tvtime. Mikael has write access to the tvtime site at sourceforge and he > is doing some maintainance on it for some time, and worked on some bugs >

[patch] Staging: cx25821: off by on in cx25821_vidioc_s_input()

2011-10-07 Thread Dan Carpenter
If "i" is 2 then when we call cx25821_video_mux() we'd end up going past the end of the cx25821_boards[dev->board]->input[]. The INPUT() macro obfuscates what's going on in that function so it's a bit hard to follow. Signed-off-by: Dan Carpenter --- I don't have this hardware, so I can't actuall

Re: [RFC] Merge v4l-utils. dvb-apps and mediactl to media-utils.git

2011-10-07 Thread Hans de Goede
Hi, On 10/07/2011 03:02 PM, Mauro Carvalho Chehab wrote: Em 07-10-2011 03:05, Hans Verkuil escreveu: On Friday, October 07, 2011 04:07:38 Mauro Carvalho Chehab wrote: Em 06-10-2011 14:24, Mauro Carvalho Chehab escreveu: Em 06-10-2011 10:27, Mauro Carvalho Chehab escreveu: Em 06-10-2011 09:23

Re: [RFC] Merge v4l-utils. dvb-apps and mediactl to media-utils.git

2011-10-07 Thread Mauro Carvalho Chehab
Em 07-10-2011 03:05, Hans Verkuil escreveu: > On Friday, October 07, 2011 04:07:38 Mauro Carvalho Chehab wrote: >> Em 06-10-2011 14:24, Mauro Carvalho Chehab escreveu: >>> Em 06-10-2011 10:27, Mauro Carvalho Chehab escreveu: Em 06-10-2011 09:23, Hans Verkuil escreveu: > Currently we have t

Re: libv4l2 misbehavior after calling S_STD or S_DV_PRESET

2011-10-07 Thread Hans de Goede
Hi, On 10/07/2011 11:06 AM, Hans Verkuil wrote: On Friday 07 October 2011 09:57:42 Hans de Goede wrote: Hi, Hmm, nasty... On 10/06/2011 01:13 PM, Hans Verkuil wrote: Hi Hans! I've been looking into a problem with libv4l2 that occurs when you change TV standard or video preset using VIDIOC_S

Re: [RFC] Merge v4l-utils. dvb-apps and mediactl to media-utils.git

2011-10-07 Thread Mauro Carvalho Chehab
Em 07-10-2011 03:05, Hans Verkuil escreveu: On Friday, October 07, 2011 04:07:38 Mauro Carvalho Chehab wrote: Em 06-10-2011 14:24, Mauro Carvalho Chehab escreveu: Em 06-10-2011 10:27, Mauro Carvalho Chehab escreveu: Em 06-10-2011 09:23, Hans Verkuil escreveu: Currently we have three repositor

Re: omap3-isp status

2011-10-07 Thread Javier Martinez Canillas
On Fri, Oct 7, 2011 at 1:39 PM, Gary Thomas wrote: > On 2011-10-07 05:02, Javier Martinez Canillas wrote: >> >> On Fri, Oct 7, 2011 at 12:36 PM, Enrico  wrote: >>> >>> On Fri, Oct 7, 2011 at 12:22 PM, Gary Thomas  wrote: Do we know for sure that these problems are happening in the ISP it

Re: omap3-isp status

2011-10-07 Thread Gary Thomas
On 2011-10-07 05:02, Javier Martinez Canillas wrote: On Fri, Oct 7, 2011 at 12:36 PM, Enrico wrote: On Fri, Oct 7, 2011 at 12:22 PM, Gary Thomas wrote: Do we know for sure that these problems are happening in the ISP itself or could they possibly be in the TVP5150? Does anyone have experienc

Re: omap3-isp status

2011-10-07 Thread Javier Martinez Canillas
On Fri, Oct 7, 2011 at 12:36 PM, Enrico wrote: > On Fri, Oct 7, 2011 at 12:22 PM, Gary Thomas wrote: >> Do we know for sure that these problems are happening in the ISP itself >> or could they possibly be in the TVP5150?  Does anyone have experience >> with a different analogue encoder? > > Never

Re: omap3-isp status

2011-10-07 Thread Enrico
On Fri, Oct 7, 2011 at 12:22 PM, Gary Thomas wrote: > Do we know for sure that these problems are happening in the ISP itself > or could they possibly be in the TVP5150?  Does anyone have experience > with a different analogue encoder? Never tried another encoder, but at this point it's something

Re: omap3-isp status

2011-10-07 Thread Gary Thomas
On 2011-10-07 04:08, Javier Martinez Canillas wrote: On Fri, Oct 7, 2011 at 11:34 AM, Gary Thomas wrote: On 2011-10-06 10:11, Javier Martinez Canillas wrote: On Thu, Oct 6, 2011 at 5:47 PM, Gary Thomaswrote: On 2011-10-06 08:50, Javier Martinez Canillas wrote: On Thu, Oct 6, 2011 at 4

Re: omap3-isp status

2011-10-07 Thread Javier Martinez Canillas
On Fri, Oct 7, 2011 at 11:34 AM, Gary Thomas wrote: > On 2011-10-06 10:11, Javier Martinez Canillas wrote: >> >> On Thu, Oct 6, 2011 at 5:47 PM, Gary Thomas  wrote: >>> >>> On 2011-10-06 08:50, Javier Martinez Canillas wrote: On Thu, Oct 6, 2011 at 4:29 PM, Javier Martinez Canillas

Re: omap3-isp status

2011-10-07 Thread Gary Thomas
On 2011-10-06 10:11, Javier Martinez Canillas wrote: On Thu, Oct 6, 2011 at 5:47 PM, Gary Thomas wrote: On 2011-10-06 08:50, Javier Martinez Canillas wrote: On Thu, Oct 6, 2011 at 4:29 PM, Javier Martinez Canillas wrote: On Thu, Oct 6, 2011 at 4:00 PM, Gary Thomaswrote: On 2011-10

Re: omap3-isp status

2011-10-07 Thread Javier Martinez Canillas
On Fri, Oct 7, 2011 at 10:54 AM, Enrico wrote: > On Thu, Oct 6, 2011 at 6:05 PM, Javier Martinez Canillas > wrote: >> On Thu, Oct 6, 2011 at 5:25 PM, Enrico wrote: >>> - i don't see Deepthy patches, it seems to be based on the >>> pre-Deepthy-patches driver and fixed (not that this is a bad thin

Re: libv4l2 misbehavior after calling S_STD or S_DV_PRESET

2011-10-07 Thread Hans Verkuil
On Friday 07 October 2011 09:57:42 Hans de Goede wrote: > Hi, > > Hmm, nasty... > > On 10/06/2011 01:13 PM, Hans Verkuil wrote: > > Hi Hans! > > > > I've been looking into a problem with libv4l2 that occurs when you change > > TV standard or video preset using VIDIOC_S_STD or VIDIOC_S_DV_PRESET.

Re: omap3-isp status

2011-10-07 Thread Enrico
On Thu, Oct 6, 2011 at 6:05 PM, Javier Martinez Canillas wrote: > On Thu, Oct 6, 2011 at 5:25 PM, Enrico wrote: >> - i don't see Deepthy patches, it seems to be based on the >> pre-Deepthy-patches driver and fixed (not that this is a bad thing!); >> i say this because, like Gary, i'm interested i

Re: [RFC] Merge v4l-utils. dvb-apps and mediactl to media-utils.git

2011-10-07 Thread Hans de Goede
Hi, On 10/06/2011 02:23 PM, Hans Verkuil wrote: Currently we have three repositories containing libraries and utilities that are relevant to the media drivers: dvb-apps (http://linuxtv.org/hg/dvb-apps/) v4l-utils (http://git.linuxtv.org/v4l-utils.git) media-ctl (git://git.ideasonboard.org/media

Re: libv4l2 misbehavior after calling S_STD or S_DV_PRESET

2011-10-07 Thread Hans de Goede
Hi, Hmm, nasty... On 10/06/2011 01:13 PM, Hans Verkuil wrote: Hi Hans! I've been looking into a problem with libv4l2 that occurs when you change TV standard or video preset using VIDIOC_S_STD or VIDIOC_S_DV_PRESET. These calls will change the format implicitly (e.g. if the current format is se