mirror of
https://github.com/MiSTer-devel/Main_MiSTer.git
synced 2026-04-12 03:04:02 +00:00
* Override configuration based on video mode Configuration options can now be overridden based on the core's video mode. The config parser now supports sections with names in the format "video=WIDTHxHEIGHT[@VREFRESH]". When a core changes video mode, MiSTer reloads the config file and checks for a section matching the new mode. If one is found, the options in the section override options in the MiSTer/core sections. MiSTer will look for a section matching the width, height, and vertical refresh rate first. If none is found, it will fall back to a section matching the width and height but not specifying a refresh rate. If there is still no match, no overrides will be used. Also, VREFRESH must match exactly the output from video_info or the logs. To match 720x400 31.48KHz 70.1Hz, the section title would need to be [video=720x400@70.1]. * Move video section variables out of cfg_t
56 lines
1.3 KiB
C
56 lines
1.3 KiB
C
#ifndef VIDEO_H
|
|
#define VIDEO_H
|
|
|
|
#define VFILTER_HORZ 0
|
|
#define VFILTER_VERT 1
|
|
#define VFILTER_SCAN 2
|
|
|
|
struct VideoInfo
|
|
{
|
|
uint32_t width;
|
|
uint32_t height;
|
|
uint32_t htime;
|
|
uint32_t vtime;
|
|
uint32_t ptime;
|
|
uint32_t vtimeh;
|
|
|
|
bool interlaced;
|
|
bool rotated;
|
|
};
|
|
|
|
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);
|
|
|
|
bool video_is_rotated();
|
|
void video_core_description(char *str, size_t len);
|
|
void video_scaler_description(char *str, size_t len);
|
|
char* video_get_core_mode_name(int with_vrefresh = 1);
|
|
|
|
|
|
#endif // VIDEO_H
|