Searched refs:u32_width_in (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 102 u32_width_in = pPlaneIn->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() 199 if ((u32_width == 1) && (u32_width_in == u32_width_out)) { in M4VIFI_ResizeBilinearRGB888toRGB888()
|
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 124 u32_width_in[u32_plane] = pPlaneIn[u32_plane].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() 148 if (u32_width2_RGB >= u32_width_in[UPlane]) in M4VIFI_ResizeBilinearYUV420toBGR565() 150 u32_x_inc[UPlane] = ((u32_width_in[UPlane]-1) * MAX_SHORT) / (u32_width2_RGB-1); in M4VIFI_ResizeBilinearYUV420toBGR565() 154 u32_x_inc[UPlane] = (u32_width_in[UPlane] * MAX_SHORT) / (u32_width2_RGB); 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 128 u32_width_in[u32_plane] = pPlaneIn[u32_plane].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() 152 if (u32_width2_RGB >= u32_width_in[UPlane]) in M4VIFI_ResizeBilinearYUV420toRGB565() 154 u32_x_inc[UPlane] = ((u32_width_in[UPlane]-1) * MAX_SHORT) / (u32_width2_RGB-1); in M4VIFI_ResizeBilinearYUV420toRGB565() 158 u32_x_inc[UPlane] = (u32_width_in[UPlane] * MAX_SHORT) / (u32_width2_RGB); in M4VIFI_ResizeBilinearYUV420toRGB565()
|
D | M4VIFI_ResizeRGB565toRGB565.c | 51 M4VIFI_UInt32 u32_width_in, u32_width_out, u32_height_in, u32_height_out; in M4VIFI_ResizeBilinearRGB565toRGB565() local 87 u32_width_in = pPlaneIn->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()
|
/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 273 u32_width_in = ((i==0)||(i==3))?pC->m_params.m_inputSize.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 1498 u32_width_in = pPlaneIn[u32_plane].u_width; in M4VIFI_ResizeBilinearYUV420toYUV420() 1509 if (u32_width_out == u32_width_in) { 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() 2113 M4OSA_UInt32 i,u32_width_in, u32_width_out, u32_height_in, u32_height_out; in M4AIR_configure() local 2162 …u32_width_in = ((i==0)||(i==3))?pC->m_params.m_inputSize.m_width:(pC->m_params.m_inputSize.m_width… in M4AIR_configure() 2168 if (u32_width_out >= u32_width_in) in M4AIR_configure() 2170 pC->u32_x_inc[i] = ((u32_width_in-1) * 0x10000) / (u32_width_out-1); in M4AIR_configure() [all …]
|