removed unneeded file
authorKonstantinos Margaritis <konstantinos.margaritis@vectorcamp.gr>
Fri, 23 Sep 2022 07:49:56 +0000 (07:49 +0000)
committerKonstantinos Margaritis <konstantinos.margaritis@vectorcamp.gr>
Fri, 23 Sep 2022 07:49:56 +0000 (07:49 +0000)
media/video/libvpx/variancefuncs_svp64.c.in [deleted file]

diff --git a/media/video/libvpx/variancefuncs_svp64.c.in b/media/video/libvpx/variancefuncs_svp64.c.in
deleted file mode 100644 (file)
index 94ecf4d..0000000
+++ /dev/null
@@ -1,22 +0,0 @@
-/*
- *  Copyright (c) 2010 The WebM project authors. All Rights Reserved.
- *
- *  Use of this source code is governed by a BSD-style license
- *  that can be found in the LICENSE file in the root of the source
- *  tree. An additional intellectual property rights grant can be found
- *  in the file PATENTS.  All contributing project authors may
- *  be found in the AUTHORS file in the root of the source tree.
- */
-
-#include <stdint.h>
-
-uint32_t vpx_get_mb_ss_svp64_real(const int16_t *src_ptr) {
-  unsigned int i, sum = 0;
-
-  for (i = 0; i < 256; ++i) {
-    sum += src_ptr[i] * src_ptr[i];
-  }
-
-  return sum;
-}
-