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
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
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
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(-)
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
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
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 ...
+
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
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
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
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
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
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.
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
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
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
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
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 ++
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
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
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
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/
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
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
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
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
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
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
28 matches
Mail list logo