Re: [PATCH/RFT 0/7] HDMI capture on Lager

2015-10-27 Thread Ulrich Hecht
On Mon, Oct 19, 2015 at 4:54 PM, Hans Verkuil wrote: > On 10/19/2015 04:07 PM, Ulrich Hecht wrote: >> This series is supposed to serve as a basis for testing the HDMI input on >> the Lager board. It is based on the series by William Towle, dropping the >> patches that have

Re: [RFC PATCH 00/26] i.MX5/6 IPUv3 CSI/IC

2015-10-27 Thread Fabio Estevam
Hi Philipp, On Thu, Jun 12, 2014 at 2:06 PM, Philipp Zabel wrote: > Hi, > > attached is a series of our work in progress i.MX6 capture drivers. > I'm posting this now in reaction to Steve's i.MX6 Video capture series, > as a reference for further discussion. > Of the

[PATCH] usbvision fix overflow of interfaces array

2015-10-27 Thread Oliver Neukum
This fixes the crash reported in: http://seclists.org/bugtraq/2015/Oct/35 The interface number needs a sanity check. Signed-off-by: Oliver Neukum --- drivers/media/usb/usbvision/usbvision-video.c | 7 +++ 1 file changed, 7 insertions(+) diff --git

Dear Beloved

2015-10-27 Thread Mrs.Deborah Paul
Beloved I am Mrs.Deborah Paul an aging widow suffering from long time illness. I have some funds I inherited from my late husband, the sum of 8.2 Million Pounds that will use the fund for God's work, reply me at(mrs.deborah_p...@yahoo.com.hk ) if u want to work for the Lord. Mrs.Deborah Paul --

[PATCH] [media] em28xx: add Terratec Cinergy T XS (MT2060)

2015-10-27 Thread Alberto Mardegan
The Terratec Cinergy T XS is a DVB-T receiver with no analog TV tuner. This patch adds support for the cards carrying the mt2060 tuner; it's unclear whether there are cards sold under the same name which use a different tuner. As long as there are no reports of such cards, and indeed as long as

Re: [PATCH v5 1/4] media: pxa_camera: fix the buffer free path

2015-10-27 Thread Guennadi Liakhovetski
Hi Robert, Didn't you tell me, that your dmaengine patch got rejected and therefore these your patches were on hold? Thanks Guennadi On Sat, 24 Oct 2015, Robert Jarzmik wrote: > Robert Jarzmik writes: > > > Fix the error path where the video buffer wasn't allocated

Re: PCIe capture driver

2015-10-27 Thread Hans Verkuil
On 10/27/2015 22:56, Ran Shalit wrote: > On Tue, Oct 27, 2015 at 12:21 AM, Hans Verkuil wrote: >> >> >> On 10/27/2015 02:04, Ran Shalit wrote: >>> On Mon, Oct 26, 2015 at 1:46 PM, Steven Toth wrote: > No, use V4L2. What you do with the frame after

Re: [PATCH v5 1/4] media: pxa_camera: fix the buffer free path

2015-10-27 Thread Robert Jarzmik
Guennadi Liakhovetski writes: > Hi Robert, > > Didn't you tell me, that your dmaengine patch got rejected and therefore > these your patches were on hold? They were reverted, and then revamped into DMA_CTRL_REUSE, upstreamed and merged, as in the commit 272420214d26

Re: [PATCH 01/19] media: Enforce single entity->pipe in a pipeline

2015-10-27 Thread Mauro Carvalho Chehab
Em Tue, 27 Oct 2015 01:01:32 +0200 Sakari Ailus escreveu: > If a different entity->pipe in a pipeline was encountered, a warning was > issued but the execution continued as if nothing had happened. Return an > error instead right there. > > Signed-off-by: Sakari Ailus

Re: [PATCH 15/19] v4l: vsp1: Use media entity enumeration API

2015-10-27 Thread Mauro Carvalho Chehab
Em Tue, 27 Oct 2015 01:01:46 +0200 Sakari Ailus escreveu: > From: Sakari Ailus Reviewed-by: Mauro Carvalho Chehab > > Signed-off-by: Sakari Ailus > --- >

Re: [PATCH 16/19] staging: omap4iss: Fix sub-device power management code

2015-10-27 Thread Mauro Carvalho Chehab
Em Tue, 27 Oct 2015 01:01:47 +0200 Sakari Ailus escreveu: > The same bug was present in the omap4iss driver as was in the omap3isp > driver. The code got copied to the omap4iss driver while broken. Fix the > omap4iss driver as well. Looks ok. > > Signed-off-by: Sakari

Re: [PATCH 05/19] media: Move media graph state for streamon/off to the pipeline

2015-10-27 Thread Mauro Carvalho Chehab
Em Tue, 27 Oct 2015 01:01:36 +0200 Sakari Ailus escreveu: > The struct media_entity_graph was allocated in the stack, limiting the > number of entities that could be reasonably allocated. Instead, move the > struct to struct media_pipeline which is typically allocated using

Re: [PATCH 12/19] media: Use entity enums in graph walk

2015-10-27 Thread Mauro Carvalho Chehab
Em Tue, 27 Oct 2015 01:01:43 +0200 Sakari Ailus escreveu: > This will also mean that the necessary graph related data structures will > be allocated dynamically, removing the need for maximum ID checks. > > Signed-off-by: Sakari Ailus

Re: [PATCH 14/19] v4l: omap3isp: Use media entity enumeration API

2015-10-27 Thread Mauro Carvalho Chehab
Em Tue, 27 Oct 2015 01:01:45 +0200 Sakari Ailus escreveu: > From: Sakari Ailus > > Signed-off-by: Sakari Ailus > --- > drivers/media/platform/omap3isp/isp.c | 21 + >

Re: [PATCH 02/19] media: Introduce internal index for media entities

2015-10-27 Thread Mauro Carvalho Chehab
Em Tue, 27 Oct 2015 01:01:33 +0200 Sakari Ailus escreveu: > From: Sakari Ailus > > The internal index can be used internally by the framework in order to keep > track of entities for a purpose or another. The internal index is constant > while

Re: [PATCH 04/19] media: Move struct media_entity_graph definition up

2015-10-27 Thread Mauro Carvalho Chehab
Em Tue, 27 Oct 2015 01:01:35 +0200 Sakari Ailus escreveu: > It will be needed in struct media_pipeline shortly. > > Signed-off-by: Sakari Ailus Reviewed-by: Mauro Carvalho Chehab (but see below) > --- >

Re: [PATCH 07/19] media: Use the new media_entity_graph_walk_start()

2015-10-27 Thread Mauro Carvalho Chehab
Em Tue, 27 Oct 2015 01:01:38 +0200 Sakari Ailus escreveu: > Signed-off-by: Sakari Ailus Please add some documentation at the body for all patches. Btw, IMHO, it would be best to fold this patch and the following ones that are related to

Re: [PATCH 13/19] media: Keep using the same graph walk object for a given pipeline

2015-10-27 Thread Mauro Carvalho Chehab
Em Tue, 27 Oct 2015 01:01:44 +0200 Sakari Ailus escreveu: > Initialise a given graph walk object once, and then keep using it whilst > the same pipeline is running. Once the pipeline is stopped, release the > graph walk object. Reviewed-by: Mauro Carvalho Chehab

Re: [PATCH 17/19] staging: v4l: omap4iss: Use media entity enum API

2015-10-27 Thread Mauro Carvalho Chehab
Em Tue, 27 Oct 2015 01:01:48 +0200 Sakari Ailus escreveu: > From: Sakari Ailus > > Signed-off-by: Sakari Ailus Where are the comments? > --- > drivers/staging/media/omap4iss/iss.c | 15 +++ >

Re: [PATCH 03/19] media: Add an API to manage entity enumerations

2015-10-27 Thread Mauro Carvalho Chehab
Em Tue, 27 Oct 2015 01:01:34 +0200 Sakari Ailus escreveu: > From: Sakari Ailus > > This is useful in e.g. knowing whether certain operations have already > been performed for an entity. The users include the framework itself (for > graph

Re: [PATCH 18/19] staging: v4l: omap4iss: Use the new media_entity_graph_walk_start() interface

2015-10-27 Thread Mauro Carvalho Chehab
Em Tue, 27 Oct 2015 01:01:49 +0200 Sakari Ailus escreveu: > Signed-off-by: Sakari Ailus Comments? > --- > drivers/staging/media/omap4iss/iss.c | 59 > +++--- > drivers/staging/media/omap4iss/iss.h | 4 +-

cron job: media_tree daily build: OK

2015-10-27 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: Wed Oct 28 04:00:15 CET 2015 git branch: test git hash: 79f5b6ae960d380c829fb67d5dadcd1d025d2775 gcc

Re: [PATCH 19/19] media: Rename MEDIA_ENTITY_ENUM_MAX_ID as MEDIA_ENTITY_ENUM_STACK_ALLOC

2015-10-27 Thread Mauro Carvalho Chehab
Em Tue, 27 Oct 2015 01:01:50 +0200 Sakari Ailus escreveu: > The purpose of the macro has changed, rename it accordingly. It is not and > should no longer be used in drivers directly, but only for the purpose for > defining how many bits can be allocated from the stack for

Re: [PATCH 06/19] media: Amend media graph walk API by init and cleanup functions

2015-10-27 Thread Mauro Carvalho Chehab
Em Tue, 27 Oct 2015 01:01:37 +0200 Sakari Ailus escreveu: > Add media_entity_graph_walk_init() and media_entity_graph_walk_cleanup() > functions in order to dynamically allocate memory for the graph. This is > not done in media_entity_graph_walk_start() as there are