common_dspr2.c revision 7ce0a1d1337c01056ba24006efab21f00e179e04
1/*
2 *  Copyright (c) 2015 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#include "vpx_dsp/mips/common_dspr2.h"
12
13#if HAVE_DSPR2
14uint8_t vpx_ff_cropTbl_a[256 + 2 * CROP_WIDTH];
15uint8_t *vpx_ff_cropTbl;
16
17void vpx_dsputil_static_init(void) {
18  int i;
19
20  for (i = 0; i < 256; i++) vpx_ff_cropTbl_a[i + CROP_WIDTH] = i;
21
22  for (i = 0; i < CROP_WIDTH; i++) {
23    vpx_ff_cropTbl_a[i] = 0;
24    vpx_ff_cropTbl_a[i + CROP_WIDTH + 256] = 255;
25  }
26
27  vpx_ff_cropTbl = &vpx_ff_cropTbl_a[CROP_WIDTH];
28}
29
30#endif
31