mirror of
https://github.com/marqs85/ossc.git
synced 2024-11-04 13:06:38 +00:00
827df7930f
* Advanced timing tweaker implemented
86 lines
2.2 KiB
C
86 lines
2.2 KiB
C
//
|
|
// Copyright (C) 2015-2016 Markus Hiienkari <mhiienka@niksula.hut.fi>
|
|
//
|
|
// This file is part of Open Source Scan Converter project.
|
|
//
|
|
// This program is free software: you can redistribute it and/or modify
|
|
// it under the terms of the GNU General Public License as published by
|
|
// the Free Software Foundation, either version 3 of the License, or
|
|
// (at your option) any later version.
|
|
//
|
|
// This program is distributed in the hope that it will be useful,
|
|
// but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
// GNU General Public License for more details.
|
|
//
|
|
// You should have received a copy of the GNU General Public License
|
|
// along with this program. If not, see <http://www.gnu.org/licenses/>.
|
|
//
|
|
|
|
#ifndef VIDEO_MODES_H_
|
|
#define VIDEO_MODES_H_
|
|
|
|
#include <alt_types.h>
|
|
#include "sysconfig.h"
|
|
|
|
#define H_ACTIVE_MIN 200
|
|
#define H_ACTIVE_MAX 1920
|
|
#define V_ACTIVE_MIN 200
|
|
#define V_ACTIVE_MAX 1200
|
|
#define H_TOTAL_MIN 300
|
|
#define H_TOTAL_MAX 2300
|
|
#define H_SYNCLEN_MIN 10
|
|
#define H_SYNCLEN_MAX 200
|
|
#define H_BPORCH_MIN 1
|
|
#define H_BPORCH_MAX 255
|
|
#define V_BPORCH_MIN 1
|
|
#define V_BPORCH_MAX 255
|
|
|
|
typedef enum {
|
|
FORMAT_RGBS = 0,
|
|
FORMAT_RGBHV = 1,
|
|
FORMAT_RGsB = 2,
|
|
FORMAT_YPbPr = 3
|
|
} video_format;
|
|
|
|
typedef enum {
|
|
VIDEO_LDTV = (1<<0),
|
|
VIDEO_SDTV = (1<<1),
|
|
VIDEO_EDTV = (1<<2),
|
|
VIDEO_HDTV = (1<<3),
|
|
VIDEO_PC = (1<<4)
|
|
} video_type;
|
|
|
|
#define MODE_L3ENABLE_MASK 0xf
|
|
|
|
typedef enum {
|
|
MODE_L3_MODE0 = (1<<0),
|
|
MODE_L3_MODE1 = (1<<1),
|
|
MODE_L3_MODE2 = (1<<2),
|
|
MODE_L3_MODE3 = (1<<3),
|
|
MODE_L2ENABLE = (1<<4),
|
|
MODE_INTERLACED = (1<<5),
|
|
MODE_PLLDIVBY2 = (1<<6),
|
|
MODE_DTV480P = (1<<7),
|
|
MODE_VGA480P = (1<<8)
|
|
} mode_flags;
|
|
|
|
typedef struct {
|
|
char name[10];
|
|
alt_u16 h_active;
|
|
alt_u16 v_active;
|
|
alt_u16 hz_x100;
|
|
alt_u16 h_total;
|
|
alt_u16 v_total;
|
|
alt_u8 h_backporch;
|
|
alt_u8 v_backporch;
|
|
alt_u8 h_synclen;
|
|
alt_u8 v_synclen;
|
|
video_type type;
|
|
mode_flags flags;
|
|
} mode_data_t;
|
|
|
|
alt_8 get_mode_id(alt_u32 totlines, alt_u8 progressive, alt_u32 hz, video_type typemask, alt_u8 linemult_target, alt_u8 l3_mode, alt_u8 s480p_mode);
|
|
|
|
#endif /* VIDEO_MODES_H_ */
|