cron job: media_tree daily build: ERRORS

2019-08-05 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: Tue Aug 6 05:00:11 CEST 2019 media-tree git hash:d42974e438feebda372fe4a39d7761cc596abc57 media_build gi

[PATCH 18/22] media: imx: csi: Create media links in bound notifier

2019-08-05 Thread Steve Longerbeam
Implement a notifier bound op to register media links from the remote sub-device's source pad(s) to the CSI sink pad. Signed-off-by: Steve Longerbeam --- drivers/staging/media/imx/imx-media-csi.c | 24 +++ 1 file changed, 24 insertions(+) diff --git a/drivers/staging/media/i

[PATCH 00/22] media: imx: Create media links in bound notifiers

2019-08-05 Thread Steve Longerbeam
This series moves media link creation into the notifier bound callbacks in the subdevices required by imx. But to support the media graph on imx, a few improvements first needed to be made to media core. The default behavior of media_entity_get_fwnode_pad() fails when the entity has multiple sink

Re: [RFC PATCH 3/5] media: v4l2: Add m2m codec helpers

2019-08-05 Thread Boris Brezillon
On Mon, 5 Aug 2019 13:53:20 -0300 Hans Verkuil wrote: > > +/** > > + * struct v4l2_m2m_codec_ctx - Codec context > > + * @fh: file handle > > + * @coded_fmt: current coded format > > + * @decoded_fmt: current decoded format > > + * @coded_fmt_desc: current coded format desc > > + * @decoded_fmt_d

Re: [RFC PATCH 1/5] media: vb2: Add a helper to get the vb2 buffer attached to a request

2019-08-05 Thread Hans Verkuil
On 8/5/19 11:13 AM, Boris Brezillon wrote: On Mon, 5 Aug 2019 10:12:53 -0300 Hans Verkuil wrote: On 8/5/19 6:48 AM, Boris Brezillon wrote: vb2_request_get_buf() returns the N-th buffer attached to a media request. Signed-off-by: Boris Brezillon --- .../media/common/videobuf2/videobuf2-co

Re: [RFC PATCH 3/5] media: v4l2: Add m2m codec helpers

2019-08-05 Thread Hans Verkuil
On 8/5/19 6:48 AM, Boris Brezillon wrote: Most codec drivers do the same thing, let's extract those generic bits and provide them as m2m_codec helpers. Each compressed-format will have its own set of sub-helpers. Signed-off-by: Boris Brezillon --- drivers/media/v4l2-core/Kconfig

My Donation to you

2019-08-05 Thread N.Gray
Good day, Hope this message finds you well. My Name is MS N. Gray, $180,000,000 Super Lotto Jackpot Winner on Friday, the 11th of May 2018. I see my Jackpot winning as a gift from God and this is why i opened a foundation to assist other people by making financial donation to them. Note th

Re: [RFC PATCH 1/5] media: vb2: Add a helper to get the vb2 buffer attached to a request

2019-08-05 Thread Boris Brezillon
On Mon, 5 Aug 2019 10:12:53 -0300 Hans Verkuil wrote: > On 8/5/19 6:48 AM, Boris Brezillon wrote: > > vb2_request_get_buf() returns the N-th buffer attached to a media > > request. > > > > Signed-off-by: Boris Brezillon > > --- > > .../media/common/videobuf2/videobuf2-core.c | 23 ++

Re: [RFC PATCH 1/5] media: vb2: Add a helper to get the vb2 buffer attached to a request

2019-08-05 Thread Hans Verkuil
On 8/5/19 6:48 AM, Boris Brezillon wrote: vb2_request_get_buf() returns the N-th buffer attached to a media request. Signed-off-by: Boris Brezillon --- .../media/common/videobuf2/videobuf2-core.c | 23 +++ include/media/videobuf2-core.h| 11 + 2 fil

[RFC PATCH 4/5] media: v4l2: Provide helpers for H264 codecs

2019-08-05 Thread Boris Brezillon
Signed-off-by: Boris Brezillon --- drivers/media/v4l2-core/Kconfig | 5 + drivers/media/v4l2-core/Makefile | 1 + .../media/v4l2-core/v4l2-mem2mem-h264-codec.c | 47 include/media/v4l2-mem2mem-h264-codec.h | 100 ++ 4 files changed, 1

[RFC PATCH 2/5] media: v4l2: Prepare things for addition of m2m codec helpers

2019-08-05 Thread Boris Brezillon
Right now, all m2m helper are in v4l2-mem2mem.c, but we are about to had new helpers for codec devices and we want to make them optional while still having all m2m helpers embedded in a single module (v4l2-mem2mem.ko). Move the existing code base in v4l2-mem2mem-core.c so we can easily add new .o

[RFC PATCH 3/5] media: v4l2: Add m2m codec helpers

2019-08-05 Thread Boris Brezillon
Most codec drivers do the same thing, let's extract those generic bits and provide them as m2m_codec helpers. Each compressed-format will have its own set of sub-helpers. Signed-off-by: Boris Brezillon --- drivers/media/v4l2-core/Kconfig |4 + drivers/media/v4l2-core/Makefile

[RFC PATCH 1/5] media: vb2: Add a helper to get the vb2 buffer attached to a request

2019-08-05 Thread Boris Brezillon
vb2_request_get_buf() returns the N-th buffer attached to a media request. Signed-off-by: Boris Brezillon --- .../media/common/videobuf2/videobuf2-core.c | 23 +++ include/media/videobuf2-core.h| 11 + 2 files changed, 34 insertions(+) diff --git a/driv

[RFC PATCH 0/5] media: v4l2: Add m2m codec helpers

2019-08-05 Thread Boris Brezillon
Hello, This patch series is an attempt at factorizing some of the boiler plate code that we find in most stateless codec drivers (and potentially stateful codec ones too). It's been designed mostly based on the hantro and cedrus driver and I decided to implement a third one using these helpers to

[RFC PATCH 5/5] media: rockchip: Add the rkvdec driver

2019-08-05 Thread Boris Brezillon
The rockchip vdec block is a stateless decoder that's able to decode H264, HEVC and VP9 content. This patch only adds H264 support and is making use of the m2m codec helpers. Signed-off-by: Boris Brezillon --- drivers/staging/media/Kconfig | 2 + drivers/staging/media/Makefile

Re: [GIT PULL for v5.4] Venus updates - stateful decoder, take 2

2019-08-05 Thread Jenkins
From: buil...@linuxtv.org Pull request: https://patchwork.linuxtv.org/patch/57908/ Build log: https://builder.linuxtv.org/job/patchwork/2194/ Build time: 00:05:12 Summary: 0 issues, being 0 build regressions

[GIT PULL for v5.4] Venus updates - stateful decoder, take 2

2019-08-05 Thread Stanimir Varbanov
Hi Mauro, Here is a set of patches to make Venus decoder driver compliant with stateful decoder draft documentation. Please pull. Changes in take 2: Fixed checkpatch Error/warnings. regards, Stan The following changes since commit d3dd552da3eb16e369d2459e3fa927542f11d17c: media: dt-bindings