video_common: Moved DMT table into generic timing table.
Signed-off-by: Andrei-Liviu Simion <andrei.simion@xilinx.com>
This commit is contained in:
parent
3270234112
commit
528c43c8f0
2 changed files with 5 additions and 5 deletions
|
@ -60,7 +60,7 @@
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* This typedef enumerates the list of available standard display monitor
|
* This typedef enumerates the list of available standard display monitor
|
||||||
* timings as specified in the xvid_dmt_table.c file. The naming format is:
|
* timings as specified in the xvid_timings_table.c file. The naming format is:
|
||||||
*
|
*
|
||||||
* XVID_VM_<RESOLUTION>_<REFRESH RATE (HZ)>_<P|RB>
|
* XVID_VM_<RESOLUTION>_<REFRESH RATE (HZ)>_<P|RB>
|
||||||
*
|
*
|
||||||
|
@ -191,7 +191,7 @@ typedef struct {
|
||||||
|
|
||||||
/*************************** Variable Declarations ****************************/
|
/*************************** Variable Declarations ****************************/
|
||||||
|
|
||||||
extern XVid_DmtMode XVid_DmtModes[];
|
extern const XVid_DmtMode XVid_DmtModes[];
|
||||||
|
|
||||||
/**************************** Function Prototypes *****************************/
|
/**************************** Function Prototypes *****************************/
|
||||||
|
|
||||||
|
|
|
@ -32,9 +32,9 @@
|
||||||
/******************************************************************************/
|
/******************************************************************************/
|
||||||
/**
|
/**
|
||||||
*
|
*
|
||||||
* @file xvid_dmt_table.c
|
* @file xvid_timings_table.c
|
||||||
*
|
*
|
||||||
* Contains display monitor timing (DMT) modes for various standard resolutions.
|
* Contains video timings for various standard resolutions.
|
||||||
*
|
*
|
||||||
* @note None.
|
* @note None.
|
||||||
*
|
*
|
||||||
|
@ -71,7 +71,7 @@
|
||||||
* 13) Vertical sync time (lines)
|
* 13) Vertical sync time (lines)
|
||||||
* 14) Vertical back porch (lines)
|
* 14) Vertical back porch (lines)
|
||||||
*/
|
*/
|
||||||
XVid_DmtMode XVid_DmtModes[] =
|
const XVid_DmtMode XVid_DmtModes[] =
|
||||||
{
|
{
|
||||||
{XVID_VM_640x480_60_P, 0x04, 640, 480, 25175, 0, 1, 1, 8, 96, 40, 2, 2, 25},
|
{XVID_VM_640x480_60_P, 0x04, 640, 480, 25175, 0, 1, 1, 8, 96, 40, 2, 2, 25},
|
||||||
{XVID_VM_800x600_60_P, 0x09, 800, 600, 40000, 0, 0, 0, 40, 128, 88, 1, 4, 23},
|
{XVID_VM_800x600_60_P, 0x09, 800, 600, 40000, 0, 0, 0, 40, 128, 88, 1, 4, 23},
|
Loading…
Add table
Reference in a new issue