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

/external/chromium_org/media/base/
H A Dyuv_convert.cc294 int source_y_subpixel = source_y_subpixel_accum; local
296 if (source_y_subpixel < 0)
297 source_y_subpixel = 0;
298 else if (source_y_subpixel > ((source_height - 1) << kFractionBits))
299 source_y_subpixel = (source_height - 1) << kFractionBits;
307 int source_y = source_y_subpixel >> kFractionBits;
313 int source_y_fraction = (source_y_subpixel & kFractionMask) >> 8;
349 int source_y = (source_y_subpixel + (kFractionMax / 2)) >> kFractionBits;

Completed in 213 milliseconds