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

/frameworks/av/libvideoeditor/vss/video_filters/src/
H A DM4VIFI_ResizeRGB565toRGB565.c53 M4VIFI_UInt32 u32_x_inc, u32_y_inc; local
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);
132 if (u32_x_inc >= MAX_SHORT) {
133 u32_x_accum_start = u32_x_inc & 0xffff;
239 u32_x_accum += u32_x_inc;
H A DM4VIFI_ResizeRGB888toRGB888.c66 M4VIFI_UInt32 u32_x_inc, u32_y_inc; local
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);
157 if (u32_x_inc >= MAX_SHORT)
159 u32_x_accum_start = u32_x_inc & 0xffff;
260 u32_x_accum += u32_x_inc;
H A DM4VIFI_ResizeYUVtoBGR565.c69 M4VIFI_UInt32 u32_x_inc[PLANES], u32_y_inc[PLANES]; local
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);
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);
169 u32_x_inc[VPlane] = u32_x_inc[UPlane];
203 if (u32_x_inc[YPlane] > MAX_SHORT)
205 u32_x_accum_start = u32_x_inc[YPlane] & 0xffff;
288 u32_x_accum_U += (u32_x_inc[UPlan
[all...]
H A DM4VIFI_ResizeYUVtoRGB565.c72 M4VIFI_UInt32 u32_x_inc[PLANES], u32_y_inc[PLANES]; local
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);
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);
173 u32_x_inc[VPlane] = u32_x_inc[UPlane];
207 if (u32_x_inc[YPlane] > MAX_SHORT)
209 u32_x_accum_start = u32_x_inc[YPlane] & 0xffff;
292 u32_x_accum_U += (u32_x_inc[UPlan
[all...]
/frameworks/av/libvideoeditor/vss/src/
H A DM4AIR_API.c79 M4OSA_UInt32 u32_x_inc[4]; /**< ratio between input and ouput width for YUV */ member in struct:__anon305
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);
339 if (pC->u32_x_inc[i] >= 0x10000)
341 pC->u32_x_accum_start[i] = pC->u32_x_inc[i] & 0xffff;
642 u32_x_accum += pC->u32_x_inc[i];
667 u32_x_accum += pC->u32_x_inc[i];
761 pC->u32_x_accum[i] += pC->u32_x_inc[i];
810 u32_x_accum += pC->u32_x_inc[i];
837 u32_x_accum += pC->u32_x_inc[
[all...]
/frameworks/av/libvideoeditor/lvpp/
H A DVideoEditorTools.cpp1449 M4VIFI_UInt32 u32_x_inc, u32_y_inc; local
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);
1575 if (u32_x_inc >= MAX_SHORT)
1577 u32_x_accum_start = u32_x_inc & 0xffff;
1628 u32_x_accum += u32_x_inc;
1978 M4OSA_UInt32 u32_x_inc[4]; /**< ratio between input and ouput width for YUV */ member in struct:__anon66
2170 pC->u32_x_inc[i] = ((u32_width_in-1) * 0x10000) / (u32_width_out-1);
2174 pC->u32_x_inc[i] = (u32_width_in * 0x10000) / (u32_width_out);
2223 if (pC->u32_x_inc[
[all...]

Completed in 489 milliseconds