From: Konstantinos Margaritis Date: Fri, 23 Sep 2022 07:49:56 +0000 (+0000) Subject: removed unneeded file X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=1b1eebc8d7c3ff31bec6d3b083897ad74c3b6421;p=openpower-isa.git removed unneeded file --- 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; -} -