[PATCH] [media] s5p-mfc: call wake_up_dev if in suspend mode

2013-10-03 Thread Arun Kumar K
From: Prathyush K If a frame is still decoding when system enters suspend mode, we wait on the device queue for a interrupt condition. This sometimes leads to a timeout because the device queue might not be woken up everytime. Usually, the context queue gets woken up when that context's frame get

[PATCH] [media] s5p-mfc: Adjust the default values of some encoder params

2013-10-03 Thread Arun Kumar K
The patch sets the default values of MAX_QP and GOP size encoder parameters to some firmware recommended default values. This enables the applications to get a better encoded output using the default settings itself. Signed-off-by: Kiran AVND Signed-off-by: Arun Kumar K --- drivers/media/platfo

cron job: media_tree daily build: ERRORS

2013-10-03 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 4 04:00:23 CEST 2013 git branch: test git hash: d10e8280c4c2513d3e7350c27d8e6f0fa03a5f71 gcc versi

[PATCH] v4l2-fh: Include linux/videodev2.h for enum v4l2_priority definition

2013-10-03 Thread Laurent Pinchart
struct v4l2_fh has an enum v4l2_priority field. Make sure the enum definition is available by including linux/videodev2.h. Signed-off-by: Laurent Pinchart --- include/media/v4l2-fh.h | 1 + 1 file changed, 1 insertion(+) diff --git a/include/media/v4l2-fh.h b/include/media/v4l2-fh.h index 0d922

[PATCH] v4l2-fh: Include linux/fs.h for struct file definition

2013-10-03 Thread Laurent Pinchart
v4l2-fh.h dereferences struct file, the structure must thus be defined. Pull in its definition by including linux/fs.h. Signed-off-by: Laurent Pinchart --- include/media/v4l2-fh.h | 1 + 1 file changed, 1 insertion(+) diff --git a/include/media/v4l2-fh.h b/include/media/v4l2-fh.h index a62ee18.

Re: [PATCH] v4l2-fh: Add forward declaration for struct file

2013-10-03 Thread Laurent Pinchart
On Thursday 03 October 2013 23:48:56 Laurent Pinchart wrote: > Pointers to struct file are used as function arguments, but the > structure isn't declared. Add a forward declaration. Scratch this, I've sent the patch too soon. struct file is dereferenced in v4l2-fh.h, it does need to be properly d

[PATCH] v4l2-fh: Add forward declaration for struct file

2013-10-03 Thread Laurent Pinchart
Pointers to struct file are used as function arguments, but the structure isn't declared. Add a forward declaration. Signed-off-by: Laurent Pinchart --- include/media/v4l2-fh.h | 1 + 1 file changed, 1 insertion(+) diff --git a/include/media/v4l2-fh.h b/include/media/v4l2-fh.h index a62ee18..76

Re: [PATCH 0/8] i2c: Remove redundant driver field from the i2c_client struct

2013-10-03 Thread Wolfram Sang
On Sun, Sep 29, 2013 at 10:50:58AM +0200, Lars-Peter Clausen wrote: > Hi, > > This series removes the redundant driver field from the i2c_client struct. The > field is redundant since the same pointer can be accessed through > to_i2c_driver(client->dev.driver). The commit log suggests that the fie

looking for loan

2013-10-03 Thread Aijaz Lending
Do you have a firm or company that need loan to start up a business or need,personal loan, Debt consolidation? For more information,Contact us now for a guarantee loan with low interest rate. We will provide you with loan to meet your needs. For more information contact us with the following inf

Re: [PATCH v2 1/4] media: Add pad flag MEDIA_PAD_FL_MUST_CONNECT

2013-10-03 Thread Sylwester Nawrocki
Hi, On 10/03/2013 11:40 AM, Laurent Pinchart wrote: Documentation/DocBook/media/v4l/media-ioc-enum-links.xml | 10 ++ > > >>include/uapi/linux/media.h |1 + > > >>2 files changed, 11 insertions(+) > > >> > > >> diff --git a/Documentation/Doc

Suspected cache coherency problem on V4L2 and AR7100 CPU

2013-10-03 Thread Krzysztof HaƂasa
Hi, I'm debugging a problem with a SOLO6110-based H.264 PCI video encoder on Atheros AR7100-based (MIPS, big-endian) platform. The problem manifests itself with stale data being returned by the driver (using ioctl VIDIOC_DQBUF). The stale date always starts and ends on 32-byte cache line boundary

[GIT PULL] Adding support for the cx24117 frontend with tbs6980 or tbs6981

2013-10-03 Thread Michael Krufky
The following changes since commit ed94e614c82b4d41d92c82052e915d99614d8b5c: dib9000: fix typo in spelling the word empty (2013-09-30 12:24:48 -0400) are available in the git repository at: git://linuxtv.org/mkrufky/dvb cx24117 for you to fetch changes up to 5dfa5d28c8e636ddb6468defc7e5e7

[GIT PULL] dvb-usb: fix error handling in ttusb_dec_probe()

2013-10-03 Thread Michael Krufky
The following changes since commit b4559ace2ca8c88666584279f582b998c6591fb0: [media] ts2020: keep 1.06 MHz as default value for frequency_div (2013-10-02 06:48:15 -0300) are available in the git repository at: git://linuxtv.org/mkrufky/dvb ttusb for you to fetch changes up to 6f0be418ace3

Re: [RFC v2 4/4] v4l: events: Don't sleep in dequeue if none are subscribed

2013-10-03 Thread Hans Verkuil
On 10/02/13 16:49, Sakari Ailus wrote: > Hans Verkuil wrote: > ... > +if (!subscribed) { > +ret = -EIO; Shouldn't this be -ENOENT? >>> >>> If I use -ENOENT, having no events subscribed is indistinguishable >>> form no events pending condition. Combine that with

Re: [PATCH v2 1/4] media: Add pad flag MEDIA_PAD_FL_MUST_CONNECT

2013-10-03 Thread Laurent Pinchart
On Thursday 03 October 2013 11:43:01 Sakari Ailus wrote: > On Thu, Oct 03, 2013 at 11:16:59AM +0900, Sylwester Nawrocki wrote: > > On 10/03/2013 08:29 AM, Laurent Pinchart wrote: > > > On Thursday 03 October 2013 02:17:50 Sakari Ailus wrote: > > >> Pads that set this flag must be connected by an ac

Re: [RFC v2 4/4] v4l: events: Don't sleep in dequeue if none are subscribed

2013-10-03 Thread Hans Verkuil
On 10/02/13 16:45, Sakari Ailus wrote: > Hi Hans, > > Hans Verkuil wrote: >> On 10/02/13 16:18, Sakari Ailus wrote: >>> Hi Hans, >>> >>> Thanks for the comments! >>> >>> Hans Verkuil wrote: On 10/02/13 15:45, Sakari Ailus wrote: > Dequeueing events was is entirely possible even if none ar

Re: [PATCH 0/6] OMAP4 ISS driver

2013-10-03 Thread Laurent Pinchart
Hi Hans, On Thursday 03 October 2013 09:00:07 Hans Verkuil wrote: > On 10/03/2013 01:55 AM, Laurent Pinchart wrote: > > Hello, > > > > The OMAP4 ISS driver has lived out of tree for more than two years now. > > This situation is both sad and resource-wasting, as the driver has been > > used (and

Re: [PATCH v2 1/4] media: Add pad flag MEDIA_PAD_FL_MUST_CONNECT

2013-10-03 Thread Sakari Ailus
Hi Sylwester, On Thu, Oct 03, 2013 at 11:16:59AM +0900, Sylwester Nawrocki wrote: > Hi Sakari, > > On 10/03/2013 08:29 AM, Laurent Pinchart wrote: > > Hi Sakari, > > > > Thank you for the patch. > > > > On Thursday 03 October 2013 02:17:50 Sakari Ailus wrote: > >> Pads that set this flag must b

Re: [PATCH 0/6] OMAP4 ISS driver

2013-10-03 Thread Hans Verkuil
Hi Laurent, On 10/03/2013 01:55 AM, Laurent Pinchart wrote: > Hello, > > The OMAP4 ISS driver has lived out of tree for more than two years now. This > situation is both sad and resource-wasting, as the driver has been used (and > thus) hacked since then with nowhere to send patches to. Time has