edid-decode: Changes to 'master'

Adam Jackson ajax at kemper.freedesktop.org
Mon Sep 18 14:43:12 UTC 2017


 Makefile      |    2 
 edid-decode.c |  561 +++++++++++++++++++++++++++++++++++++++++++++++-----------
 2 files changed, 462 insertions(+), 101 deletions(-)

New commits:
commit f56f329ed23a25d002352dedba1e8f092a47286f
Author: Hans Verkuil <hverkuil at xs4all.nl>
Date:   Tue Sep 12 15:54:26 2017 +0200

    edid-decode: Speaker location typo
    
    TpFH -> TpFR
    
    Signed-off-by: Hans Verkuil <hans.verkuil at cisco.com>

commit 49092ab19b8e2be13202a00fe0e2c5b949b1bf5a
Author: Hans Verkuil <hans.verkuil at cisco.com>
Date:   Sat Sep 9 12:08:30 2017 +0200

    edid-decode: add support for the HDMI Audio Data Block
    
    This was introduced in HDMI 2.0.
    
    Signed-off-by: Hans Verkuil <hans.verkuil at cisco.com>

commit 08fe5a9ad14313d57f68edda7c54b25e6ba8b66c
Author: Hans Verkuil <hans.verkuil at cisco.com>
Date:   Sat Sep 9 12:08:29 2017 +0200

    edid-decode: add support for InfoFrame data block
    
    Support this CTA-861 block.
    
    Signed-off-by: Hans Verkuil <hans.verkuil at cisco.com>

commit 977e74aec4ce19aaa96700d0f388b3c1553cefc1
Author: Hans Verkuil <hans.verkuil at cisco.com>
Date:   Sat Sep 9 12:08:28 2017 +0200

    edid-decode: rename CEA/cea to CTA/cta
    
    The Consumer Electronics Association was renamed to Consumer Technology
    Association. Update all cea references to cta.
    
    Signed-off-by: Hans Verkuil <hans.verkuil at cisco.com>

commit ba10f9acb2476647e8ae611a49436e1cba844dcf
Author: Hans Verkuil <hans.verkuil at cisco.com>
Date:   Sat Sep 9 12:08:27 2017 +0200

    edid-decode: sync cea_block data block names with standard
    
    The names where a bit irregular, sync them up with the CTA-861-G
    standard.
    
    Signed-off-by: Hans Verkuil <hans.verkuil at cisco.com>

commit 3a4d2ceed7d34add126a44fec9879808ca9fab0a
Author: Hans Verkuil <hans.verkuil at cisco.com>
Date:   Sat Sep 9 12:08:26 2017 +0200

    edid-decode: add HDR Dynamic Metadata Data Block
    
    Support this CTA-861-G data block.
    
    Signed-off-by: Hans Verkuil <hans.verkuil at cisco.com>

commit 331dc5beee3c1fc2a852f9ecc2173a43d4a99bbb
Author: Hans Verkuil <hans.verkuil at cisco.com>
Date:   Sat Sep 9 12:08:25 2017 +0200

    edid-decode: support HLG, decode luminance values
    
    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 <hans.verkuil at cisco.com>

commit 292a98304bc80b979c2c470e2e3fa03b545c8b68
Author: Hans Verkuil <hans.verkuil at cisco.com>
Date:   Sat Sep 9 12:08:24 2017 +0200

    edid-decode: add DCI-P3 support in colorimetry block
    
    This bit was added in CTA-861-G.
    
    Signed-off-by: Hans Verkuil <hans.verkuil at cisco.com>

commit 011a22eb80f62ff2e2d7dfbf296bb02deb8e5174
Author: Hans Verkuil <hans.verkuil at cisco.com>
Date:   Sat Sep 9 12:08:23 2017 +0200

    edid-decode: add new CTA-861-G VIC codes
    
    The CTA-861-G standard (successor to CEA-861-F) adds new VIC codes.
    
    Signed-off-by: Hans Verkuil <hans.verkuil at cisco.com>

commit 83101c4598d820a26122b8ccfe47cd299daacbcb
Author: Hans Verkuil <hans.verkuil at cisco.com>
Date:   Sat Sep 9 12:08:22 2017 +0200

    edid-decode: add support for Room/Speaker data blocks
    
    Support the Room Configuration Data Block and the Speaker Location
    Data Block.
    
    Signed-off-by: Hans Verkuil <hans.verkuil at cisco.com>

commit 307e9c2ea986ee928dbb4e2b2fb0eb4cdd63fb48
Author: Hans Verkuil <hans.verkuil at cisco.com>
Date:   Sat Sep 9 12:08:21 2017 +0200

    edid-decode: update Speaker Allocation data block
    
    More bits are now in use, implement support for those.
    
    Signed-off-by: Hans Verkuil <hans.verkuil at cisco.com>

commit cf3015d2190b649bb6eb8fa7bc7554ebbba0ab83
Author: Hans Verkuil <hans.verkuil at cisco.com>
Date:   Sat Sep 9 12:08:20 2017 +0200

    edid-decode: update Audio Block with CEA-861.2
    
    Add support for extended audio formats and report the format
    specific information.
    
    Signed-off-by: Hans Verkuil <hans.verkuil at cisco.com>

commit 51803d2bdc6f34b0ec82ea6a53fe30e73f937c8b
Author: Hans Verkuil <hans.verkuil at cisco.com>
Date:   Sat Sep 9 12:08:19 2017 +0200

    edid-decode: fix broken bit tests
    
    '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 <hans.verkuil at cisco.com>



More information about the xorg-commit mailing list