cron job: media_tree daily build: OK

2015-09-04 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: Sat Sep 5 04:00:24 CEST 2015 git branch: test git hash: 50ef28a6ac216fd8b796257a3768fef8f57b917d gcc versi

[GIT PULL for v4.3-rc1] media updates

2015-09-04 Thread Mauro Carvalho Chehab
Hi Linus, Please pull from: git://git.kernel.org/pub/scm/linux/kernel/git/mchehab/linux-media tags/media/v4.3-1 For the media subsystem patches for Kernel 4.3. This series contain: - New DVB frontend drivers: ascot2e, cxd2841er, horus3a, lnbh25; - New HDMI capture driver: tc358743; - New dri

Re: [PATCH v8 54/55] [media] au0828: unregister MC at the end

2015-09-04 Thread Mauro Carvalho Chehab
Em Mon, 31 Aug 2015 15:25:39 +0200 Hans Verkuil escreveu: > On 08/30/2015 05:07 AM, Mauro Carvalho Chehab wrote: > > au0828_analog_unregister() calls video_unregister_device(), > > with, in turn, calls media_devnode_remove() in order to drop > > the media interfaces. > > > > We can't release the

[PATCH 1/3] [media] staging: lirc: remove unnecessary braces

2015-09-04 Thread Maciek Borzecki
Remove unnecessary braces where appropriate. This removes the following checkpatch warnings: WARNING: braces {} are not necessary for single statement blocks Signed-off-by: Maciek Borzecki --- drivers/staging/media/lirc/lirc_imon.c | 8 1 file changed, 4 insertions(+), 4 deletions(-)

[PATCH 0/3] [media] staging: lirc: mostly checkpatch cleanups

2015-09-04 Thread Maciek Borzecki
A tiny patch series that addresses warnings or errors identified by checkpatch. The patches were first submitted to driver-devel sometime in June. While on driver-devel, Sudip Mukherjee helped to cleanup all issues. I'm resending the set to linux-media so that they can be picked up for the media t

[PATCH 2/3] [media] staging: lirc: fix indentation

2015-09-04 Thread Maciek Borzecki
Fix non-tab indentation. This resolves the following checkpatch problem: ERROR: code indent should use tabs where possible Signed-off-by: Maciek Borzecki --- drivers/staging/media/lirc/lirc_sasem.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/drivers/staging/media/lir

[PATCH 3/3] [media] staging: lirc: lirc_serial: use dynamic debugs

2015-09-04 Thread Maciek Borzecki
Replace custom debug macro dprintk() with pr_debug() or dev_dbg(). Remove unused module param `debug`. This removes the following checkpatch warning: WARNING: Prefer [subsystem eg: netdev]_dbg([subsystem]dev, ... then dev_dbg(dev, ... then pr_debug(... to printk(KERN_DEBUG ... +

Re: [PATCH 13/13] DocBook: add SDR specific info to G_MODULATOR / S_MODULATOR

2015-09-04 Thread Antti Palosaari
On 09/04/2015 01:26 PM, Hans Verkuil wrote: On 09/01/2015 11:59 PM, Antti Palosaari wrote: Add SDR specific notes to G_MODULATOR / S_MODULATOR documentation. Signed-off-by: Antti Palosaari --- Documentation/DocBook/media/v4l/vidioc-g-modulator.xml | 9 + 1 file changed, 9 insertions

Re: [PATCH v8 48/55] [media] media_device: add a topology version field

2015-09-04 Thread Mauro Carvalho Chehab
Em Mon, 31 Aug 2015 15:35:38 +0200 Hans Verkuil escreveu: > On 08/31/2015 02:52 PM, Mauro Carvalho Chehab wrote: > > Em Mon, 31 Aug 2015 14:29:28 +0200 > > Hans Verkuil escreveu: > > > >> On 08/30/2015 05:06 AM, Mauro Carvalho Chehab wrote: > >>> Every time a graph object is added or removed, t

Re: [PATCH v8 53/55] [media] v4l2-core: create MC interfaces for devnodes

2015-09-04 Thread Mauro Carvalho Chehab
Em Mon, 31 Aug 2015 15:23:59 +0200 Hans Verkuil escreveu: > On 08/30/2015 05:07 AM, Mauro Carvalho Chehab wrote: > > V4L2 device (and subdevice) nodes should create an > > interface, if the Media Controller support is enabled. > > > > Please notice that radio devices should not create an > > ent

[GIT PULL FOR v4.4] Various fixes

2015-09-04 Thread Hans Verkuil
Various fixes and enhancements, nothing special. Note that the v4l2-compat-ioctl32 fix has a CC for stable from 3.10 onwards. The arm64 architecture was added in 3.10. Regards, Hans The following changes since commit 50ef28a6ac216fd8b796257a3768fef8f57b917d: [media] c8sectpfe: Remove

Re: [RFC PATCH 2/2] vivid: add support for reduced fps in video capture

2015-09-04 Thread Hans Verkuil
On 08/23/2015 04:09 PM, Prashant Laddha wrote: > With this patch, vivid capture thread can now generate reduced > fps by factor of 1000 / 1001. This is controlled using a boolean > VIVID_CID_REDUCED_FPS added in vivid control. For reduced fps, > capture time is controlled by scaling down timeperfra

Re: [RFC PATCH 1/2] vivid: add support for reduced fps in video out.

2015-09-04 Thread Hans Verkuil
Hi Prashant, Sorry for the late review, but here it is (finally): On 08/23/2015 04:09 PM, Prashant Laddha wrote: > If bt timing has REDUCED_FPS flag set, then reduce the frame rate > by factor of 1000 / 1001. For vivid, timeperframe_vid_out indicates > the frame timings used by video out thread.

Re: [PATCH 1/3] adv7180: implement g_std() method

2015-09-04 Thread Hans Verkuil
On 09/04/2015 02:08 PM, Hans Verkuil wrote: > On 09/04/2015 01:14 AM, Sergei Shtylyov wrote: >> Commit cccb83f7a184 ([media] adv7180: add more subdev video ops) forgot to >> add >> the g_std() video method. Its implementation seems identical to the >> querystd() >> method, so we can just point

Re: [PATCH 1/3] adv7180: implement g_std() method

2015-09-04 Thread Hans Verkuil
On 09/04/2015 01:14 AM, Sergei Shtylyov wrote: > Commit cccb83f7a184 ([media] adv7180: add more subdev video ops) forgot to add > the g_std() video method. Its implementation seems identical to the querystd() > method, so we can just point at adv7180_querystd()... > > Signed-off-by: Sergei Shty

[PATCH v8.2 19/55] [media] media: convert links from array to list

2015-09-04 Thread Mauro Carvalho Chehab
The entire logic that represent graph links were developed on a time where there were no needs to dynamic remove links. So, although links are created/removed one by one via some functions, they're stored as an array inside the entity struct. As the array may grow, there's a logic inside the code

Re: [PATCH 3/3] rcar_vin: call g_std() instead of querystd()

2015-09-04 Thread Hans Verkuil
On 09/04/2015 01:18 AM, Sergei Shtylyov wrote: > Hans Verkuil says: "The only place querystd can be called is in the QUERYSTD > ioctl, all other ioctls should use the last set standard." So call the g_std() > subdevice method instead of querystd() in the driver's set_fmt() method. > > Reported-by

Re: [PATCH 2/3] ml86v7667: implement g_std() method

2015-09-04 Thread Hans Verkuil
On 09/04/2015 01:16 AM, Sergei Shtylyov wrote: > The driver was written with the 'soc_camera' use in mind, however the g_std() > video method was forgotten. Implement it at last... > > Signed-off-by: Sergei Shtylyov Acked-by: Hans Verkuil > > --- > drivers/media/i2c/ml86v7667.c | 10 ++

[PATCH v8.1 19/55] [media] media: convert links from array to list

2015-09-04 Thread Mauro Carvalho Chehab
The entire logic that represent graph links were developed on a time where there were no needs to dynamic remove links. So, although links are created/removed one by one via some functions, they're stored as an array inside the entity struct. As the array may grow, there's a logic inside the code

Re: [PATCH v8 19/55] [media] media: convert links from array to list

2015-09-04 Thread Mauro Carvalho Chehab
Em Fri, 04 Sep 2015 11:00:38 +0200 Hans Verkuil escreveu: > On 09/04/2015 10:41 AM, Sakari Ailus wrote: > > Hi Mauro, > > > > On Sun, Aug 30, 2015 at 12:06:30AM -0300, Mauro Carvalho Chehab wrote: > >> The entire logic that represent graph links were developed on a > >> time where there were no

Re: [PATCH v2 00/10] Support getting default values from any control

2015-09-04 Thread Hans Verkuil
This patch series looks good. I'll drop the saa7164 patches since I made a patch series converting it to the control framework. Once Steve gives me the Ack for that I can merge that series. All I need to merge your series (minus the saa7164 patches) is the Ack from Laurent for the uvc patch. Rega

Re: [PATCH v2 06/10] usb/uvc: Support for V4L2_CTRL_WHICH_DEF_VAL

2015-09-04 Thread Hans Verkuil
Laurent, can you review this? Regards, Hans On 08/21/2015 03:19 PM, Ricardo Ribalda Delgado wrote: > This driver does not use the control infrastructure. > Add support for the new field which on structure > v4l2_ext_controls > > Signed-off-by: Ricardo Ribalda Delgado > --- > drivers/

Re: [PATCH 07/13] DocBook: add modulator type field

2015-09-04 Thread Hans Verkuil
On 09/01/2015 11:59 PM, Antti Palosaari wrote: > Add new modulator type field to documentation. > > Signed-off-by: Antti Palosaari Acked-by: Hans Verkuil > --- > Documentation/DocBook/media/v4l/vidioc-g-modulator.xml | 8 +++- > 1 file changed, 7 insertions(+), 1 deletion(-) > > diff --g

Re: [PATCH 13/13] DocBook: add SDR specific info to G_MODULATOR / S_MODULATOR

2015-09-04 Thread Hans Verkuil
On 09/01/2015 11:59 PM, Antti Palosaari wrote: > Add SDR specific notes to G_MODULATOR / S_MODULATOR documentation. > > Signed-off-by: Antti Palosaari > --- > Documentation/DocBook/media/v4l/vidioc-g-modulator.xml | 9 + > 1 file changed, 9 insertions(+) > > diff --git a/Documentation/D

Re: [PATCH 10/13] hackrf: add support for transmitter

2015-09-04 Thread Hans Verkuil
Hi Antti, Two comments, see below: On 09/01/2015 11:59 PM, Antti Palosaari wrote: > HackRF SDR device has both receiver and transmitter. There is limitation > that receiver and transmitter cannot be used at the same time > (half-duplex operation). That patch implements transmitter support to > ex

Re: [PATCH v8 19/55] [media] media: convert links from array to list

2015-09-04 Thread Hans Verkuil
On 09/04/2015 10:41 AM, Sakari Ailus wrote: > Hi Mauro, > > On Sun, Aug 30, 2015 at 12:06:30AM -0300, Mauro Carvalho Chehab wrote: >> The entire logic that represent graph links were developed on a >> time where there were no needs to dynamic remove links. So, >> although links are created/removed

Re: [PATCH v8 19/55] [media] media: convert links from array to list

2015-09-04 Thread Sakari Ailus
Hi Mauro, On Sun, Aug 30, 2015 at 12:06:30AM -0300, Mauro Carvalho Chehab wrote: > The entire logic that represent graph links were developed on a > time where there were no needs to dynamic remove links. So, > although links are created/removed one by one via some > functions, they're stored as a

Dvb-fe-tool add features

2015-09-04 Thread Tomáš Vítek
Hello, Please add to dvb-fe-tool function as a femon from dvb-apps. ,,-c number : samples to take (default 0 = infinite),, This is the number of repetitions of reading signal. Thanks. -- To unsubscribe from this list: send the line "unsubscribe linux-media" in the b