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

  /external/libvpx/libvpx/vpx_scale/generic/
vpx_scale.c 179 unsigned int right_modifier = 0; local
190 dest[i] = (char)((left_modifier * left_pixel + right_modifier * right_pixel + round_value) / dest_scale);
192 right_modifier += source_scale;
194 while (right_modifier > dest_scale) {
195 right_modifier -= dest_scale;
201 left_modifier = dest_scale - right_modifier;
  /hardware/intel/common/omx-components/videocodec/libvpx_internal/libvpx/vpx_scale/generic/
vpx_scale.c 178 unsigned int right_modifier = 0; local
189 dest[i] = (char)((left_modifier * left_pixel + right_modifier * right_pixel + round_value) / dest_scale);
191 right_modifier += source_scale;
193 while (right_modifier > dest_scale) {
194 right_modifier -= dest_scale;
200 left_modifier = dest_scale - right_modifier;

Completed in 33 milliseconds