From 1b1eebc8d7c3ff31bec6d3b083897ad74c3b6421 Mon Sep 17 00:00:00 2001 From: Konstantinos Margaritis Date: Fri, 23 Sep 2022 07:49:56 +0000 Subject: [PATCH] removed unneeded file --- media/video/libvpx/variancefuncs_svp64.c.in | 22 --------------------- 1 file changed, 22 deletions(-) delete mode 100644 media/video/libvpx/variancefuncs_svp64.c.in diff --git a/media/video/libvpx/variancefuncs_svp64.c.in b/media/video/libvpx/variancefuncs_svp64.c.in deleted file mode 100644 index 94ecf4db..00000000 --- a/media/video/libvpx/variancefuncs_svp64.c.in +++ /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 - -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; -} - -- 2.30.2