This thread has been locked.

If you have a related question, please click the "Ask a related question" button in the top right corner. The newly created question will be automatically linked to this question.

DM6467T EVM使用什么类型的摄像机作为视频输入源?

Other Parts Discussed in Thread: TVP5147

有DM6747T EVM, DM8148EVM,AM1808EVM平台。我不知道用什么样的CCD摄像头作为输入源。

现有:

AN-5321A半球摄像机

像素:PAL:512H×582V NTSC:512H×492V

CCD类型:1/3"SONYCCD
信号制式:PAL/NTSC
分辨率:420TVL

EVM6467T开发板的例子使用的类型 

/* ------------------------------------------------------------------------ *
* Video Modes *
* ------------------------------------------------------------------------ */
/* Standard Def */
#define MODE_SDTV_480I ( 480 + 0 ) // 720 x 480 aka NTSC
#define MODE_SDTV_576I ( 576 + 0 ) // 720 x 576 aka PAL

/* Enchanced Def */
#define MODE_EDTV_480P ( 480 + 1 ) // 720 x 480 aka Progressive NTSC
#define MODE_EDTV_576P ( 576 + 1 ) // 720 x 576 aka Progressive PAL

/* High Def */
#define MODE_HDTV_720P ( 720 + 1 ) // 1280 x 720 Progressive
#define MODE_HDTV_1080I ( 1080 + 0 ) // 1920 x 1080 Interlaced
#define MODE_HDTV_1080P ( 1080 + 1 ) // 1920 x 1080 Progressive

/* ------------------------------------------------------------------------ *
* Connectors *
* ------------------------------------------------------------------------ */
#define CONN_COMPOSITE ( 1 ) // CVBS
#define CONN_SVIDEO ( 2 ) // YPbPr
#define CONN_COMPONENT ( 3 ) // YPbPr / RGB

不知道如何来匹配?或者需要什么样的视频源,能把例子跑起来?