~fourdollars/edid-decode/+git/debian:upstream/latest

Last commit made on 2018-08-13
Get this branch:
git clone -b upstream/latest https://git.launchpad.net/~fourdollars/edid-decode/+git/debian
Only Shih-Yuan Lee can upload to this branch. If you are Shih-Yuan Lee please log in for upload directions.

Branch merges

Branch information

Name:
upstream/latest
Repository:
lp:~fourdollars/edid-decode/+git/debian

Recent commits

b2da151... by Hans Verkuil <email address hidden>

edid-decode: add --extract and --check options

Use --extract to extract the contents of the first EDID block
as hex values. The was the default in old versions, use this
option to see this data again. I don't see the use of this
hex dump, so I turned it off by default.

If you want to check the EDID if it conforms to the standards,
then use the --check option.

So now the default behavior of edid-decode when run without these
options is to just parse the EDID and show it in human-readable text,
which is what you want.

Signed-off-by: Hans Verkuil <email address hidden>

e9ffafc... by Hans Verkuil <email address hidden>

edid-decode: add options and new output formats

Add option parsing to edid-decode.

Add an option to select what output format to use besides the old
raw format.

Signed-off-by: Hans Verkuil <email address hidden>

ab18bef... by Hans Verkuil <email address hidden>

edid-decode: add HDMI Forum VSDB fields for HDMI 2.1b

Add support for the fields added by HDMI 2.1b.

Signed-off-by: Hans Verkuil <email address hidden>

8c81ccf... by Hans Verkuil <email address hidden>

Add Samsung UE49KS8005 EDID

Signed-off-by: Hans Verkuil <email address hidden>

7d8f41f... by Hans Verkuil <email address hidden>

edid-decode: simplify data block parsing

Refactor code, pass length to the data block parsers and put x at
the start of the actual block.

Signed-off-by: Hans Verkuil <email address hidden>

eee377b... by Hans Verkuil <email address hidden>

edid-decode: add support for QuantumData 980 EDID file format

QuantumData 980 uses an XML format for storing EDIDs. Add support for
those.

Signed-off-by: Hans Verkuil <email address hidden>

4437dd9... by Hans Verkuil <email address hidden>

edid-decode: use const for unsigned char pointers to the EDID

Make sure the EDID parsing functions do not modify the EDID by
accident.

Signed-off-by: Hans Verkuil <email address hidden>

3b26b8a... by Hans Verkuil <email address hidden>

edid-decode: fix wrong sample rate unit

Fixes https://bugs.freedesktop.org/show_bug.cgi?id=89348.

The unit for the bit rate is kb/s, not kHz.

Signed-off-by: Hans Verkuil <email address hidden>

9cb3744... by Hans Verkuil <email address hidden>

edid-decode: fix spurious warning about string termination

Fixes bug https://bugs.freedesktop.org/show_bug.cgi?id=93777:

The Monitor Name description string can be exactly 13 bytes, which
case there is no newline at the end. Yet this was considered an
error.

Simplify the code by relying on extract_string to do the checking.

The extract_string function also checks for trailing spaces and
warns about that.

Signed-off-by: Hans Verkuil <email address hidden>

bc1e846... by Hans Verkuil <email address hidden>

edid-decode: reformat to linux kernel coding style

What can I say? That's the coding style I'm used to.

Signed-off-by: Hans Verkuil <email address hidden>