acldvppPixelFormat

// Supported Pixel Format
enum acldvppPixelFormat {
    PIXEL_FORMAT_YUV_400 = 0, // 0, YUV400 8bit
    PIXEL_FORMAT_YUV_SEMIPLANAR_420 = 1, // 1, YUV420SP NV12 8bit
    PIXEL_FORMAT_YVU_SEMIPLANAR_420 = 2, // 2, YUV420SP NV21 8bit
    PIXEL_FORMAT_YUV_SEMIPLANAR_422 = 3, // 3, YUV422SP 8bit
    PIXEL_FORMAT_YVU_SEMIPLANAR_422 = 4, // 4, YVU422SP 8bit
    PIXEL_FORMAT_YUV_SEMIPLANAR_444 = 5, // 5, YUV444SP 8bit
    PIXEL_FORMAT_YVU_SEMIPLANAR_444 = 6, // 6, YVU444SP 8bit
    PIXEL_FORMAT_YUYV_PACKED_422 = 7, // 7, YUV422P YUYV 8bit
    PIXEL_FORMAT_UYVY_PACKED_422 = 8, // 8, YUV422P UYVY 8bit
    PIXEL_FORMAT_YVYU_PACKED_422 = 9, // 9, YUV422P YVYU 8bit
    PIXEL_FORMAT_VYUY_PACKED_422 = 10, // 10, YUV422P VYUY 8bit
    PIXEL_FORMAT_YUV_PACKED_444 = 11, // 11, YUV444P 8bit
    PIXEL_FORMAT_RGB_888 = 12, // 12, RGB888
    PIXEL_FORMAT_BGR_888 = 13, // 13, BGR888
    PIXEL_FORMAT_ARGB_8888 = 14, // 14, ARGB8888
    PIXEL_FORMAT_ABGR_8888 = 15, // 15, ABGR8888
    PIXEL_FORMAT_RGBA_8888 = 16, // 16, RGBA8888
    PIXEL_FORMAT_BGRA_8888 = 17, // 17, BGRA8888
    PIXEL_FORMAT_YUV_SEMI_PLANNER_420_10BIT = 18, // 18, YUV420SP 10bit
    PIXEL_FORMAT_YVU_SEMI_PLANNER_420_10BIT = 19, // 19, YVU420S 10bit
    PIXEL_FORMAT_YVU_PLANAR_420 = 20, // 20, YVU420P 8bit
    PIXEL_FORMAT_YVU_PLANAR_422, //YVU422P 8bit
    PIXEL_FORMAT_YVU_PLANAR_444,  //YVU444P 8bit
    PIXEL_FORMAT_RGB_444 = 23,              // RGB444  R:4bit G:4bit B:4bit. This format is not supported.
    PIXEL_FORMAT_BGR_444,                   // BGR444  R:4bit G:4bit B:4bit. This format is not supported.
    PIXEL_FORMAT_ARGB_4444,                 // ARGB4444 A:4bit R:4bit G:4bit B:4bit. This format is not supported.
    PIXEL_FORMAT_ABGR_4444,                 // ABGR4444 A:4bit B:4bit G:4bit R:4bit. This format is not supported.
    PIXEL_FORMAT_RGBA_4444,                 // RGBA4444 R:4bit G:4bit B:4bit A:4bit. This format is not supported.
    PIXEL_FORMAT_BGRA_4444,                 // BGRA4444 B:4bit G:4bit R:4bit A:4bit. This format is not supported.
    PIXEL_FORMAT_RGB_555,                   // RGB555 R:5bit G:5bit B:5bit. This format is not supported.
    PIXEL_FORMAT_BGR_555,                   // BGR555 B:5bit G:5bit R:5bit. This format is not supported.
    PIXEL_FORMAT_RGB_565,                   // RGB565 R:5bit G:6bit B:5bit. This format is not supported.
    PIXEL_FORMAT_BGR_565,                   // BGR565 B:5bit G:6bit R:5bit. This format is not supported.
    PIXEL_FORMAT_ARGB_1555,                 // ARGB1555 A:1bit R:5bit G:6bit B:5bit. This format is not supported.
    PIXEL_FORMAT_ABGR_1555,                 // ABGR1555 A:1bit B:5bit G:6bit R:5bit. This format is not supported.
    PIXEL_FORMAT_RGBA_1555,                 // RGBA1555 A:1bit B:5bit G:6bit R:5bit. This format is not supported.
    PIXEL_FORMAT_BGRA_1555,                 // BGRA1555 A:1bit B:5bit G:6bit R:5bit. This format is not supported.
    PIXEL_FORMAT_ARGB_8565,                 // ARGB8565 A:8bit R:5bit G:6bit B:5bit. This format is not supported.
    PIXEL_FORMAT_ABGR_8565,                 // ABGR8565 A:8bit B:5bit G:6bit R:5bit. This format is not supported.
    PIXEL_FORMAT_RGBA_8565,                 // RGBA8565 A:8bit R:5bit G:6bit B:5bit. This format is not supported.
    PIXEL_FORMAT_BGRA_8565,                 // BGRA8565 A:8bit B:5bit G:6bit R:5bit. This format is not supported.
    PIXEL_FORMAT_RGB_BAYER_8BPP = 50,       // RGB Bayer 8bit. Bayer image format, not supported.
    PIXEL_FORMAT_RGB_BAYER_10BPP,           // RGB Bayer 10bit. Bayer image format, not supported.
    PIXEL_FORMAT_RGB_BAYER_12BPP,           // RGB Bayer 12bit. Bayer image format, not supported.
    PIXEL_FORMAT_RGB_BAYER_14BPP,           // RGB Bayer 14bit. Bayer image format, not supported.
    PIXEL_FORMAT_RGB_BAYER_16BPP,           // RGB Bayer 16bit. Bayer image format, not supported.
    PIXEL_FORMAT_BGR_888_PLANAR = 70,       // RGB888 Planar, not supported.
    PIXEL_FORMAT_HSV_888_PACKAGE,           // Package format of HSV images, not supported.
   PIXEL_FORMAT_HSV_888_PLANAR,            // Planar format of HSV images, not supported.
    PIXEL_FORMAT_LAB_888_PACKAGE,           // Package format of LAB images, not supported.
    PIXEL_FORMAT_LAB_888_PLANAR,            // Planar format of LAB images, not supported.
    PIXEL_FORMAT_S8C1,                      // Format of single-channel images expressed by an 8-bit signed number for each pixel, not supported.
    PIXEL_FORMAT_S8C2_PACKAGE,              // Package format of dual-channel images expressed by two 8-bit signed numbers for each pixel, not supported.
    PIXEL_FORMAT_S8C2_PLANAR,                // Planar format of dual-channel images expressed by two 8-bit signed numbers for each pixel, not supported.
    PIXEL_FORMAT_S16C1,                     // Format of single-channel images expressed by a 16-bit signed number for each pixel, not supported.
    PIXEL_FORMAT_U8C1,                      // Format of single-channel images expressed by an 8-bit unsigned number for each pixel, not supported.
    PIXEL_FORMAT_U16C1,                     // Format of single-channel images expressed by a 16-bit unsigned number for each pixel, not supported.
    PIXEL_FORMAT_S32C1,                     // Format of single-channel images expressed by a 32-bit signed number for each pixel, not supported.
    PIXEL_FORMAT_U32C1,                     // Format of single-channel images expressed by a 32-bit unsigned number for each pixel, not supported.
    PIXEL_FORMAT_U64C1,                     // Format of single-channel images expressed by a 64-bit unsigned number for each pixel, not supported.
    PIXEL_FORMAT_S64C1,                     // Format of single-channel images expressed by a 64-bit signed number for each pixel, not supported.
    PIXEL_FORMAT_YUV_SEMIPLANAR_440 = 1000, // YUV440SP 8bit
    PIXEL_FORMAT_YVU_SEMIPLANAR_440,        // YVU440SP 8bit
    PIXEL_FORMAT_FLOAT32,                   // Expressed by a float32 number for each pixel, not supported.
    PIXEL_FORMAT_BUTT,
    PIXEL_FORMAT_UNKNOWN = 10000
};