.. | .. |
---|
18 | 18 | bool rga_is_yuv_format(uint32_t format); |
---|
19 | 19 | bool rga_is_alpha_format(uint32_t format); |
---|
20 | 20 | bool rga_is_yuv420_packed_format(uint32_t format); |
---|
| 21 | +bool rga_is_yuv420_planar_format(uint32_t format); |
---|
| 22 | +bool rga_is_yuv420_semi_planar_format(uint32_t format); |
---|
21 | 23 | bool rga_is_yuv422_packed_format(uint32_t format); |
---|
| 24 | +bool rga_is_yuv422_planar_format(uint32_t format); |
---|
| 25 | +bool rga_is_yuv422_semi_planar_format(uint32_t format); |
---|
22 | 26 | bool rga_is_yuv8bit_format(uint32_t format); |
---|
23 | 27 | bool rga_is_yuv10bit_format(uint32_t format); |
---|
24 | 28 | bool rga_is_yuv422p_format(uint32_t format); |
---|
.. | .. |
---|
30 | 34 | const char *rga_get_format_name(uint32_t format); |
---|
31 | 35 | const char *rga_get_render_mode_str(uint8_t mode); |
---|
32 | 36 | const char *rga_get_rotate_mode_str(uint8_t mode); |
---|
33 | | -const char *rga_get_blend_mode_str(uint16_t alpha_rop_flag, |
---|
34 | | - uint16_t alpha_mode_0, |
---|
35 | | - uint16_t alpha_mode_1); |
---|
| 37 | +const char *rga_get_blend_mode_str(enum rga_alpha_blend_mode mode); |
---|
36 | 38 | const char *rga_get_memory_type_str(uint8_t type); |
---|
37 | 39 | const char *rga_get_mmu_type_str(enum rga_mmu mmu_type); |
---|
| 40 | +const char *rga_get_core_name(enum RGA_SCHEDULER_CORE core); |
---|
38 | 41 | |
---|
39 | 42 | void rga_convert_addr(struct rga_img_info_t *img, bool before_vir_get_channel); |
---|
40 | 43 | void rga_swap_pd_mode(struct rga_req *req_rga); |
---|
41 | 44 | int rga_image_size_cal(int w, int h, int format, |
---|
42 | 45 | int *yrgb_size, int *uv_size, int *v_size); |
---|
| 46 | +void rga_dump_memory_parm(struct rga_memory_parm *parm); |
---|
| 47 | +void rga_dump_external_buffer(struct rga_external_buffer *buffer); |
---|
43 | 48 | |
---|
44 | 49 | #endif |
---|