OLD | NEW |
(Empty) | |
| 1 /* |
| 2 * Copyright (c) 2011 The WebM project authors. All Rights Reserved. |
| 3 * |
| 4 * Use of this source code is governed by a BSD-style license |
| 5 * that can be found in the LICENSE file in the root of the source |
| 6 * tree. An additional intellectual property rights grant can be found |
| 7 * in the file PATENTS. All contributing project authors may |
| 8 * be found in the AUTHORS file in the root of the source tree. |
| 9 */ |
| 10 |
| 11 |
| 12 #include "vpx_config.h" |
| 13 #include "vpx/vpx_codec.h" |
| 14 #include "vpx_ports/asm_offsets.h" |
| 15 #include "vp8/common/blockd.h" |
| 16 |
| 17 #if CONFIG_POSTPROC |
| 18 #include "postproc.h" |
| 19 #endif /* CONFIG_POSTPROC */ |
| 20 |
| 21 BEGIN |
| 22 |
| 23 #if CONFIG_POSTPROC |
| 24 /* mfqe.c / filter_by_weight */ |
| 25 DEFINE(MFQE_PRECISION_VAL, MFQE_PRECISION); |
| 26 #endif /* CONFIG_POSTPROC */ |
| 27 |
| 28 END |
| 29 |
| 30 /* add asserts for any offset that is not supported by assembly code */ |
| 31 /* add asserts for any size that is not supported by assembly code */ |
| 32 |
| 33 #if HAVE_MEDIA |
| 34 /* switch case in vp8_intra4x4_predict_armv6 is based on these enumerated values
*/ |
| 35 ct_assert(B_DC_PRED, B_DC_PRED == 0); |
| 36 ct_assert(B_TM_PRED, B_TM_PRED == 1); |
| 37 ct_assert(B_VE_PRED, B_VE_PRED == 2); |
| 38 ct_assert(B_HE_PRED, B_HE_PRED == 3); |
| 39 ct_assert(B_LD_PRED, B_LD_PRED == 4); |
| 40 ct_assert(B_RD_PRED, B_RD_PRED == 5); |
| 41 ct_assert(B_VR_PRED, B_VR_PRED == 6); |
| 42 ct_assert(B_VL_PRED, B_VL_PRED == 7); |
| 43 ct_assert(B_HD_PRED, B_HD_PRED == 8); |
| 44 ct_assert(B_HU_PRED, B_HU_PRED == 9); |
| 45 #endif |
| 46 |
| 47 #if HAVE_SSE2 |
| 48 #if CONFIG_POSTPROC |
| 49 /* vp8_filter_by_weight16x16 and 8x8 */ |
| 50 ct_assert(MFQE_PRECISION_VAL, MFQE_PRECISION == 4) |
| 51 #endif /* CONFIG_POSTPROC */ |
| 52 #endif /* HAVE_SSE2 */ |
OLD | NEW |