HomeSort by relevance Sort by last modified time
    Searched refs:u32_y_inc (Results 1 - 6 of 6) sorted by null

  /frameworks/av/libvideoeditor/vss/video_filters/src/
M4VIFI_ResizeYUVtoBGR565.c 69 M4VIFI_UInt32 u32_x_inc[PLANES], u32_y_inc[PLANES]; local
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);
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);
168 u32_y_inc[VPlane] = u32_y_inc[UPlane];
175 if (u32_y_inc[YPlane] > MAX_SHORT)
181 u32_y_accum_Y = u32_y_inc[YPlane] & 0xffff;
182 u32_y_accum_U = u32_y_inc[UPlane] & 0xffff
    [all...]
M4VIFI_ResizeYUVtoRGB565.c 72 M4VIFI_UInt32 u32_x_inc[PLANES], u32_y_inc[PLANES]; local
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);
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);
172 u32_y_inc[VPlane] = u32_y_inc[UPlane];
179 if (u32_y_inc[YPlane] > MAX_SHORT)
185 u32_y_accum_Y = u32_y_inc[YPlane] & 0xffff;
186 u32_y_accum_U = u32_y_inc[UPlane] & 0xffff
    [all...]
M4VIFI_ResizeRGB565toRGB565.c 53 M4VIFI_UInt32 u32_x_inc, u32_y_inc; local
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);
111 if (u32_y_inc >= MAX_SHORT) {
116 u32_y_accum = u32_y_inc & 0xffff;
245 u32_y_accum += u32_y_inc;
M4VIFI_ResizeRGB888toRGB888.c 66 M4VIFI_UInt32 u32_x_inc, u32_y_inc; local
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);
132 if (u32_y_inc >= MAX_SHORT)
138 u32_y_accum = u32_y_inc & 0xffff;
267 u32_y_accum += u32_y_inc;
  /frameworks/av/libvideoeditor/vss/src/
M4AIR_API.c 80 M4OSA_UInt32 u32_y_inc[4]; /**< ratio between input and ouput height for YUV */ member in struct:__anon16124
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);
306 if (pC->u32_y_inc[i] >= 0x10000)
312 pC->u32_y_accum_start[i] = pC->u32_y_inc[i] & 0xffff;
675 pC->u32_y_accum[i] += pC->u32_y_inc[i];
720 u32_y_accum += pC->u32_y_inc[i];
750 u32_y_accum += pC->u32_y_inc[i];
    [all...]
  /frameworks/av/libvideoeditor/lvpp/
VideoEditorTools.cpp 1449 M4VIFI_UInt32 u32_x_inc, u32_y_inc; local
1979 M4OSA_UInt32 u32_y_inc[4]; \/**< ratio between input and ouput height for YUV *\/ member in struct:__anon15885
    [all...]

Completed in 1053 milliseconds