summaryrefslogtreecommitdiff
path: root/vp8/common/vp8_asm_com_offsets.c
diff options
context:
space:
mode:
authorJames Zern <jzern@google.com>2013-07-09 14:33:49 -0700
committerJames Zern <jzern@google.com>2013-07-09 14:33:49 -0700
commitf89335f7ca7828d6cfc631deb0583fdb43e7cd67 (patch)
treebb6a08cb3314d80693c678d0453467a20438fd44 /vp8/common/vp8_asm_com_offsets.c
parentf0d9f10d24fdf8729ee21bc5aa54fa09a2f93726 (diff)
downloadlibvpx-f89335f7ca7828d6cfc631deb0583fdb43e7cd67.tar
libvpx-f89335f7ca7828d6cfc631deb0583fdb43e7cd67.tar.gz
libvpx-f89335f7ca7828d6cfc631deb0583fdb43e7cd67.tar.bz2
libvpx-f89335f7ca7828d6cfc631deb0583fdb43e7cd67.zip
remove unused VP8 com/dec asm offsets
Change-Id: Ib3b26ee27f04b2dcbbd32b3127afb45e9f50cfcf
Diffstat (limited to 'vp8/common/vp8_asm_com_offsets.c')
-rw-r--r--vp8/common/vp8_asm_com_offsets.c52
1 files changed, 0 insertions, 52 deletions
diff --git a/vp8/common/vp8_asm_com_offsets.c b/vp8/common/vp8_asm_com_offsets.c
deleted file mode 100644
index 7bab90f82..000000000
--- a/vp8/common/vp8_asm_com_offsets.c
+++ /dev/null
@@ -1,52 +0,0 @@
-/*
- * Copyright (c) 2011 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 "vpx_config.h"
-#include "vpx/vpx_codec.h"
-#include "vpx_ports/asm_offsets.h"
-#include "vp8/common/blockd.h"
-
-#if CONFIG_POSTPROC
-#include "postproc.h"
-#endif /* CONFIG_POSTPROC */
-
-BEGIN
-
-#if CONFIG_POSTPROC
-/* mfqe.c / filter_by_weight */
-DEFINE(MFQE_PRECISION_VAL, MFQE_PRECISION);
-#endif /* CONFIG_POSTPROC */
-
-END
-
-/* add asserts for any offset that is not supported by assembly code */
-/* add asserts for any size that is not supported by assembly code */
-
-#if HAVE_MEDIA
-/* switch case in vp8_intra4x4_predict_armv6 is based on these enumerated values */
-ct_assert(B_DC_PRED, B_DC_PRED == 0);
-ct_assert(B_TM_PRED, B_TM_PRED == 1);
-ct_assert(B_VE_PRED, B_VE_PRED == 2);
-ct_assert(B_HE_PRED, B_HE_PRED == 3);
-ct_assert(B_LD_PRED, B_LD_PRED == 4);
-ct_assert(B_RD_PRED, B_RD_PRED == 5);
-ct_assert(B_VR_PRED, B_VR_PRED == 6);
-ct_assert(B_VL_PRED, B_VL_PRED == 7);
-ct_assert(B_HD_PRED, B_HD_PRED == 8);
-ct_assert(B_HU_PRED, B_HU_PRED == 9);
-#endif
-
-#if HAVE_SSE2
-#if CONFIG_POSTPROC
-/* vp8_filter_by_weight16x16 and 8x8 */
-ct_assert(MFQE_PRECISION_VAL, MFQE_PRECISION == 4)
-#endif /* CONFIG_POSTPROC */
-#endif /* HAVE_SSE2 */