Lines Matching refs:g_CaptureInfo

671 GOP_CAPTURE_INFO g_CaptureInfo;  variable
687 g_CaptureInfo.framecount = 1; in MApi_GOP_DWIN_CaptureOneFrame()
688 g_CaptureInfo.bEn = FALSE; in MApi_GOP_DWIN_CaptureOneFrame()
689 g_CaptureInfo.bWait = TRUE; in MApi_GOP_DWIN_CaptureOneFrame()
690 memcpy(&dwin_info, &g_CaptureInfo, sizeof(GOP_CAPTURE_INFO)); in MApi_GOP_DWIN_CaptureOneFrame()
718 g_CaptureInfo.framecount = 1; in MApi_GOP_DWIN_CaptureOneFrame2()
719 g_CaptureInfo.bEn = FALSE; in MApi_GOP_DWIN_CaptureOneFrame2()
720 g_CaptureInfo.bWait = FALSE; in MApi_GOP_DWIN_CaptureOneFrame2()
721 memcpy(&dwin_info, &g_CaptureInfo, sizeof(GOP_CAPTURE_INFO)); in MApi_GOP_DWIN_CaptureOneFrame2()
744 g_CaptureInfo.src = (EN_GOP_DWIN_SRC)enSrcSel; in MApi_GOP_DWIN_SetSourceSel()
1823 g_CaptureInfo.bEn = bEnable; in MApi_GOP_DWIN_Enable()
1825 if(g_CaptureInfo.fmt == GOP_DWIN_FMT_ARGB8888) in MApi_GOP_DWIN_Enable()
1830 if(g_CaptureInfo.rect.w*g_CaptureInfo.rect.h *bpp ==0) in MApi_GOP_DWIN_Enable()
1836 …fCnt = (g_CaptureInfo.addr1[0]-g_CaptureInfo.addr[0])/(g_CaptureInfo.rect.w*g_CaptureInfo.rect.h *… in MApi_GOP_DWIN_Enable()
1838 g_CaptureInfo.framecount = fCnt; in MApi_GOP_DWIN_Enable()
1841 memcpy(&dwin_info, &g_CaptureInfo, sizeof(GOP_CAPTURE_INFO)); in MApi_GOP_DWIN_Enable()
1915 pproperty->u16x = g_CaptureInfo.rect.x; in MApi_GOP_DWIN_GetWinProperty()
1916 pproperty->u16y = g_CaptureInfo.rect.y; in MApi_GOP_DWIN_GetWinProperty()
1917 pproperty->u16w = g_CaptureInfo.rect.w; in MApi_GOP_DWIN_GetWinProperty()
1918 pproperty->u16h = g_CaptureInfo.rect.h; in MApi_GOP_DWIN_GetWinProperty()
1919 pproperty->u16fbw = g_CaptureInfo.pitch; in MApi_GOP_DWIN_GetWinProperty()
1921 pproperty->u32fbaddr0 = g_CaptureInfo.addr[0]; in MApi_GOP_DWIN_GetWinProperty()
1922 pproperty->u32fbaddr1 = g_CaptureInfo.addr1[0]; in MApi_GOP_DWIN_GetWinProperty()
1942 g_CaptureInfo.rect.x = pproperty->u16x; in MApi_GOP_DWIN_SetWinProperty()
1943 g_CaptureInfo.rect.y = pproperty->u16y; in MApi_GOP_DWIN_SetWinProperty()
1944 g_CaptureInfo.rect.w = pproperty->u16w; in MApi_GOP_DWIN_SetWinProperty()
1945 g_CaptureInfo.rect.h = pproperty->u16h; in MApi_GOP_DWIN_SetWinProperty()
1946 g_CaptureInfo.pitch = pproperty->u16fbw; in MApi_GOP_DWIN_SetWinProperty()
1948 g_CaptureInfo.addr[0] = pproperty->u32fbaddr0; in MApi_GOP_DWIN_SetWinProperty()
1949 g_CaptureInfo.addr1[0] = pproperty->u32fbaddr1; in MApi_GOP_DWIN_SetWinProperty()
1990 g_CaptureInfo.fmt = (EN_GOP_DWIN_FMT)fmt; in MApi_GOP_DWIN_SetDataFmt()