Home | History | Annotate | Download | only in libvpx

Lines Matching refs:input_shift

531                              int input_shift) {
532 const int offset = input_shift > 0 ? (1 << (input_shift - 1)) : 0;
537 dst->fmt != src->fmt || input_shift < 0) {
563 *p_dst++ = (*p_src++ << input_shift) + offset;
569 int input_shift) {
570 const int offset = input_shift > 0 ? (1 << (input_shift - 1)) : 0;
576 input_shift < 0) {
601 *p_dst++ = (*p_src++ << input_shift) + offset;
608 int input_shift) {
610 high_img_upshift(dst, src, input_shift);
612 low_img_upshift(dst, src, input_shift);