1/*
2 *  Copyright (c) 2011 The WebRTC 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/*
13 * This file contains the Q14 radix-2 tables used in ARM9E optimization routines.
14 *
15 */
16
17extern const unsigned short t_Q14S_rad8[2];
18const unsigned short t_Q14S_rad8[2] = {  0x0000,0x2d41 };
19
20//extern const int t_Q30S_rad8[2];
21//const int t_Q30S_rad8[2] = {  0x00000000,0x2d413ccd };
22
23extern const unsigned short t_Q14R_rad8[2];
24const unsigned short t_Q14R_rad8[2] = {  0x2d41,0x2d41 };
25
26//extern const int t_Q30R_rad8[2];
27//const int t_Q30R_rad8[2] = {  0x2d413ccd,0x2d413ccd };
28