diff options
author | Guillaume Rousse <guillomovitch@mageia.org> | 2012-05-22 21:49:32 +0000 |
---|---|---|
committer | Guillaume Rousse <guillomovitch@mageia.org> | 2012-05-22 21:49:32 +0000 |
commit | 6653ca790885a4086078b697994ad398ba3ed029 (patch) | |
tree | f228cd2544ad26489ffe22d0be452df0f765beb3 /lib | |
parent | 8bf161aa4ba4e4d75db1f724375d3dda13e2b8eb (diff) | |
download | perl-Parse-EDID-6653ca790885a4086078b697994ad398ba3ed029.tar perl-Parse-EDID-6653ca790885a4086078b697994ad398ba3ed029.tar.gz perl-Parse-EDID-6653ca790885a4086078b697994ad398ba3ed029.tar.bz2 perl-Parse-EDID-6653ca790885a4086078b697994ad398ba3ed029.tar.xz perl-Parse-EDID-6653ca790885a4086078b697994ad398ba3ed029.zip |
initial POD documentation
Diffstat (limited to 'lib')
-rwxr-xr-x | lib/Parse/EDID.pm | 27 |
1 files changed, 27 insertions, 0 deletions
diff --git a/lib/Parse/EDID.pm b/lib/Parse/EDID.pm index 22865d3..2bfef38 100755 --- a/lib/Parse/EDID.pm +++ b/lib/Parse/EDID.pm @@ -629,3 +629,30 @@ sub group_by2 { } 1; +__END__ + +=head1 NAME + +Parse::EDID - Extended display identification data (EDID) parser + +=head1 DESCRIPTION + +This module provides some function to parse Extended display identification +data binary data structures. + +=head1 FUNCTIONS + +=head2 parse_edid($raw_edid) + +Parse the raw binary edid data, as a string, and return a corresponding data +structure, as an hashref. + +=head2 check_parsed_edid($edid) + +Check the data structure, and return an error message if anything is wrong, an +empty string otherwise. + +=head2 find_edid_in_string($string) + +Extract raw binary edid data from another tool text output, such as xrandr +--prop. |