Searched defs:input_shift (Results 1 - 3 of 3) sorted by relevance

/external/libvpx/libvpx/
H A Dtools_common.c291 int input_shift) {
293 const int offset = input_shift > 0 ? (1 << (input_shift - 1)) - 1 : 0;
298 dst->fmt != src->fmt || input_shift < 0) {
325 *p_dst++ = (*p_src++ << input_shift) + offset;
331 int input_shift) {
333 const int offset = input_shift > 0 ? (1 << (input_shift - 1)) - 1 : 0;
339 input_shift < 0) {
365 *p_dst++ = (*p_src++ << input_shift)
290 highbd_img_upshift(vpx_image_t *dst, vpx_image_t *src, int input_shift) argument
330 lowbd_img_upshift(vpx_image_t *dst, vpx_image_t *src, int input_shift) argument
371 vpx_img_upshift(vpx_image_t *dst, vpx_image_t *src, int input_shift) argument
[all...]
H A Dvpxenc.c1920 int input_shift = 0; local
2113 input_shift = 0;
2115 input_shift = (int)stream->config.cfg.g_bit_depth -
2161 if (input_shift || (use_16bit_internal && input.bit_depth == 8)) {
2170 vpx_img_upshift(&raw_shift, &raw, input_shift);
/external/libvpx/libvpx/vp9/encoder/
H A Dvp9_encoder.c2190 unsigned int input_shift) {
2198 diff = (a[x] >> input_shift) - (b[x] >> input_shift);
2304 const unsigned int input_shift = bit_depth - in_bit_depth; local
2312 if (input_shift) {
2315 input_shift);
2187 highbd_get_sse_shift(const uint8_t *a8, int a_stride, const uint8_t *b8, int b_stride, int width, int height, unsigned int input_shift) argument

Completed in 131 milliseconds