37 lines
950 B
C
37 lines
950 B
C
#ifndef VIDEO_H
|
|
#define VIDEO_H
|
|
|
|
#define VFILTER_HORZ 0
|
|
#define VFILTER_VERT 1
|
|
#define VFILTER_SCAN 2
|
|
|
|
int video_get_scaler_flt(int type);
|
|
void video_set_scaler_flt(int type, int n);
|
|
char* video_get_scaler_coeff(int type, int only_name = 1);
|
|
void video_set_scaler_coeff(int type, const char *name);
|
|
|
|
int video_get_gamma_en();
|
|
void video_set_gamma_en(int n);
|
|
char* video_get_gamma_curve(int only_name = 1);
|
|
void video_set_gamma_curve(const char *name);
|
|
|
|
int video_get_shadow_mask_mode();
|
|
void video_set_shadow_mask_mode(int n);
|
|
char* video_get_shadow_mask(int only_name = 1);
|
|
void video_set_shadow_mask(const char *name);
|
|
void video_loadPreset(char *name);
|
|
|
|
void video_mode_load();
|
|
void video_mode_adjust();
|
|
|
|
int hasAPI1_5();
|
|
|
|
void video_fb_enable(int enable, int n = 0);
|
|
int video_fb_state();
|
|
void video_menu_bg(int n, int idle = 0);
|
|
int video_bg_has_picture();
|
|
int video_chvt(int num);
|
|
void video_cmd(char *cmd);
|
|
|
|
#endif // VIDEO_H
|