Searched refs:u32_height_in (Results 1 - 6 of 6) sorted by relevance

/frameworks/av/libvideoeditor/vss/video_filters/src/
H A DM4VIFI_ResizeRGB888toRGB888.c64 M4VIFI_UInt32 u32_width_in, u32_width_out, u32_height_in, u32_height_out; local
103 u32_height_in = pPlaneIn->u_height;
119 if (u32_height_out >= u32_height_in)
121 u32_y_inc = ((u32_height_in - 1) * MAX_SHORT) / (u32_height_out-1);
125 u32_y_inc = (u32_height_in * MAX_SHORT) / (u32_height_out);
205 if ((u32_height == 1) && (u32_height_in == u32_height_out)) {
228 if ((u32_height == 1) && (u32_height_in == u32_height_out)) {
H A DM4VIFI_ResizeRGB565toRGB565.c51 M4VIFI_UInt32 u32_width_in, u32_width_out, u32_height_in, u32_height_out; local
88 u32_height_in = pPlaneIn->u_height;
101 if (u32_height_out >= u32_height_in) {
102 u32_y_inc = ((u32_height_in - 1) * MAX_SHORT) / (u32_height_out-1);
104 u32_y_inc = (u32_height_in * MAX_SHORT) / (u32_height_out);
171 if ((u32_height == 1) && (u32_height_in == u32_height_out)) {
H A DM4VIFI_ResizeYUVtoBGR565.c66 M4VIFI_UInt32 u32_width_in[PLANES], u32_width_out, u32_height_in[PLANES], u32_height_out; local
125 u32_height_in[u32_plane] = pPlaneIn[u32_plane].u_height;
138 if (u32_height_out >= u32_height_in[YPlane])
140 u32_y_inc[YPlane] = ((u32_height_in[YPlane]-1) * MAX_SHORT) / (u32_height_out-1);
144 u32_y_inc[YPlane] = (u32_height_in[YPlane] * MAX_SHORT) / (u32_height_out);
159 if (u32_height2_RGB >= u32_height_in[UPlane])
161 u32_y_inc[UPlane] = ((u32_height_in[UPlane]-1) * MAX_SHORT) / (u32_height2_RGB-1);
165 u32_y_inc[UPlane] = (u32_height_in[UPlane] * MAX_SHORT) / (u32_height2_RGB);
H A DM4VIFI_ResizeYUVtoRGB565.c69 M4VIFI_UInt32 u32_width_in[PLANES], u32_width_out, u32_height_in[PLANES], u32_height_out; local
129 u32_height_in[u32_plane] = pPlaneIn[u32_plane].u_height;
142 if (u32_height_out >= u32_height_in[YPlane])
144 u32_y_inc[YPlane] = ((u32_height_in[YPlane]-1) * MAX_SHORT) / (u32_height_out-1);
148 u32_y_inc[YPlane] = (u32_height_in[YPlane] * MAX_SHORT) / (u32_height_out);
163 if (u32_height2_RGB >= u32_height_in[UPlane])
165 u32_y_inc[UPlane] = ((u32_height_in[UPlane]-1) * MAX_SHORT) / (u32_height2_RGB-1);
169 u32_y_inc[UPlane] = (u32_height_in[UPlane] * MAX_SHORT) / (u32_height2_RGB);
/frameworks/av/libvideoeditor/vss/src/
H A DM4AIR_API.c224 M4OSA_UInt32 i,u32_width_in, u32_width_out, u32_height_in, u32_height_out; local
275 u32_height_in = ((i==0)||(i==3))?pC->m_params.m_inputSize.m_height:\
293 if (u32_height_out >= u32_height_in)
295 pC->u32_y_inc[i] = ((u32_height_in - 1) * 0x10000) / (u32_height_out-1);
299 pC->u32_y_inc[i] = (u32_height_in * 0x10000) / (u32_height_out);
/frameworks/av/libvideoeditor/lvpp/
H A DVideoEditorTools.cpp1447 M4VIFI_UInt32 u32_width_in, u32_width_out, u32_height_in, u32_height_out; local
1499 u32_height_in = pPlaneIn[u32_plane].u_height;
1529 if (u32_height_out == u32_height_in) {
1535 if (u32_height_out >= u32_height_in)
1537 u32_y_inc = ((u32_height_in - 1) * MAX_SHORT) / (u32_height_out-1);
1541 u32_y_inc = (u32_height_in * MAX_SHORT) / (u32_height_out);
2113 M4OSA_UInt32 i,u32_width_in, u32_width_out, u32_height_in, u32_height_out; local
2163 u32_height_in = ((i==0)||(i==3))?pC->m_params.m_inputSize.m_height:(pC->m_params.m_inputSize.m_height+1)>>1;
2178 if (u32_height_out >= u32_height_in)
2180 pC->u32_y_inc[i] = ((u32_height_in
[all...]

Completed in 451 milliseconds