cron job: media_tree daily build: OK

2018-07-20 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 Jul 21 05:00:13 CEST 2018 media-tree git hash:39fbb88165b2bbbc77ea7acab5f10632a31526e6 media_build

we provide editing

2018-07-20 Thread Scott
Hi, We provide image editing services like - photo cut out; photo clipping path; photo masking; photo shadow creation; photo color correction; photo retouching; beauty model retouching on skin, face, body; glamour retouching; products retouching and other image editing. We are also offering to

Re: [PATCH 1/5] cec-gpio.txt: add v5-gpios for testing the 5V line

2018-07-20 Thread Rob Herring
On Tue, Jul 17, 2018 at 03:29:05PM +0200, Hans Verkuil wrote: > From: Hans Verkuil > > In order to debug the HDMI 5V line we need to add a new v5-gpios > property. > > Signed-off-by: Hans Verkuil > --- > .../devicetree/bindings/media/cec-gpio.txt | 17 ++--- > 1 file changed,

we provide editing

2018-07-20 Thread Scott
Hi, We provide image editing services like - photo cut out; photo clipping path; photo masking; photo shadow creation; photo color correction; photo retouching; beauty model retouching on skin, face, body; glamour retouching; products retouching and other image editing. We are also offering to

we edit your photos

2018-07-20 Thread Scott
Hi, We provide image editing services like - photo cut out; photo clipping path; photo masking; photo shadow creation; photo color correction; photo retouching; beauty model retouching on skin, face, body; glamour retouching; products retouching and other image editing. We are also offering to

Re: [PATCH 6/5] vicodec: Support multi-planar APIs

2018-07-20 Thread Keiichi Watanabe
On Fri, Jul 20, 2018 at 5:30 PM, Hans Verkuil wrote: > On 07/20/2018 08:59 AM, Keiichi Watanabe wrote: >> Support multi-planar APIs in the virtual codec driver. >> Multi-planar APIs are enabled by the module parameter 'multiplanar'. >> >> Signed-off-by: Keiichi Watanabe > > Thank you for

Re: [PATCH 6/5] vicodec: Support multi-planar APIs

2018-07-20 Thread Hans Verkuil
On 07/20/2018 08:59 AM, Keiichi Watanabe wrote: > Support multi-planar APIs in the virtual codec driver. > Multi-planar APIs are enabled by the module parameter 'multiplanar'. > > Signed-off-by: Keiichi Watanabe Thank you for contributing this code! I've folded it into patch series (I just

[PATCHv2 5/5] vicodec: add the virtual codec driver

2018-07-20 Thread Hans Verkuil
From: Hans Verkuil Add the virtual codec driver that uses the Fast Walsh Hadamard Transform. Keiichi Watanabe contributed the multiplanar support. Signed-off-by: Hans Verkuil Co-Developer-by: Keiichi Watanabe Signed-off-by: Keiichi Watanabe --- MAINTAINERS

[PATCHv2 4/5] vicodec: add the FWHT software codec

2018-07-20 Thread Hans Verkuil
From: Hans Verkuil Add a software codec based on the Fast Walsh Hadamard Transform. The original FWHT codec was developer by Tom aan de Wiel, and it was turned into 'proper' kernel code by Hans Verkuil, with a lot of performance and memory improvements. Signed-off-by: Tom aan de Wiel

[PATCHv2 0/5] vicodec: the Virtual Codec driver

2018-07-20 Thread Hans Verkuil
From: Hans Verkuil This is the second version of the new vicodec driver, a driver that emulates a HW codec. The software codec was developed two years ago by Tom aan de Wiel as a university project for this specific purpose but it took until now to turn it into a proper driver. Many thanks to

[PATCHv2 2/5] videodev.h: add PIX_FMT_FWHT for use with vicodec

2018-07-20 Thread Hans Verkuil
From: Hans Verkuil Add a new pixelformat for the vicodec software codec using the Fast Walsh Hadamard Transform. Signed-off-by: Hans Verkuil Acked-by: Sakari Ailus --- Documentation/media/uapi/v4l/pixfmt-compressed.rst | 7 +++ drivers/media/v4l2-core/v4l2-ioctl.c | 1 +

[PATCHv2 3/5] v4l2-mem2mem: add v4l2_m2m_last_buf()

2018-07-20 Thread Hans Verkuil
From: Hans Verkuil This can be used to mark the last queued source buffer as the last buffer. Signed-off-by: Hans Verkuil --- drivers/media/v4l2-core/v4l2-mem2mem.c | 18 include/media/v4l2-mem2mem.h | 29 ++ 2 files changed, 47 insertions(+)

[PATCHv2 1/5] media.h: add encoder/decoder functions for codecs

2018-07-20 Thread Hans Verkuil
From: Hans Verkuil Add MEDIA_ENT_F_PROC_VIDEO_EN/DECODER to be used for the encoder and decoder entities of codec hardware. Signed-off-by: Hans Verkuil Acked-by: Sakari Ailus --- Documentation/media/uapi/mediactl/media-types.rst | 11 +++ include/uapi/linux/media.h

[PATCH 6/5] vicodec: Support multi-planar APIs

2018-07-20 Thread Keiichi Watanabe
Support multi-planar APIs in the virtual codec driver. Multi-planar APIs are enabled by the module parameter 'multiplanar'. Signed-off-by: Keiichi Watanabe --- drivers/media/platform/vicodec/vicodec-core.c | 219 ++ 1 file changed, 171 insertions(+), 48 deletions(-) diff --git