mirror of
https://gitlab.freedesktop.org/emersion/libdisplay-info.git
synced 2024-12-25 21:59:08 +01:00
0eb10bda9e
Signed-off-by: Sebastian Wick <sebastian.wick@redhat.com>
39 lines
821 B
C
39 lines
821 B
C
#ifndef DI_EDID_DECODE_H
|
|
#define DI_EDID_DECODE_H
|
|
|
|
#include <stdbool.h>
|
|
|
|
#include <libdisplay-info/edid.h>
|
|
#include <libdisplay-info/cta.h>
|
|
#include <libdisplay-info/displayid.h>
|
|
|
|
struct uncommon_features {
|
|
bool color_point_descriptor;
|
|
bool color_management_data;
|
|
bool cta_transfer_characteristics;
|
|
};
|
|
|
|
extern struct uncommon_features uncommon_features;
|
|
|
|
struct di_edid;
|
|
struct di_edid_detailed_timing_def;
|
|
struct di_edid_cta;
|
|
struct di_displayid;
|
|
|
|
void
|
|
print_edid(const struct di_edid *edid);
|
|
|
|
void
|
|
print_detailed_timing_def(const struct di_edid_detailed_timing_def *def);
|
|
|
|
void
|
|
print_cta(const struct di_edid_cta *cta);
|
|
|
|
void
|
|
print_displayid(const struct di_displayid *displayid);
|
|
|
|
void
|
|
print_displayid_type_i_vii_timing(const struct di_displayid_type_i_vii_timing *t,
|
|
int indent, const char *prefix);
|
|
|
|
#endif
|