Home
last modified time | relevance | path

Searched refs:down_shift (Results 1 – 4 of 4) sorted by relevance

/external/libvpx/libvpx/
Dtools_common.c386 int down_shift) { in highbd_img_downshift() argument
391 down_shift < 0) { in highbd_img_downshift()
414 for (x = 0; x < w; x++) *p_dst++ = *p_src++ >> down_shift; in highbd_img_downshift()
420 int down_shift) { in lowbd_img_downshift() argument
425 src->fmt != dst->fmt + VPX_IMG_FMT_HIGHBITDEPTH || down_shift < 0) { in lowbd_img_downshift()
448 *p_dst++ = *p_src++ >> down_shift; in lowbd_img_downshift()
454 void vpx_img_downshift(vpx_image_t *dst, vpx_image_t *src, int down_shift) { in vpx_img_downshift() argument
456 highbd_img_downshift(dst, src, down_shift); in vpx_img_downshift()
458 lowbd_img_downshift(dst, src, down_shift); in vpx_img_downshift()
Dtools_common.h159 void vpx_img_downshift(vpx_image_t *dst, vpx_image_t *src, int down_shift);
/external/libaom/libaom/common/
Dtools_common.c358 int down_shift) { in highbd_img_downshift() argument
363 down_shift < 0) { in highbd_img_downshift()
385 for (x = 0; x < w; x++) *p_dst++ = *p_src++ >> down_shift; in highbd_img_downshift()
391 int down_shift) { in lowbd_img_downshift() argument
396 src->fmt != dst->fmt + AOM_IMG_FMT_HIGHBITDEPTH || down_shift < 0) { in lowbd_img_downshift()
418 *p_dst++ = *p_src++ >> down_shift; in lowbd_img_downshift()
425 int down_shift) { in aom_img_downshift() argument
427 highbd_img_downshift(dst, src, down_shift); in aom_img_downshift()
429 lowbd_img_downshift(dst, src, down_shift); in aom_img_downshift()
Dtools_common.h169 int down_shift);