Merge "Disable vpx_comp_avg_pred_sse2"
This commit is contained in:
@@ -151,7 +151,8 @@ TEST_P(AvgPredTest, DISABLED_Speed) {
|
|||||||
INSTANTIATE_TEST_CASE_P(C, AvgPredTest,
|
INSTANTIATE_TEST_CASE_P(C, AvgPredTest,
|
||||||
::testing::Values(&vpx_comp_avg_pred_c));
|
::testing::Values(&vpx_comp_avg_pred_c));
|
||||||
|
|
||||||
#if HAVE_SSE2
|
// TODO(johannkoenig): https://bugs.chromium.org/p/webm/issues/detail?id=1390
|
||||||
|
#if 0 // HAVE_SSE2
|
||||||
INSTANTIATE_TEST_CASE_P(SSE2, AvgPredTest,
|
INSTANTIATE_TEST_CASE_P(SSE2, AvgPredTest,
|
||||||
::testing::Values(&vpx_comp_avg_pred_sse2));
|
::testing::Values(&vpx_comp_avg_pred_sse2));
|
||||||
#endif // HAVE_SSE2
|
#endif // HAVE_SSE2
|
||||||
|
@@ -226,9 +226,6 @@ MSE(8, 8)
|
|||||||
void vpx_comp_avg_pred_c(uint8_t *comp_pred, const uint8_t *pred, int width,
|
void vpx_comp_avg_pred_c(uint8_t *comp_pred, const uint8_t *pred, int width,
|
||||||
int height, const uint8_t *ref, int ref_stride) {
|
int height, const uint8_t *ref, int ref_stride) {
|
||||||
int i, j;
|
int i, j;
|
||||||
/* comp_pred and pred must be 16 byte aligned. */
|
|
||||||
assert(((intptr_t)comp_pred & 0xf) == 0);
|
|
||||||
assert(((intptr_t)pred & 0xf) == 0);
|
|
||||||
|
|
||||||
for (i = 0; i < height; ++i) {
|
for (i = 0; i < height; ++i) {
|
||||||
for (j = 0; j < width; ++j) {
|
for (j = 0; j < width; ++j) {
|
||||||
|
@@ -1303,7 +1303,7 @@ add_proto qw/unsigned int vpx_get4x4sse_cs/, "const unsigned char *src_ptr, int
|
|||||||
specialize qw/vpx_get4x4sse_cs neon msa/;
|
specialize qw/vpx_get4x4sse_cs neon msa/;
|
||||||
|
|
||||||
add_proto qw/void vpx_comp_avg_pred/, "uint8_t *comp_pred, const uint8_t *pred, int width, int height, const uint8_t *ref, int ref_stride";
|
add_proto qw/void vpx_comp_avg_pred/, "uint8_t *comp_pred, const uint8_t *pred, int width, int height, const uint8_t *ref, int ref_stride";
|
||||||
specialize qw/vpx_comp_avg_pred sse2/;
|
specialize qw/vpx_comp_avg_pred/;
|
||||||
|
|
||||||
#
|
#
|
||||||
# Subpixel Variance
|
# Subpixel Variance
|
||||||
|
Reference in New Issue
Block a user