Searched refs:u32_width_out (Results 1 – 6 of 6) sorted by relevance
/frameworks/av/libvideoeditor/vss/video_filters/src/ |
D | M4VIFI_ResizeRGB888toRGB888.c | 64 M4VIFI_UInt32 u32_width_in, u32_width_out, u32_height_in, u32_height_out; in M4VIFI_ResizeBilinearRGB888toRGB888() local 105 u32_width_out = pPlaneOut->u_width; in M4VIFI_ResizeBilinearRGB888toRGB888() 109 if (u32_width_out >= u32_width_in) in M4VIFI_ResizeBilinearRGB888toRGB888() 111 u32_x_inc = ((u32_width_in-1) * MAX_SHORT) / (u32_width_out-1); in M4VIFI_ResizeBilinearRGB888toRGB888() 115 u32_x_inc = (u32_width_in * MAX_SHORT) / (u32_width_out); in M4VIFI_ResizeBilinearRGB888toRGB888() 192 u32_width = u32_width_out; in M4VIFI_ResizeBilinearRGB888toRGB888() 199 if ((u32_width == 1) && (u32_width_in == u32_width_out)) { in M4VIFI_ResizeBilinearRGB888toRGB888()
|
D | M4VIFI_ResizeRGB565toRGB565.c | 51 M4VIFI_UInt32 u32_width_in, u32_width_out, u32_height_in, u32_height_out; in M4VIFI_ResizeBilinearRGB565toRGB565() local 90 u32_width_out = pPlaneOut->u_width; in M4VIFI_ResizeBilinearRGB565toRGB565() 94 if (u32_width_out >= u32_width_in) { in M4VIFI_ResizeBilinearRGB565toRGB565() 95 u32_x_inc = ((u32_width_in-1) * MAX_SHORT) / (u32_width_out-1); in M4VIFI_ResizeBilinearRGB565toRGB565() 97 u32_x_inc = (u32_width_in * MAX_SHORT) / (u32_width_out); in M4VIFI_ResizeBilinearRGB565toRGB565() 163 u32_width = u32_width_out; in M4VIFI_ResizeBilinearRGB565toRGB565()
|
D | M4VIFI_ResizeYUVtoBGR565.c | 66 M4VIFI_UInt32 u32_width_in[PLANES], u32_width_out, u32_height_in[PLANES], u32_height_out; in M4VIFI_ResizeBilinearYUV420toBGR565() local 105 u32_width_out = pPlaneOut->u_width; in M4VIFI_ResizeBilinearYUV420toBGR565() 128 if (u32_width_out >= u32_width_in[YPlane]) in M4VIFI_ResizeBilinearYUV420toBGR565() 130 u32_x_inc[YPlane] = ((u32_width_in[YPlane]-1) * MAX_SHORT) / (u32_width_out-1); in M4VIFI_ResizeBilinearYUV420toBGR565() 134 u32_x_inc[YPlane] = (u32_width_in[YPlane] * MAX_SHORT) / (u32_width_out); in M4VIFI_ResizeBilinearYUV420toBGR565() 256 for (u32_col = u32_width_out; u32_col != 0; u32_col -= 2) in M4VIFI_ResizeBilinearYUV420toBGR565()
|
D | M4VIFI_ResizeYUVtoRGB565.c | 69 M4VIFI_UInt32 u32_width_in[PLANES], u32_width_out, u32_height_in[PLANES], u32_height_out; in M4VIFI_ResizeBilinearYUV420toRGB565() local 108 u32_width_out = pPlaneOut->u_width; in M4VIFI_ResizeBilinearYUV420toRGB565() 132 if (u32_width_out >= u32_width_in[YPlane]) in M4VIFI_ResizeBilinearYUV420toRGB565() 134 u32_x_inc[YPlane] = ((u32_width_in[YPlane]-1) * MAX_SHORT) / (u32_width_out-1); in M4VIFI_ResizeBilinearYUV420toRGB565() 138 u32_x_inc[YPlane] = (u32_width_in[YPlane] * MAX_SHORT) / (u32_width_out); in M4VIFI_ResizeBilinearYUV420toRGB565() 260 for (u32_col = u32_width_out; u32_col != 0; u32_col -= 2) in M4VIFI_ResizeBilinearYUV420toRGB565()
|
/frameworks/av/libvideoeditor/vss/src/ |
D | M4AIR_API.c | 224 M4OSA_UInt32 i,u32_width_in, u32_width_out, u32_height_in, u32_height_out; in M4AIR_configure() local 277 u32_width_out = ((i==0)||(i==3))?pC->m_params.m_outputSize.m_width:\ in M4AIR_configure() 283 if (u32_width_out >= u32_width_in) in M4AIR_configure() 285 pC->u32_x_inc[i] = ((u32_width_in-1) * 0x10000) / (u32_width_out-1); in M4AIR_configure() 289 pC->u32_x_inc[i] = (u32_width_in * 0x10000) / (u32_width_out); in M4AIR_configure()
|
/frameworks/av/libvideoeditor/lvpp/ |
D | VideoEditorTools.cpp | 1447 M4VIFI_UInt32 u32_width_in, u32_width_out, u32_height_in, u32_height_out; in M4VIFI_ResizeBilinearYUV420toYUV420() local 1501 u32_width_out = pPlaneOut[u32_plane].u_width; in M4VIFI_ResizeBilinearYUV420toYUV420() 1509 if (u32_width_out == u32_width_in) { in M4VIFI_ResizeBilinearYUV420toYUV420() 1510 u32_width_out = u32_width_out-1; in M4VIFI_ResizeBilinearYUV420toYUV420() 1515 if (u32_width_out >= u32_width_in) in M4VIFI_ResizeBilinearYUV420toYUV420() 1517 u32_x_inc = ((u32_width_in-1) * MAX_SHORT) / (u32_width_out-1); in M4VIFI_ResizeBilinearYUV420toYUV420() 1521 u32_x_inc = (u32_width_in * MAX_SHORT) / (u32_width_out); in M4VIFI_ResizeBilinearYUV420toYUV420() 1612 u32_width = u32_width_out; in M4VIFI_ResizeBilinearYUV420toYUV420() 1640 pu8dum = (pu8_data_out-u32_width_out); in M4VIFI_ResizeBilinearYUV420toYUV420() 1641 pu8_data_out = pu8_data_out + u32_stride_out - u32_width_out; in M4VIFI_ResizeBilinearYUV420toYUV420() [all …]
|