Get the VESA descriptors @param edid The EDID byte array @return A 2D array with four 18-byte elements representing VESA descriptors
(byte[] edid)
| 178 | * @return A 2D array with four 18-byte elements representing VESA descriptors |
| 179 | */ |
| 180 | public static byte[][] getDescriptors(byte[] edid) { |
| 181 | byte[][] desc = new byte[4][18]; |
| 182 | for (int i = 0; i < desc.length; i++) { |
| 183 | System.arraycopy(edid, 54 + 18 * i, desc[i], 0, 18); |
| 184 | } |
| 185 | return desc; |
| 186 | } |
| 187 | |
| 188 | /** |
| 189 | * Get the VESA descriptor type |
no outgoing calls