Hi Sakari,
On Thursday 01 August 2013 00:29:21 Sakari Ailus wrote:
> On Wed, Jul 31, 2013 at 05:52:33PM +0200, Laurent Pinchart wrote:
> > From: Katsuya Matsubara
> >
> > Each source entity maintains a pointer to the counterpart sink
> > entity while an enabled link connects them. It should be m
Hi Sylwester,
Thank you for the review.
On Wednesday 31 July 2013 23:02:05 Sylwester Nawrocki wrote:
> Hi Laurent,
>
> just a few small remarks...
>
> On 07/31/2013 05:52 PM, Laurent Pinchart wrote:
> > The VSP1 is a video processing engine that includes a blender, scalers,
> > filters and stat
Hi Laurent,
On Wed, Jul 31, 2013 at 05:52:33PM +0200, Laurent Pinchart wrote:
> From: Katsuya Matsubara
>
> Each source entity maintains a pointer to the counterpart sink
> entity while an enabled link connects them. It should be managed by
> the setup_link callback in the media controller frame
On Wed, Jul 31, 2013 at 05:52:34PM +0200, Laurent Pinchart wrote:
> From: Katsuya Matsubara
>
> The VSP1 driver allows to define the maximum number of each module
> such as RPF, WPF, and UDS in a platform data definition.
> This suppresses operations for nonexistent or unused modules.
>
> Signed
Hi Laurent,
On Wed, Jul 31, 2013 at 05:52:32PM +0200, Laurent Pinchart wrote:
...
> +static int vsp1_device_init(struct vsp1_device *vsp1)
> +{
> + unsigned int i;
> + u32 status;
> +
> + /* Reset any channel that might be running. */
> + status = vsp1_read(vsp1, VI6_STATUS);
> +
>
Hi Laurent,
just a few small remarks...
On 07/31/2013 05:52 PM, Laurent Pinchart wrote:
The VSP1 is a video processing engine that includes a blender, scalers,
filters and statistics computation. Configurable data path routing logic
allows ordering the internal blocks in a flexible way.
Due to
On Wed, Jul 31, 2013 at 05:52:28PM +0200, Laurent Pinchart wrote:
> The graph traversal API (media_entity_graph_walk_*) doesn't support
> cyclic graphs and will fail to correctly walk a graph when circular
> links exist. Support circular graph traversal by checking whether an
> entity has already b
Hi, I just upgraded my kernel to 3.10.3, and dib8000 scanning does not
work anymore.
I tested using dvbscan (from dvb-apps/util/) and w_scan on a Prolink
Pixelview SBTVD (dib8000 module*).This tools worked very well on
version 3.9.9 , but now it does not produces any result, and also
there are no
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 Jul 31 19:00:22 CEST 2013
git branch: test
git hash: b43ea8068d2090cb1e44632c8a938ab40d2c7419
gcc versi
Great, thanks for your help Devin.
-Trevor
On Wed, Jul 31, 2013 at 12:00 PM, Devin Heitmueller
wrote:
> On Wed, Jul 31, 2013 at 11:55 AM, Trevor Anonymous
> wrote:
>> Hi all, new to the list, hope this is an appropriate place to ask this.
>>
>> Quick question:
>> I can extract NTSC analog clos
This fixes regression introduced in commit b426b3a660c85faf6e1ca1c92c6d
[media] V4L: Merge struct v4l2_async_subdev_list with struct v4l2_subdev
Signed-off-by: Sylwester Nawrocki
---
drivers/media/v4l2-core/v4l2-async.c |2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/drive
On Wed, Jul 31, 2013 at 11:55 AM, Trevor Anonymous
wrote:
> Hi all, new to the list, hope this is an appropriate place to ask this.
>
> Quick question:
> I can extract NTSC analog closed captions with the Hauppauge 950Q as follows:
> 1. Run v4l2-ctl -i 1 ## Set input to composite
> 2. In a test ap
Hi all, new to the list, hope this is an appropriate place to ask this.
Quick question:
I can extract NTSC analog closed captions with the Hauppauge 950Q as follows:
1. Run v4l2-ctl -i 1 ## Set input to composite
2. In a test application, open file /dev/video0
3. Read 1 byte from the file
** Note:
NV16M and NV61M are planar YCbCr 4:2:2 and YCrCb 4:2:2 formats with a
luma plane followed by an interleaved chroma plane. The planes are not
required to be contiguous in memory, and the formats can only be used
with the multi-planar formats API.
Signed-off-by: Laurent Pinchart
Reviewed-by: Sylwes
From: Katsuya Matsubara
The VSP1 driver allows to define the maximum number of each module
such as RPF, WPF, and UDS in a platform data definition.
This suppresses operations for nonexistent or unused modules.
Signed-off-by: Katsuya Matsubara
Signed-off-by: Laurent Pinchart
---
drivers/media/
The V4L2_MBUS_FMT_YUV10_1X30 code is documented as being equal to
0x2014, while the v4l2-mediabus.h header defines it as 0x2016. Fix the
documentation.
Signed-off-by: Laurent Pinchart
Acked-by: Sakari Ailus
---
Documentation/DocBook/media/v4l/subdev-formats.xml | 2 +-
1 file changed, 1 inserti
Signed-off-by: Laurent Pinchart
Reviewed-by: Sylwester Nawrocki
---
Documentation/DocBook/media/v4l/subdev-formats.xml | 609 +
Documentation/DocBook/media_api.tmpl | 6 +
include/uapi/linux/v4l2-mediabus.h | 6 +-
3 files changed, 254 insert
From: Katsuya Matsubara
Each source entity maintains a pointer to the counterpart sink
entity while an enabled link connects them. It should be managed by
the setup_link callback in the media controller framework at runtime.
However, enabled links which connect RPFs and WPFs that have an
equivale
Hello,
Here's the fourth version of the VSP1 engine (a Video Signal Processor found
in several Renesas R-Car SoCs) driver. There has been very few comments on v3,
this one might be final.
The VSP1 is a video processing engine that includes a blender, scalers,
filters and statistics computation. C
The graph traversal API (media_entity_graph_walk_*) doesn't support
cyclic graphs and will fail to correctly walk a graph when circular
links exist. Support circular graph traversal by checking whether an
entity has already been visited before pushing it to the stack.
Signed-off-by: Laurent Pincha
Hi Sakari,
On Thursday 25 July 2013 16:43:28 Sakari Ailus wrote:
> On Thu, Jul 25, 2013 at 01:46:54PM +0200, Laurent Pinchart wrote:
> > > On Wed, Jul 17, 2013 at 04:54:42PM +0200, Laurent Pinchart wrote:
> > > ...
> > >
> > > > +static void vsp1_device_init(struct vsp1_device *vsp1)
> > > > +{
>
Hi Sakari,
Thank you for the review.
On Thursday 25 July 2013 16:54:46 Sakari Ailus wrote:
> On Thu, Jul 25, 2013 at 03:00:09PM +0200, Laurent Pinchart wrote:
> > From: Laurent Pinchart
> >
> > The graph traversal API (media_entity_graph_walk_*) doesn't support
> > cyclic graphs and will fail t
Hi all,
First off, thanks to those who have already submitted topics to the
Graphics and Display microconference!
For those who have not yet proposed, but plan to, please submit your
topics as described here:
http://www.linuxplumbersconf.org/2013/submitting-microconference-discussion-topics/
A
Hi,
I've got a new camera which perfectly works at some
resolutions (640x480, 640x360, 160x120). At all other resolutions
I get a black screen because all frames are dropped due to
a set error bit "Payload dropped (error bit set)"
Any idea how to debug it?
Regards
Oliver
Laurent Pinchart ideasonboard.com> writes:
>
> Hi Tom,
>
> On Tuesday 16 July 2013 14:24:59 Tom wrote:
> > Laurent Pinchart ideasonboard.com> writes:
> > > On Monday 15 July 2013 09:23:19 Tom wrote:
> > > > Hello,
> > > >
> > > > I am working with a gumstix overo board connected with a e-con-
On Mon, 29 Jul 2013 12:16:53 +0300
Yaroslav Zakharuk wrote:
> Hi!
>
> After update from 3.5 kernel to newer version I got kernel oops when I
> connect my Hercules Blog Webcam. The full error stacktrace is at the end
> of this e-mail.
Hi Yaroslav, I'll try to take a look this week-end.
[...]
On Wed, 31 Jul 2013, Bård Eirik Winther wrote:
On Tuesday, July 30, 2013 10:12:33 AM you wrote:
Em Tue, 30 Jul 2013 10:15:18 +0200
Bård Eirik Winther escreveu:
...
Performance:
All tests are done on an Intel i7-2600S (with Turbo Boost disabled) using the
integrated Intel HD 2000 graphics pr
Hi Oliver,
I migrated to Ubuntu 13.04 on desktop and tried. It worked !
It uses linux kernel 3.8.0. If I use this version of linux kernel or greater
on Pandaboard, it may work on Pandaboard also.
Regards,
Kishore.
-Original Message-
From: Oliver Schinagl [mailto:oliver+l...@sc
2013/7/29 Hans Verkuil :
> From: Hans Verkuil
>
> Use the new defines to calculate the full blanking and frame sizes.
>
> Signed-off-by: Hans Verkuil
> Cc: Lad, Prabhakar
> Cc: Scott Jiang
> ---
> drivers/media/platform/blackfin/bfin_capture.c | 9 ++---
> diff --git a/drivers/media/plat
On Wed 31 July 2013 09:09:05 Ricardo Ribalda Delgado wrote:
> Hello Hans
>
> Thanks for the explanation. I have tried changing the controls to
> inactive and the are shown disabled on the gui, just as you say, but
> they are there :S. I personally liked better the previous behaviour,
> when the co
Hello Hans
Thanks for the explanation. I have tried changing the controls to
inactive and the are shown disabled on the gui, just as you say, but
they are there :S. I personally liked better the previous behaviour,
when the controls where not shown at all. But it is just that, a
taste, if it is mo
31 matches
Mail list logo