Searched defs:u32_width_in (Results 1 - 6 of 6) sorted by relevance
/frameworks/av/libvideoeditor/vss/video_filters/src/ |
H A D | M4VIFI_ResizeRGB565toRGB565.c | 51 M4VIFI_UInt32 u32_width_in, u32_width_out, u32_height_in, u32_height_out; local 87 u32_width_in = pPlaneIn->u_width; 94 if (u32_width_out >= u32_width_in) { 95 u32_x_inc = ((u32_width_in-1) * MAX_SHORT) / (u32_width_out-1); 97 u32_x_inc = (u32_width_in * MAX_SHORT) / (u32_width_out);
|
H A D | M4VIFI_ResizeRGB888toRGB888.c | 64 M4VIFI_UInt32 u32_width_in, u32_width_out, u32_height_in, u32_height_out; local 102 u32_width_in = pPlaneIn->u_width; 109 if (u32_width_out >= u32_width_in) 111 u32_x_inc = ((u32_width_in-1) * MAX_SHORT) / (u32_width_out-1); 115 u32_x_inc = (u32_width_in * MAX_SHORT) / (u32_width_out); 199 if ((u32_width == 1) && (u32_width_in == u32_width_out)) {
|
H A D | M4VIFI_ResizeYUVtoBGR565.c | 66 M4VIFI_UInt32 u32_width_in[PLANES], u32_width_out, u32_height_in[PLANES], u32_height_out; local 124 u32_width_in[u32_plane] = pPlaneIn[u32_plane].u_width; 128 if (u32_width_out >= u32_width_in[YPlane]) 130 u32_x_inc[YPlane] = ((u32_width_in[YPlane]-1) * MAX_SHORT) / (u32_width_out-1); 134 u32_x_inc[YPlane] = (u32_width_in[YPlane] * MAX_SHORT) / (u32_width_out); 148 if (u32_width2_RGB >= u32_width_in[UPlane]) 150 u32_x_inc[UPlane] = ((u32_width_in[UPlane]-1) * MAX_SHORT) / (u32_width2_RGB-1); 154 u32_x_inc[UPlane] = (u32_width_in[UPlane] * MAX_SHORT) / (u32_width2_RGB);
|
H A D | M4VIFI_ResizeYUVtoRGB565.c | 69 M4VIFI_UInt32 u32_width_in[PLANES], u32_width_out, u32_height_in[PLANES], u32_height_out; local 128 u32_width_in[u32_plane] = pPlaneIn[u32_plane].u_width; 132 if (u32_width_out >= u32_width_in[YPlane]) 134 u32_x_inc[YPlane] = ((u32_width_in[YPlane]-1) * MAX_SHORT) / (u32_width_out-1); 138 u32_x_inc[YPlane] = (u32_width_in[YPlane] * MAX_SHORT) / (u32_width_out); 152 if (u32_width2_RGB >= u32_width_in[UPlane]) 154 u32_x_inc[UPlane] = ((u32_width_in[UPlane]-1) * MAX_SHORT) / (u32_width2_RGB-1); 158 u32_x_inc[UPlane] = (u32_width_in[UPlane] * MAX_SHORT) / (u32_width2_RGB);
|
/frameworks/av/libvideoeditor/vss/src/ |
H A D | M4AIR_API.c | 224 M4OSA_UInt32 i,u32_width_in, u32_width_out, u32_height_in, u32_height_out; local 273 u32_width_in = ((i==0)||(i==3))?pC->m_params.m_inputSize.m_width:\ 283 if (u32_width_out >= u32_width_in) 285 pC->u32_x_inc[i] = ((u32_width_in-1) * 0x10000) / (u32_width_out-1); 289 pC->u32_x_inc[i] = (u32_width_in * 0x10000) / (u32_width_out);
|
/frameworks/av/libvideoeditor/lvpp/ |
H A D | VideoEditorTools.cpp | 1447 M4VIFI_UInt32 u32_width_in, u32_width_out, u32_height_in, u32_height_out; local 1498 u32_width_in = pPlaneIn[u32_plane].u_width; 1509 if (u32_width_out == u32_width_in) { 1515 if (u32_width_out >= u32_width_in) 1517 u32_x_inc = ((u32_width_in-1) * MAX_SHORT) / (u32_width_out-1); 1521 u32_x_inc = (u32_width_in * MAX_SHORT) / (u32_width_out); 2113 M4OSA_UInt32 i,u32_width_in, u32_width_out, u32_height_in, u32_height_out; local 2162 u32_width_in = ((i==0)||(i==3))?pC->m_params.m_inputSize.m_width:(pC->m_params.m_inputSize.m_width+1)>>1; 2168 if (u32_width_out >= u32_width_in) 2170 pC->u32_x_inc[i] = ((u32_width_in [all...] |
Completed in 75 milliseconds