Cast variance reference output
The larger internal variables are required for the intermediates but RoundHighBitDepth brings them down to uint32_t/unsigned int. Fixes type warnings in visual studio. Change-Id: I48d35284d6cbde330ccdc1f46b6215a645d5eb00
This commit is contained in:
parent
71e88f903d
commit
fdc549994a
@ -96,8 +96,8 @@ static unsigned int variance_ref(const uint8_t *src, const uint8_t *ref,
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
RoundHighBitDepth(bit_depth, &se, &sse);
|
RoundHighBitDepth(bit_depth, &se, &sse);
|
||||||
*sse_ptr = sse;
|
*sse_ptr = (uint32_t) sse;
|
||||||
return sse - (((int64_t) se * se) >> (l2w + l2h));
|
return (unsigned int) (sse - (((int64_t) se * se) >> (l2w + l2h)));
|
||||||
}
|
}
|
||||||
|
|
||||||
static unsigned int subpel_variance_ref(const uint8_t *ref, const uint8_t *src,
|
static unsigned int subpel_variance_ref(const uint8_t *ref, const uint8_t *src,
|
||||||
@ -142,8 +142,8 @@ static unsigned int subpel_variance_ref(const uint8_t *ref, const uint8_t *src,
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
RoundHighBitDepth(bit_depth, &se, &sse);
|
RoundHighBitDepth(bit_depth, &se, &sse);
|
||||||
*sse_ptr = sse;
|
*sse_ptr = (unsigned int) sse;
|
||||||
return sse - (((int64_t) se * se) >> (l2w + l2h));
|
return (unsigned int) (sse - (((int64_t) se * se) >> (l2w + l2h)));
|
||||||
}
|
}
|
||||||
|
|
||||||
typedef unsigned int (*SumOfSquaresFunction)(const int16_t *src);
|
typedef unsigned int (*SumOfSquaresFunction)(const int16_t *src);
|
||||||
@ -510,8 +510,8 @@ unsigned int subpel_avg_variance_ref(const uint8_t *ref,
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
RoundHighBitDepth(bit_depth, &se, &sse);
|
RoundHighBitDepth(bit_depth, &se, &sse);
|
||||||
*sse_ptr = sse;
|
*sse_ptr = (unsigned int) sse;
|
||||||
return sse - (((int64_t) se * se) >> (l2w + l2h));
|
return (unsigned int) (sse - (((int64_t) se * se) >> (l2w + l2h)));
|
||||||
}
|
}
|
||||||
|
|
||||||
template<typename SubpelVarianceFunctionType>
|
template<typename SubpelVarianceFunctionType>
|
||||||
|
Loading…
Reference in New Issue
Block a user