123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504 |
- /******************************************************************************
- Copyright (C), 2017, Hisilicon Tech. Co., Ltd.
- ******************************************************************************
- File Name : hi_comm_vo.h
- Version : Initial Draft
- Author : Hisilicon multimedia software group
- Created : 2016/11/09
- Last Modified :
- Description : Common defination Of video output
- Function List :
- ******************************************************************************/
- #ifndef __HI_COMM_VO_H__
- #define __HI_COMM_VO_H__
- #include "hi_type.h"
- #include "hi_common.h"
- #include "hi_comm_video.h"
- #ifdef __cplusplus
- #if __cplusplus
- extern "C"{
- #endif
- #endif /* End of #ifdef __cplusplus */
- typedef enum hiEN_VOU_ERR_CODE_E
- {
- EN_ERR_VO_DEV_NOT_CONFIG = 0x40,
- EN_ERR_VO_DEV_NOT_ENABLE = 0x41,
- EN_ERR_VO_DEV_HAS_ENABLED = 0x42,
- EN_ERR_VO_DEV_HAS_BINDED = 0x43,
- EN_ERR_VO_DEV_NOT_BINDED = 0x44,
- ERR_VO_NOT_ENABLE = 0x45,
- ERR_VO_NOT_DISABLE = 0x46,
- ERR_VO_NOT_CONFIG = 0x47,
- ERR_VO_CHN_NOT_DISABLE = 0x48,
- ERR_VO_CHN_NOT_ENABLE = 0x49,
- ERR_VO_CHN_NOT_CONFIG = 0x4a,
- ERR_VO_CHN_NOT_ALLOC = 0x4b,
- ERR_VO_CCD_INVALID_PAT = 0x4c,
- ERR_VO_CCD_INVALID_POS = 0x4d,
- ERR_VO_WAIT_TIMEOUT = 0x4e,
- ERR_VO_INVALID_VFRAME = 0x4f,
- ERR_VO_INVALID_RECT_PARA = 0x50,
- ERR_VO_SETBEGIN_ALREADY = 0x51,
- ERR_VO_SETBEGIN_NOTYET = 0x52,
- ERR_VO_SETEND_ALREADY = 0x53,
- ERR_VO_SETEND_NOTYET = 0x54,
- ERR_VO_GRP_INVALID_ID = 0x55,
- ERR_VO_GRP_NOT_CREATE = 0x56,
- ERR_VO_GRP_HAS_CREATED = 0x57,
- ERR_VO_GRP_NOT_DESTROY = 0x58,
- ERR_VO_GRP_CHN_FULL = 0x59,
- ERR_VO_GRP_CHN_EMPTY = 0x5a,
- ERR_VO_GRP_CHN_NOT_EMPTY = 0x5b,
- ERR_VO_GRP_INVALID_SYN_MODE = 0x5c,
- ERR_VO_GRP_INVALID_BASE_PTS = 0x5d,
- ERR_VO_GRP_NOT_START = 0x5e,
- ERR_VO_GRP_NOT_STOP = 0x5f,
- ERR_VO_GRP_INVALID_FRMRATE = 0x60,
- ERR_VO_GRP_CHN_HAS_REG = 0x61,
- ERR_VO_GRP_CHN_NOT_REG = 0x62,
- ERR_VO_GRP_CHN_NOT_UNREG = 0x63,
- ERR_VO_GRP_BASE_NOT_CFG = 0x64,
- ERR_GFX_NOT_DISABLE = 0x65,
- ERR_GFX_NOT_BIND = 0x66,
- ERR_GFX_NOT_UNBIND = 0x67,
- ERR_GFX_INVALID_ID = 0x68,
- ERR_VO_WBC_NOT_DISABLE = 0x69,
- ERR_VO_WBC_NOT_CONFIG = 0x6a,
- ERR_VO_CHN_AREA_OVERLAP = 0x6b,
- EN_ERR_INVALID_WBCID = 0x6c,
- EN_ERR_INVALID_LAYERID = 0x6d,
- EN_ERR_VO_VIDEO_HAS_BINDED = 0x6e,
- EN_ERR_VO_VIDEO_NOT_BINDED = 0x6f,
- ERR_VO_WBC_HAS_BIND = 0x70,
- ERR_VO_WBC_HAS_CONFIG = 0x71,
- ERR_VO_WBC_NOT_BIND = 0x72,
- /* new added */
- ERR_VO_BUTT
- }EN_VOU_ERR_CODE_E;
- /* System define error code */
- #define HI_ERR_VO_BUSY HI_DEF_ERR(HI_ID_VO, EN_ERR_LEVEL_ERROR, EN_ERR_BUSY)
- #define HI_ERR_VO_NO_MEM HI_DEF_ERR(HI_ID_VO, EN_ERR_LEVEL_ERROR, EN_ERR_NOMEM)
- #define HI_ERR_VO_NULL_PTR HI_DEF_ERR(HI_ID_VO, EN_ERR_LEVEL_ERROR, EN_ERR_NULL_PTR)
- #define HI_ERR_VO_SYS_NOTREADY HI_DEF_ERR(HI_ID_VO, EN_ERR_LEVEL_ERROR, EN_ERR_SYS_NOTREADY)
- #define HI_ERR_VO_INVALID_DEVID HI_DEF_ERR(HI_ID_VO, EN_ERR_LEVEL_ERROR, EN_ERR_INVALID_DEVID)
- #define HI_ERR_VO_INVALID_CHNID HI_DEF_ERR(HI_ID_VO, EN_ERR_LEVEL_ERROR, EN_ERR_INVALID_CHNID)
- #define HI_ERR_VO_ILLEGAL_PARAM HI_DEF_ERR(HI_ID_VO, EN_ERR_LEVEL_ERROR, EN_ERR_ILLEGAL_PARAM)
- #define HI_ERR_VO_NOT_SUPPORT HI_DEF_ERR(HI_ID_VO, EN_ERR_LEVEL_ERROR, EN_ERR_NOT_SUPPORT)
- #define HI_ERR_VO_NOT_PERMIT HI_DEF_ERR(HI_ID_VO, EN_ERR_LEVEL_ERROR, EN_ERR_NOT_PERM)
- #define HI_ERR_VO_INVALID_WBCID HI_DEF_ERR(HI_ID_VO, EN_ERR_LEVEL_ERROR, EN_ERR_INVALID_WBCID)
- #define HI_ERR_VO_INVALID_LAYERID HI_DEF_ERR(HI_ID_VO, EN_ERR_LEVEL_ERROR, EN_ERR_INVALID_LAYERID)
- /* Device relative error code */
- #define HI_ERR_VO_DEV_NOT_CONFIG HI_DEF_ERR(HI_ID_VO, EN_ERR_LEVEL_ERROR, EN_ERR_VO_DEV_NOT_CONFIG)
- #define HI_ERR_VO_DEV_NOT_ENABLE HI_DEF_ERR(HI_ID_VO, EN_ERR_LEVEL_ERROR, EN_ERR_VO_DEV_NOT_ENABLE)
- #define HI_ERR_VO_DEV_HAS_ENABLED HI_DEF_ERR(HI_ID_VO, EN_ERR_LEVEL_ERROR, EN_ERR_VO_DEV_HAS_ENABLED)
- #define HI_ERR_VO_DEV_HAS_BINDED HI_DEF_ERR(HI_ID_VO, EN_ERR_LEVEL_ERROR, EN_ERR_VO_DEV_HAS_BINDED)
- #define HI_ERR_VO_DEV_NOT_BINDED HI_DEF_ERR(HI_ID_VO, EN_ERR_LEVEL_ERROR, EN_ERR_VO_DEV_NOT_BINDED)
- /* Video layer relative error code */
- #define HI_ERR_VO_VIDEO_NOT_ENABLE HI_DEF_ERR(HI_ID_VO, EN_ERR_LEVEL_ERROR, ERR_VO_NOT_ENABLE)
- #define HI_ERR_VO_VIDEO_NOT_DISABLE HI_DEF_ERR(HI_ID_VO, EN_ERR_LEVEL_ERROR, ERR_VO_NOT_DISABLE)
- #define HI_ERR_VO_VIDEO_NOT_CONFIG HI_DEF_ERR(HI_ID_VO, EN_ERR_LEVEL_ERROR, ERR_VO_NOT_CONFIG)
- #define HI_ERR_VO_VIDEO_HAS_BINDED HI_DEF_ERR(HI_ID_VO, EN_ERR_LEVEL_ERROR, EN_ERR_VO_VIDEO_HAS_BINDED)
- #define HI_ERR_VO_VIDEO_NOT_BINDED HI_DEF_ERR(HI_ID_VO, EN_ERR_LEVEL_ERROR, EN_ERR_VO_VIDEO_NOT_BINDED)
- /*WBC Relative error code*/
- #define HI_ERR_VO_WBC_NOT_DISABLE HI_DEF_ERR(HI_ID_VO, EN_ERR_LEVEL_ERROR, ERR_VO_WBC_NOT_DISABLE)
- #define HI_ERR_VO_WBC_NOT_CONFIG HI_DEF_ERR(HI_ID_VO, EN_ERR_LEVEL_ERROR, ERR_VO_WBC_NOT_CONFIG)
- #define HI_ERR_VO_WBC_HAS_CONFIG HI_DEF_ERR(HI_ID_VO, EN_ERR_LEVEL_ERROR, ERR_VO_WBC_HAS_CONFIG)
- #define HI_ERR_VO_WBC_NOT_BIND HI_DEF_ERR(HI_ID_VO, EN_ERR_LEVEL_ERROR, ERR_VO_WBC_NOT_BIND)
- #define HI_ERR_VO_WBC_HAS_BIND HI_DEF_ERR(HI_ID_VO, EN_ERR_LEVEL_ERROR, ERR_VO_WBC_HAS_BIND)
- /* Channel Relative error code */
- #define HI_ERR_VO_CHN_NOT_DISABLE HI_DEF_ERR(HI_ID_VO, EN_ERR_LEVEL_ERROR, ERR_VO_CHN_NOT_DISABLE)
- #define HI_ERR_VO_CHN_NOT_ENABLE HI_DEF_ERR(HI_ID_VO, EN_ERR_LEVEL_ERROR, ERR_VO_CHN_NOT_ENABLE)
- #define HI_ERR_VO_CHN_NOT_CONFIG HI_DEF_ERR(HI_ID_VO, EN_ERR_LEVEL_ERROR, ERR_VO_CHN_NOT_CONFIG)
- #define HI_ERR_VO_CHN_NOT_ALLOC HI_DEF_ERR(HI_ID_VO, EN_ERR_LEVEL_ERROR, ERR_VO_CHN_NOT_ALLOC)
- #define HI_ERR_VO_CHN_AREA_OVERLAP HI_DEF_ERR(HI_ID_VO, EN_ERR_LEVEL_ERROR, ERR_VO_CHN_AREA_OVERLAP)
- /* Cascade Relatvie error code */
- #define HI_ERR_VO_INVALID_PATTERN HI_DEF_ERR(HI_ID_VO, EN_ERR_LEVEL_ERROR, ERR_VO_CCD_INVALID_PAT)
- #define HI_ERR_VO_INVALID_POSITION HI_DEF_ERR(HI_ID_VO, EN_ERR_LEVEL_ERROR, ERR_VO_CCD_INVALID_POS)
- /* MISCellaneous error code*/
- #define HI_ERR_VO_WAIT_TIMEOUT HI_DEF_ERR(HI_ID_VO, EN_ERR_LEVEL_ERROR, ERR_VO_WAIT_TIMEOUT)
- #define HI_ERR_VO_INVALID_VFRAME HI_DEF_ERR(HI_ID_VO, EN_ERR_LEVEL_ERROR, ERR_VO_INVALID_VFRAME)
- #define HI_ERR_VO_INVALID_RECT_PARA HI_DEF_ERR(HI_ID_VO, EN_ERR_LEVEL_ERROR, ERR_VO_INVALID_RECT_PARA)
- #define HI_ERR_VO_SETBEGIN_ALREADY HI_DEF_ERR(HI_ID_VO, EN_ERR_LEVEL_ERROR, ERR_VO_SETBEGIN_ALREADY)
- #define HI_ERR_VO_SETBEGIN_NOTYET HI_DEF_ERR(HI_ID_VO, EN_ERR_LEVEL_ERROR, ERR_VO_SETBEGIN_NOTYET)
- #define HI_ERR_VO_SETEND_ALREADY HI_DEF_ERR(HI_ID_VO, EN_ERR_LEVEL_ERROR, ERR_VO_SETEND_ALREADY)
- #define HI_ERR_VO_SETEND_NOTYET HI_DEF_ERR(HI_ID_VO, EN_ERR_LEVEL_ERROR, ERR_VO_SETEND_NOTYET)
- /* Synchronization group relative error code */
- #define HI_ERR_VO_GRP_INVALID_ID HI_DEF_ERR(HI_ID_VO, EN_ERR_LEVEL_ERROR, ERR_VO_GRP_INVALID_ID)
- #define HI_ERR_VO_GRP_NOT_CREATE HI_DEF_ERR(HI_ID_VO, EN_ERR_LEVEL_ERROR, ERR_VO_GRP_NOT_CREATE)
- #define HI_ERR_VO_GRP_HAS_CREATED HI_DEF_ERR(HI_ID_VO, EN_ERR_LEVEL_ERROR, ERR_VO_GRP_HAS_CREATED)
- #define HI_ERR_VO_GRP_NOT_DESTROY HI_DEF_ERR(HI_ID_VO, EN_ERR_LEVEL_ERROR, ERR_VO_GRP_NOT_DESTROY)
- #define HI_ERR_VO_GRP_CHN_FULL HI_DEF_ERR(HI_ID_VO, EN_ERR_LEVEL_ERROR, ERR_VO_GRP_CHN_FULL)
- #define HI_ERR_VO_GRP_CHN_EMPTY HI_DEF_ERR(HI_ID_VO, EN_ERR_LEVEL_ERROR, ERR_VO_GRP_CHN_EMPTY)
- #define HI_ERR_VO_GRP_CHN_NOT_EMPTY HI_DEF_ERR(HI_ID_VO, EN_ERR_LEVEL_ERROR, ERR_VO_GRP_CHN_NOT_EMPTY)
- #define HI_ERR_VO_GRP_INVALID_SYN_MODE HI_DEF_ERR(HI_ID_VO, EN_ERR_LEVEL_ERROR, ERR_VO_GRP_INVALID_SYN_MODE)
- #define HI_ERR_VO_GRP_INVALID_BASE_PTS HI_DEF_ERR(HI_ID_VO, EN_ERR_LEVEL_ERROR, ERR_VO_GRP_INVALID_BASE_PTS)
- #define HI_ERR_VO_GRP_NOT_START HI_DEF_ERR(HI_ID_VO, EN_ERR_LEVEL_ERROR, ERR_VO_GRP_NOT_START)
- #define HI_ERR_VO_GRP_NOT_STOP HI_DEF_ERR(HI_ID_VO, EN_ERR_LEVEL_ERROR, ERR_VO_GRP_NOT_STOP)
- #define HI_ERR_VO_GRP_INVALID_FRMRATE HI_DEF_ERR(HI_ID_VO, EN_ERR_LEVEL_ERROR, ERR_VO_GRP_INVALID_FRMRATE)
- #define HI_ERR_VO_GRP_CHN_HAS_REG HI_DEF_ERR(HI_ID_VO, EN_ERR_LEVEL_ERROR, ERR_VO_GRP_CHN_HAS_REG)
- #define HI_ERR_VO_GRP_CHN_NOT_REG HI_DEF_ERR(HI_ID_VO, EN_ERR_LEVEL_ERROR, ERR_VO_GRP_CHN_NOT_REG)
- #define HI_ERR_VO_GRP_CHN_NOT_UNREG HI_DEF_ERR(HI_ID_VO, EN_ERR_LEVEL_ERROR, ERR_VO_GRP_CHN_NOT_UNREG)
- #define HI_ERR_VO_GRP_BASE_NOT_CFG HI_DEF_ERR(HI_ID_VO, EN_ERR_LEVEL_ERROR, ERR_VO_GRP_BASE_NOT_CFG)
- /* Graphics layer relative error code */
- #define HI_ERR_VO_GFX_NOT_DISABLE HI_DEF_ERR(HI_ID_VO, EN_ERR_LEVEL_ERROR, ERR_GFX_NOT_DISABLE)
- #define HI_ERR_VO_GFX_NOT_BIND HI_DEF_ERR(HI_ID_VO, EN_ERR_LEVEL_ERROR, ERR_GFX_NOT_BIND)
- #define HI_ERR_VO_GFX_NOT_UNBIND HI_DEF_ERR(HI_ID_VO, EN_ERR_LEVEL_ERROR, ERR_GFX_NOT_UNBIND)
- #define HI_ERR_VO_GFX_INVALID_ID HI_DEF_ERR(HI_ID_VO, EN_ERR_LEVEL_ERROR, ERR_GFX_INVALID_ID)
- /* VO video output interface type */
- #define VO_INTF_CVBS (0x01L<<0)
- #define VO_INTF_YPBPR (0x01L<<1)
- #define VO_INTF_VGA (0x01L<<2)
- #define VO_INTF_BT656 (0x01L<<3)
- #define VO_INTF_BT1120 (0x01L<<4)
- #define VO_INTF_HDMI (0x01L<<5)
- #define VO_INTF_LCD (0x01L<<6)
- #define VO_INTF_BT656_H (0x01L<<7)
- #define VO_INTF_BT656_L (0x01L<<8)
- #define VO_INTF_LCD_6BIT (0x01L<<9)
- #define VO_INTF_LCD_8BIT (0x01L<<10)
- #define VO_INTF_LCD_16BIT (0x01L<<11)
- #define VO_INTF_LCD_18BIT (0x01L<<12)
- #define VO_INTF_LCD_24BIT (0x01L<<13)
- #define VO_INTF_MIPI (0x01L<<14)
- #define VO_INTF_MIPI_SLAVE (0x01L<<15)
- typedef HI_U32 VO_INTF_TYPE_E;
- typedef enum hiVO_INTF_SYNC_E
- {
- VO_OUTPUT_PAL = 0, /* PAL standard*/
- VO_OUTPUT_NTSC, /* NTSC standard */
- VO_OUTPUT_1080P24, /* 1920 x 1080 at 24 Hz. */
- VO_OUTPUT_1080P25, /* 1920 x 1080 at 25 Hz. */
- VO_OUTPUT_1080P30, /* 1920 x 1080 at 30 Hz. */
- VO_OUTPUT_720P50, /* 1280 x 720 at 50 Hz. */
- VO_OUTPUT_720P60, /* 1280 x 720 at 60 Hz. */
- VO_OUTPUT_1080I50, /* 1920 x 1080 at 50 Hz, interlace. */
- VO_OUTPUT_1080I60, /* 1920 x 1080 at 60 Hz, interlace. */
- VO_OUTPUT_1080P50, /* 1920 x 1080 at 50 Hz. */
- VO_OUTPUT_1080P60, /* 1920 x 1080 at 60 Hz. */
- VO_OUTPUT_576P50, /* 720 x 576 at 50 Hz. */
- VO_OUTPUT_480P60, /* 720 x 480 at 60 Hz. */
- VO_OUTPUT_800x600_60, /* VESA 800 x 600 at 60 Hz (non-interlaced) */
- VO_OUTPUT_1024x768_60, /* VESA 1024 x 768 at 60 Hz (non-interlaced) */
- VO_OUTPUT_1280x1024_60, /* VESA 1280 x 1024 at 60 Hz (non-interlaced) */
- VO_OUTPUT_1366x768_60, /* VESA 1366 x 768 at 60 Hz (non-interlaced) */
- VO_OUTPUT_1440x900_60, /* VESA 1440 x 900 at 60 Hz (non-interlaced) CVT Compliant */
- VO_OUTPUT_1280x800_60, /* 1280*800@60Hz VGA@60Hz*/
- VO_OUTPUT_1600x1200_60, /* VESA 1600 x 1200 at 60 Hz (non-interlaced) */
- VO_OUTPUT_1680x1050_60, /* VESA 1680 x 1050 at 60 Hz (non-interlaced) */
- VO_OUTPUT_1920x1200_60, /* VESA 1920 x 1600 at 60 Hz (non-interlaced) CVT (Reduced Blanking)*/
- VO_OUTPUT_640x480_60, /* VESA 640 x 480 at 60 Hz (non-interlaced) CVT */
- VO_OUTPUT_960H_PAL, /* ITU-R BT.1302 960 x 576 at 50 Hz (interlaced)*/
- VO_OUTPUT_960H_NTSC, /* ITU-R BT.1302 960 x 480 at 60 Hz (interlaced)*/
- VO_OUTPUT_1920x2160_30, /* 1920x2160_30 */
- VO_OUTPUT_2560x1440_30, /* 2560x1440_30 */
- VO_OUTPUT_2560x1600_60, /* 2560x1600_60 */
- VO_OUTPUT_3840x2160_24, /* 3840x2160_24 */
- VO_OUTPUT_3840x2160_25, /* 3840x2160_25 */
- VO_OUTPUT_3840x2160_30, /* 3840x2160_30 */
- VO_OUTPUT_3840x2160_50, /* 3840x2160_50 */
- VO_OUTPUT_3840x2160_60, /* 3840x2160_60 */
- VO_OUTPUT_4096x2160_24, /* 4096x2160_24 */
- VO_OUTPUT_4096x2160_25, /* 4096x2160_25 */
- VO_OUTPUT_4096x2160_30, /* 4096x2160_30 */
- VO_OUTPUT_4096x2160_50, /* 4096x2160_50 */
- VO_OUTPUT_4096x2160_60, /* 4096x2160_60 */
- VO_OUTPUT_320x240_60, /* For ota5182 at 60 Hz (8bit) */
- VO_OUTPUT_320x240_50, /* For ili9342 at 50 Hz (6bit) */
- VO_OUTPUT_240x320_50, /* For ili9341 at 50 Hz (6bit) */
- VO_OUTPUT_240x320_60, /* For ili9341 at 60 Hz (16bit) */
- VO_OUTPUT_800x600_50, /* For LCD at 50 Hz (24bit) */
- VO_OUTPUT_720x1280_60, /* For MIPI DSI Tx 720 x1280 at 60 Hz */
- VO_OUTPUT_1080x1920_60, /* For MIPI DSI Tx 1080x1920 at 60 Hz */
- VO_OUTPUT_7680x4320_30, /* For HDMI2.0 at 30 Hz */
- VO_OUTPUT_USER, /* User timing. */
- VO_OUTPUT_BUTT
- } VO_INTF_SYNC_E;
- typedef struct hiVO_GRAPHIC_ATTR_S
- {
- DYNAMIC_RANGE_E enDstDynamicRange; /* Destination dynamic range type */
- }VO_GRAPHIC_ATTR_S;
- typedef enum hiVO_ZOOM_IN_E
- {
- VO_ZOOM_IN_RECT = 0, /* Zoom in by rect */
- VO_ZOOM_IN_RATIO, /* Zoom in by ratio */
- VO_ZOOM_IN_BUTT
- } VO_ZOOM_IN_E;
- typedef enum hiVO_CSC_MATRIX_E
- {
- VO_CSC_MATRIX_IDENTITY = 0, /* Identity CSC matrix. */
- VO_CSC_MATRIX_BT601_TO_BT709, /* BT601 to BT709 */
- VO_CSC_MATRIX_BT709_TO_BT601, /* BT709 to BT601 */
- VO_CSC_MATRIX_BT601_TO_RGB_PC, /* BT601 to RGB */
- VO_CSC_MATRIX_BT709_TO_RGB_PC, /* BT709 to RGB */
- VO_CSC_MATRIX_RGB_TO_BT601_PC, /* RGB to BT601 FULL */
- VO_CSC_MATRIX_RGB_TO_BT709_PC, /* RGB to BT709 FULL */
- VO_CSC_MATRIX_RGB_TO_BT2020_PC, /* RGB to BT.2020 */
- VO_CSC_MATRIX_BT2020_TO_RGB_PC, /* BT.2020 to RGB */
- VO_CSC_MATRIX_RGB_TO_BT601_TV, /* RGB to BT601 LIMIT */
- VO_CSC_MATRIX_RGB_TO_BT709_TV, /* RGB to BT709 LIMIT */
- VO_CSC_MATRIX_BUTT
- } VO_CSC_MATRIX_E;
- typedef struct hiVO_CHN_ATTR_S
- {
- HI_U32 u32Priority; /* Video out overlay pri sd */
- RECT_S stRect; /* Rectangle of video output channel */
- HI_BOOL bDeflicker; /* Deflicker or not sd */
- }VO_CHN_ATTR_S;
- typedef struct hiVO_CHN_PARAM_S
- {
- ASPECT_RATIO_S stAspectRatio; /* RW; aspect ratio */
- }VO_CHN_PARAM_S;
- typedef struct hiVO_BORDER_S
- {
- HI_BOOL bBorderEn; /* RW; Do frame or not*/
- BORDER_S stBorder; /* RW; frame's top, bottom, left, right width and color*/
- }VO_BORDER_S;
- typedef struct hiVO_QUERY_STATUS_S
- {
- HI_U32 u32ChnBufUsed; /* Channel buffer that been occupied */
- } VO_QUERY_STATUS_S;
- typedef struct tagVO_SYNC_INFO_S
- {
- HI_BOOL bSynm; /* RW; sync mode(0:timing,as BT.656; 1:signal,as LCD) */
- HI_BOOL bIop; /* RW; interlaced or progressive display(0:i; 1:p) */
- HI_U8 u8Intfb; /* RW; interlace bit width while output */
- HI_U16 u16Vact ; /* RW; vertical active area */
- HI_U16 u16Vbb; /* RW; vertical back blank porch */
- HI_U16 u16Vfb; /* RW; vertical front blank porch */
- HI_U16 u16Hact; /* RW; herizontal active area */
- HI_U16 u16Hbb; /* RW; herizontal back blank porch */
- HI_U16 u16Hfb; /* RW; herizontal front blank porch */
- HI_U16 u16Hmid; /* RW; bottom herizontal active area */
- HI_U16 u16Bvact; /* RW; bottom vertical active area */
- HI_U16 u16Bvbb; /* RW; bottom vertical back blank porch */
- HI_U16 u16Bvfb; /* RW; bottom vertical front blank porch */
- HI_U16 u16Hpw; /* RW; horizontal pulse width */
- HI_U16 u16Vpw; /* RW; vertical pulse width */
- HI_BOOL bIdv; /* RW; inverse data valid of output */
- HI_BOOL bIhs; /* RW; inverse horizontal synch signal */
- HI_BOOL bIvs; /* RW; inverse vertical synch signal */
- } VO_SYNC_INFO_S;
- typedef struct hiVO_PUB_ATTR_S
- {
- HI_U32 u32BgColor; /* RW; Background color of a device, in RGB format. */
- VO_INTF_TYPE_E enIntfType; /* RW; Type of a VO interface */
- VO_INTF_SYNC_E enIntfSync; /* RW; Type of a VO interface timing */
- VO_SYNC_INFO_S stSyncInfo; /* RW; Information about VO interface timings */
- } VO_PUB_ATTR_S;
- typedef struct hiVO_WBC_ATTR_S
- {
- SIZE_S stTargetSize; /* RW; WBC Zoom target size */
- PIXEL_FORMAT_E enPixelFormat; /* RW; the pixel format of WBC output */
- HI_U32 u32FrameRate; /* RW; frame rate control */
- DYNAMIC_RANGE_E enDynamicRange; /* RW; Write back dynamic range type*/
- COMPRESS_MODE_E enCompressMode; /* RW; Write back Compressing mode */
- } VO_WBC_ATTR_S;
- typedef enum hiVO_WBC_MODE_E
- {
- VO_WBC_MODE_NORMAL = 0, /* In this mode, wbc will capture frames according to dev frame rate
- and wbc frame rate */
- VO_WBC_MODE_DROP_REPEAT, /* In this mode, wbc will drop dev repeat frame, and capture the real frame
- according to video layer's display rate and wbc frame rate */
- VO_WBC_MODE_PROG_TO_INTL, /* In this mode, wbc will drop dev repeat frame which repeats more than 3 times,
- and change two progressive frames to one interlace frame */
- VO_WBC_MODE_BUTT,
- } VO_WBC_MODE_E;
- typedef enum hiVO_WBC_SOURCE_TYPE_E
- {
- VO_WBC_SOURCE_DEV = 0x0, /* WBC source is device */
- VO_WBC_SOURCE_VIDEO = 0x1, /* WBC source is video layer*/
- VO_WBC_SOURCE_GRAPHIC = 0x2, /* WBC source is graphic layer. Warning: not supported */
- VO_WBC_SOURCE_BUTT
- } VO_WBC_SOURCE_TYPE_E;
- typedef struct hiVO_WBC_SOURCE_S
- {
- VO_WBC_SOURCE_TYPE_E enSourceType; /* RW; WBC source's type */
- HI_U32 u32SourceId; /* RW; WBC source's ID */
- } VO_WBC_SOURCE_S;
- typedef enum hiVO_PART_MODE_E
- {
- VO_PART_MODE_SINGLE = 0, /* single partition, which use software to make multi-picture in one hardware cell */
- VO_PART_MODE_MULTI = 1, /* muliti partition, each partition is a hardware cell */
- VO_PART_MODE_BUTT
- } VO_PART_MODE_E;
- typedef struct hiVO_VIDEO_LAYER_ATTR_S
- {
- RECT_S stDispRect; /* RW; Display resolution */
- SIZE_S stImageSize; /* RW; Canvas size of the video layer */
- HI_U32 u32DispFrmRt; /* RW; Display frame rate */
- PIXEL_FORMAT_E enPixFormat; /* RW; Pixel format of the video layer */
- HI_BOOL bDoubleFrame; /* RW; Whether to double frames */
- HI_BOOL bClusterMode; /* RW; Whether to take Cluster way to use memory*/
- DYNAMIC_RANGE_E enDstDynamicRange; /* RW; Video Layer output dynamic range type*/
- } VO_VIDEO_LAYER_ATTR_S;
- typedef struct hiVO_LAYER_PARAM_S
- {
- ASPECT_RATIO_S stAspectRatio; /* RW; aspect ratio */
- }VO_LAYER_PARAM_S;
- typedef struct hiVO_ZOOM_RATIO_S
- {
- HI_U32 u32XRatio; /* RW; Range: [0,1000]; XRatio = x * 1000 / W , x means the start point to be zoomed, W means displaying channel's width. */
- HI_U32 u32YRatio; /* RW; Range: [0,1000]; YRatio = y * 1000 / H , y means the start point to be zoomed, H means displaying channel's height. */
- HI_U32 u32WRatio; /* RW; Range: [0,1000]; WRatio = w * 1000 / W , w means the width to be zoomed, W means displaying channel's width. */
- HI_U32 u32HRatio; /* RW; Range: [0,1000]; HRatio = h * 1000 / H , h means the height to be zoomed, H means displaying channel's height. */
- } VO_ZOOM_RATIO_S;
- typedef struct hiVO_ZOOM_ATTR_S
- {
- VO_ZOOM_IN_E enZoomType; /* choose the type of zoom in */
- union
- {
- RECT_S stZoomRect; /* zoom in by rect */
- VO_ZOOM_RATIO_S stZoomRatio; /* zoom in by ratio */
- };
- } VO_ZOOM_ATTR_S;
- typedef struct hiVO_CSC_S
- {
- VO_CSC_MATRIX_E enCscMatrix; /* CSC matrix */
- HI_U32 u32Luma; /* RW; Range: [0, 100]; luminance, default: 50 */
- HI_U32 u32Contrast; /* RW; Range: [0, 100]; contrast, default: 50 */
- HI_U32 u32Hue; /* RW; Range: [0, 100]; hue, default: 50 */
- HI_U32 u32Satuature; /* RW; Range: [0, 100]; satuature, default: 50 */
- } VO_CSC_S;
- typedef struct hiVO_REGION_INFO_S
- {
- HI_U32 u32RegionNum; /* count of the region*/
- RECT_S* ATTRIBUTE pstRegion; /* region attribute*/
- }VO_REGION_INFO_S;
- typedef struct hiVO_LAYER_BOUNDARY_S
- {
- HI_U32 u32Width;
- HI_U32 u32Color[2];
- }VO_LAYER_BOUNDARY_S;
- typedef struct hiVO_CHN_BOUNDARY_S
- {
- HI_BOOL bBoundaryEn; /* do Frame or not */
- HI_U32 u32ColorIndex; /* the index of Frame color,[0,1] */
- }VO_CHN_BOUNDARY_S;
- typedef struct hiVO_MOD_PARAM_S
- {
- HI_BOOL bTransparentTransmit; /* RW, Range: [0, 1]; YC(Luminance and Chrominance) changes or not when passing through VO */
- } VO_MOD_PARAM_S;
- typedef enum hiVO_CLK_SOURCE_E
- {
- VO_CLK_SOURCE_PLL,
- VO_CLK_SOURCE_LCDMCLK,
- VO_CLK_SOURCE_BUTT
- } VO_CLK_SOURCE_E;
- typedef struct hiVO_USER_INTFSYNC_PLL_S
- {
- HI_U32 u32Fbdiv;
- HI_U32 u32Frac;
- HI_U32 u32Refdiv;
- HI_U32 u32Postdiv1;
- HI_U32 u32Postdiv2;
- }VO_USER_INTFSYNC_PLL_S;
- typedef struct hiVO_USER_INTFSYNC_ATTR_S
- {
- VO_CLK_SOURCE_E enClkSource;
- union
- {
- VO_USER_INTFSYNC_PLL_S stUserSyncPll;
- HI_U32 u32LcdMClkDiv;
- };
- } VO_USER_INTFSYNC_ATTR_S;
- typedef struct hiVO_USER_INTFSYNC_INFO_S
- {
- VO_USER_INTFSYNC_ATTR_S stUserIntfSyncAttr;
- HI_U32 u32DevDiv;
- } VO_USER_INTFSYNC_INFO_S;
- #ifdef __cplusplus
- #if __cplusplus
- }
- #endif
- #endif /* End of #ifdef __cplusplus */
- #endif /* End of #ifndef __HI_COMM_VO_H__ */
|