Re: [PATCH libXrender 1/2] Avoid OOB write in XRenderQueryFilters

2017-09-09 Thread Julien Cristau
Anyone? This still looks wrong to me. Cheers, Julien On Sat, Jan 7, 2017 at 18:46:57 +0100, Julien Cristau wrote: > On Sun, Sep 25, 2016 at 22:50:45 +0200, Matthieu Herrb wrote: > > > From: Tobias Stoeckmann > > > > The memory for filter names is reserved right after

[PATCHv3 06/12] edid-decode: add DCI-P3 support in colorimetry block

2017-09-09 Thread Hans Verkuil
From: Hans Verkuil This bit was added in CTA-861-G. Signed-off-by: Hans Verkuil --- edid-decode.c | 2 ++ 1 file changed, 2 insertions(+) diff --git a/edid-decode.c b/edid-decode.c index 074cb821..2727fd18 100644 --- a/edid-decode.c +++

[PATCHv3 12/12] edid-decode: add support for the HDMI Audio Data Block

2017-09-09 Thread Hans Verkuil
From: Hans Verkuil This was introduced in HDMI 2.0. Signed-off-by: Hans Verkuil --- edid-decode.c | 70 ++- 1 file changed, 69 insertions(+), 1 deletion(-) diff --git a/edid-decode.c

[PATCHv3 05/12] edid-decode: add new CTA-861-G VIC codes

2017-09-09 Thread Hans Verkuil
From: Hans Verkuil The CTA-861-G standard (successor to CEA-861-F) adds new VIC codes. Signed-off-by: Hans Verkuil --- edid-decode.c | 93 +++ 1 file changed, 81 insertions(+), 12

[PATCHv3 07/12] edid-decode: support HLG, decode luminance values

2017-09-09 Thread Hans Verkuil
From: Hans Verkuil Add support for the new CTA-861-G Hybrid Log-Gamma transfer function. Also decode the luminance values in the static metadata block to cd/m^2 values. Signed-off-by: Hans Verkuil --- Makefile | 2 +- edid-decode.c | 15

[PATCHv3 02/12] edid-decode: update Audio Block with CEA-861.2

2017-09-09 Thread Hans Verkuil
From: Hans Verkuil Add support for extended audio formats and report the format specific information. Signed-off-by: Hans Verkuil --- edid-decode.c | 51 --- 1 file changed, 44 insertions(+), 7

[PATCHv3 01/12] edid-decode: fix broken bit tests

2017-09-09 Thread Hans Verkuil
From: Hans Verkuil 'if (x[0] >> i)' is not how you test if bit i is set. 'if (x[0] & (1 << i))' works a lot better! Signed-off-by: Hans Verkuil --- edid-decode.c | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git

[PATCHv3 08/12] edid-decode: add HDR Dynamic Metadata Data Block

2017-09-09 Thread Hans Verkuil
From: Hans Verkuil Support this CTA-861-G data block. Signed-off-by: Hans Verkuil --- edid-decode.c | 35 +++ 1 file changed, 35 insertions(+) diff --git a/edid-decode.c b/edid-decode.c index b2b116f3..0fe126cd

[PATCHv3 09/12] edid-decode: sync cea_block data block names with standard

2017-09-09 Thread Hans Verkuil
From: Hans Verkuil The names where a bit irregular, sync them up with the CTA-861-G standard. Signed-off-by: Hans Verkuil --- edid-decode.c | 20 ++-- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/edid-decode.c

[PATCHv3 03/12] edid-decode: update Speaker Allocation data block

2017-09-09 Thread Hans Verkuil
From: Hans Verkuil More bits are now in use, implement support for those. Signed-off-by: Hans Verkuil --- edid-decode.c | 39 +++ 1 file changed, 23 insertions(+), 16 deletions(-) diff --git a/edid-decode.c

[PATCHv3 04/12] edid-decode: add support for Room/Speaker data blocks

2017-09-09 Thread Hans Verkuil
From: Hans Verkuil Support the Room Configuration Data Block and the Speaker Location Data Block. Signed-off-by: Hans Verkuil --- edid-decode.c | 112 -- 1 file changed, 109 insertions(+),

[PATCHv3 10/12] edid-decode: rename CEA/cea to CTA/cta

2017-09-09 Thread Hans Verkuil
From: Hans Verkuil The Consumer Electronics Association was renamed to Consumer Technology Association. Update all cea references to cta. Signed-off-by: Hans Verkuil --- edid-decode.c | 130

[PATCHv3 00/12] edid-decode: support new blocks, fix bad bit tests

2017-09-09 Thread Hans Verkuil
From: Hans Verkuil This second round of patches adds support for new post-CTA-861-F EDID additions. The first patch fixes three badly broken bit-tests. Arnaud Vrac caught one of those three as well: https://patchwork.freedesktop.org/patch/174655/ But this patch fixes

[PATCHv3 11/12] edid-decode: add support for InfoFrame data block

2017-09-09 Thread Hans Verkuil
From: Hans Verkuil Support this CTA-861 block. Signed-off-by: Hans Verkuil --- edid-decode.c | 32 1 file changed, 32 insertions(+) diff --git a/edid-decode.c b/edid-decode.c index 550c2d58..c61fde8a 100644 ---