cron job: media_tree daily build: OK

2016-05-12 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: Fri May 13 04:00:22 CEST 2016 git branch: test git hash: d1532d5575696965a52b19553dd7dacf75f3fec5 gcc

Re: [PATCH/RFC v2 2/4] v4l: Add metadata video device type

2016-05-12 Thread Sakari Ailus
Hi Laurent, Thanks for the patchset! On Thu, May 12, 2016 at 03:18:01AM +0300, Laurent Pinchart wrote: > The metadata video device is used to transfer metadata between > userspace and kernelspace. It supports the metadata buffer type only. I remember we briefly discussed this before but I have

[PATCH] media: Add a driver for the ov5645 camera sensor.

2016-05-12 Thread Todor Tomov
The ov5645 sensor from Omnivision supports up to 2592x1944 and CSI2 interface. The driver adds support for the following modes: - 1280x960 - 1920x1080 - 2592x1944 Output format is packed 8bit UYVY. Signed-off-by: Todor Tomov ---

[PATCH v2 1/2] vb2: core: Skip planes array verification if pb is NULL

2016-05-12 Thread Sakari Ailus
An earlier patch fixing an input validation issue introduced another issue: vb2_core_dqbuf() is called with pb argument value NULL in some cases, causing a NULL pointer dereference. Fix this by skipping the verification as there's nothing to verify. Signed-off-by: David R

[PATCH v2 0/2] videobuf2: Fix kernel memory overwriting

2016-05-12 Thread Sakari Ailus
Hi folks, There was a bug in the first version of the set --- the pb argument to __vb2_get_done_vb() is NULL in cases which did not get tested the last time. The second patch in the set was reverted for that reason. This set contains a patch originally from David and again the second reverted

[PATCH v2 2/2] [media] videobuf2-v4l2: Verify planes array in buffer dequeueing

2016-05-12 Thread Sakari Ailus
When a buffer is being dequeued using VIDIOC_DQBUF IOCTL, the exact buffer which will be dequeued is not known until the buffer has been removed from the queue. The number of planes is specific to a buffer, not to the queue. This does lead to the situation where multi-plane buffers may be

CHECK MESSAGE.

2016-05-12 Thread ttg_account4
I have profitable business opportunity i would like to introduce to you, reply with your name and your location. Best regards, Mr. Matthew Daniels. -- To unsubscribe from this list: send the line "unsubscribe linux-media" in the body of a message to majord...@vger.kernel.org More majordomo info

[PATCH v2 2/9] [media] : v4l: add Mediatek compressed video block format

2016-05-12 Thread Tiffany Lin
Add V4L2_PIX_FMT_MT21 format used on MT8173 driver. It is compressed format and need MT8173 MDP driver to transfer to other standard format. Signed-off-by: Tiffany Lin --- include/uapi/linux/videodev2.h |1 + 1 file changed, 1 insertion(+) diff --git

[PATCH v2 3/9] [media] DocBook/v4l: Add compressed video formats used on MT8173 codec driver

2016-05-12 Thread Tiffany Lin
Add V4L2_PIX_FMT_MT21 documentation Signed-off-by: Tiffany Lin --- Documentation/DocBook/media/v4l/pixfmt.xml |6 ++ 1 file changed, 6 insertions(+) diff --git a/Documentation/DocBook/media/v4l/pixfmt.xml b/Documentation/DocBook/media/v4l/pixfmt.xml index

[PATCH v2 0/9] Add MT8173 Video Decoder Driver

2016-05-12 Thread Tiffany Lin
== Introduction == The purpose of this series is to add the driver for video codec hw embedded in the Mediatek's MT8173 SoCs. Mediatek Video Codec is able to handle video decoding of in a range of formats. This patch series add Mediatek block format V4L2_PIX_FMT_MT21,

[PATCH v2 4/9] dt-bindings: Add a binding for Mediatek Video Decoder

2016-05-12 Thread Tiffany Lin
Add a DT binding documentation of Video Decoder for the MT8173 SoC from Mediatek. Signed-off-by: Tiffany Lin --- .../devicetree/bindings/media/mediatek-vcodec.txt | 50 ++-- 1 file changed, 46 insertions(+), 4 deletions(-) diff --git

[PATCH v2 9/9] arm64: dts: mediatek: Add Video Decoder for MT8173

2016-05-12 Thread Tiffany Lin
Add video decoder node for MT8173 Signed-off-by: Tiffany Lin --- arch/arm64/boot/dts/mediatek/mt8173.dtsi | 38 ++ 1 file changed, 38 insertions(+) diff --git a/arch/arm64/boot/dts/mediatek/mt8173.dtsi

[PATCH v2 7/9] [media] vcodec: mediatek: Add Mediatek VP8 Video Decoder Driver

2016-05-12 Thread Tiffany Lin
Add vp8 decoder driver for MT8173 Signed-off-by: PC Chen Signed-off-by: Tiffany Lin --- drivers/media/platform/mtk-vcodec/Makefile |1 + .../media/platform/mtk-vcodec/vdec/vdec_vp8_if.c | 632

[PATCH v2 8/9] [media] vcodec: mediatek: Add Mediatek VP9 Video Decoder Driver

2016-05-12 Thread Tiffany Lin
Add vp9 decoder driver for MT8173 Signed-off-by: Tiffany Lin --- drivers/media/platform/mtk-vcodec/Makefile |1 + .../media/platform/mtk-vcodec/vdec/vdec_vp9_if.c | 947 drivers/media/platform/mtk-vcodec/vdec_drv_if.c|3 + 3

[PATCH v2 5/9] [Media] vcodec: mediatek: Add Mediatek V4L2 Video Decoder Driver

2016-05-12 Thread Tiffany Lin
Add v4l2 layer decoder driver for MT8173 Signed-off-by: Tiffany Lin --- drivers/media/platform/mtk-vcodec/Makefile | 10 +- drivers/media/platform/mtk-vcodec/mtk_vcodec_dec.c | 1336 drivers/media/platform/mtk-vcodec/mtk_vcodec_dec.h |

[PATCH v2 6/9] [media] vcodec: mediatek: Add Mediatek H264 Video Decoder Driver

2016-05-12 Thread Tiffany Lin
Add h264 decoder driver for MT8173 Signed-off-by: PC Chen Signed-off-by: Tiffany Lin --- drivers/media/platform/mtk-vcodec/Makefile |5 +- .../media/platform/mtk-vcodec/vdec/vdec_h264_if.c | 504

[PATCH v2 1/9] [media] VPU: mediatek: Add decode support

2016-05-12 Thread Tiffany Lin
From: Andrew-CT Chen VPU driver add decode support Signed-off-by: Andrew-CT Chen Signed-off-by: Tiffany Lin --- drivers/media/platform/mtk-vpu/mtk_vpu.c | 12

[PATCH v2] [media] af9035: fix for MXL5007T devices with I2C read issues

2016-05-12 Thread Alessandro Radicati
The MXL5007T tuner will lock-up on some devices after an I2C read transaction. This patch works around this issue by inhibiting such operations and emulating a 0x00 response. The workaround is only applied to USB devices known to exhibit this flaw. Signed-off-by: Alessandro Radicati

Re: [PATCH] Revert "[media] videobuf2-v4l2: Verify planes array in buffer dequeueing"

2016-05-12 Thread Sakari Ailus
Hi Nicolas, Nicolas Dufresne wrote: > Le mercredi 11 mai 2016 à 13:27 -0300, Mauro Carvalho Chehab a écrit : >> This patch causes a Kernel panic when called on a DVB driver. >> >> This reverts commit 2c1f6951a8a82e6de0d82b1158b5e493fc6c54ab. > > Seems rather tricky, since this commit fixed a

Re: [PATCH] Revert "[media] videobuf2-v4l2: Verify planes array in buffer dequeueing"

2016-05-12 Thread Nicolas Dufresne
Le mercredi 11 mai 2016 à 13:27 -0300, Mauro Carvalho Chehab a écrit : > This patch causes a Kernel panic when called on a DVB driver. > > This reverts commit 2c1f6951a8a82e6de0d82b1158b5e493fc6c54ab. Seems rather tricky, since this commit fixed a possible (user induced) buffer overflow

[CFP] SIGGRAPH ASIA 2016 Emerging Technologies (E-Tech): Submission deadline is getting close.

2016-05-12 Thread Yuichi Itoh
SIGGRAPH ASIA 2016 Emerging Technologies (E-Tech): Submission deadline is getting close. Please visit SA16 website and submit your work! SIGGRAPH ASIA 2016 Website: https://sa2016.siggraph.org/en/ Research on interactive technologies is an important academic discipline to investigate a