2018-12-05 12:12:48 +00:00
|
|
|
#ifndef RGB_TO_HDMI_H
|
|
|
|
#define RGB_TO_HDMI_H
|
|
|
|
|
|
|
|
// Property setters/getters
|
2019-03-17 06:07:53 +00:00
|
|
|
void set_profile(int value);
|
|
|
|
int get_profile();
|
2019-03-22 02:43:10 +00:00
|
|
|
void set_subprofile(int value);
|
|
|
|
int get_subprofile();
|
2019-03-07 04:25:50 +00:00
|
|
|
void set_paletteControl(int value);
|
|
|
|
int get_paletteControl();
|
2018-12-05 12:12:48 +00:00
|
|
|
void set_deinterlace(int value);
|
|
|
|
int get_deinterlace();
|
|
|
|
void set_scanlines(int on);
|
|
|
|
int get_scanlines();
|
|
|
|
void set_elk(int on);
|
|
|
|
int get_elk();
|
|
|
|
void set_vsync(int on);
|
|
|
|
int get_vsync();
|
|
|
|
void set_vlockmode(int val);
|
|
|
|
int get_vlockmode();
|
|
|
|
void set_vlockline(int val);
|
|
|
|
int get_vlockline();
|
|
|
|
#ifdef MULTI_BUFFER
|
|
|
|
void set_nbuffers(int val);
|
|
|
|
int get_nbuffers();
|
|
|
|
#endif
|
2019-03-11 23:17:18 +00:00
|
|
|
void set_autoswitch(int on);
|
|
|
|
int get_autoswitch();
|
2018-12-05 12:12:48 +00:00
|
|
|
void set_debug(int on);
|
|
|
|
int get_debug();
|
|
|
|
|
|
|
|
// Actions
|
|
|
|
void action_calibrate_clocks();
|
|
|
|
void action_calibrate_auto();
|
|
|
|
|
|
|
|
// Status
|
|
|
|
int is_genlocked();
|
|
|
|
|
|
|
|
#endif
|