File tree Expand file tree Collapse file tree 2 files changed +7
-2
lines changed Expand file tree Collapse file tree 2 files changed +7
-2
lines changed Original file line number Diff line number Diff line change @@ -119,6 +119,9 @@ typedef enum XmaFormatType
119
119
XMA_RGB888_FMT_TYPE , /**< 4 */
120
120
XMA_RGBP_FMT_TYPE , /**< 5 */
121
121
XMA_VCU_NV12_FMT_TYPE , /**< 6 */
122
+ XMA_VCU_NV16_FMT_TYPE ,
123
+ XMA_VCU_NV12_10LE32_FMT_TYPE ,
124
+ XMA_VCU_NV16_10LE32_FMT_TYPE ,
122
125
} XmaFormatType ;
123
126
124
127
/**
Original file line number Diff line number Diff line change @@ -46,8 +46,10 @@ xma_frame_planes_get(XmaFrameProperties *frame_props)
46
46
{XMA_YUV444_FMT_TYPE, 3 },
47
47
{XMA_RGB888_FMT_TYPE, 1 },
48
48
{XMA_RGBP_FMT_TYPE, 3 },
49
- {XMA_VCU_NV12_FMT_TYPE,2 }
50
-
49
+ {XMA_VCU_NV12_FMT_TYPE, 2 },
50
+ {XMA_VCU_NV16_FMT_TYPE, 2 },
51
+ {XMA_VCU_NV12_10LE32_FMT_TYPE, 2 },
52
+ {XMA_VCU_NV16_10LE32_FMT_TYPE, 2 },
51
53
};
52
54
53
55
return frame_format_desc[frame_props->format ].num_planes ;
You can’t perform that action at this time.
0 commit comments