annotate libfaad2/sbr_noise.h @ 25661:293aeec83153

Replace the persistent CODECS_FLAG_SELECTED by a local "stringset" with an almost-trivial implementation. This allows making the builtin codec structs const, and it also makes clearer that this "selected" status is not used outside the init functions.
author reimar
date Sat, 12 Jan 2008 14:05:46 +0000
parents 59b6fa5b4201
children e83eef58b30a
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
10725
e989150f8216 libfaad2 v2.0rc1 imported
arpi
parents:
diff changeset
1 /*
e989150f8216 libfaad2 v2.0rc1 imported
arpi
parents:
diff changeset
2 ** FAAD2 - Freeware Advanced Audio (AAC) Decoder including SBR decoding
12527
4a370c80fe5c update to the 2.0 release of faad, patch by adland
diego
parents: 10989
diff changeset
3 ** Copyright (C) 2003-2004 M. Bakker, Ahead Software AG, http://www.nero.com
10725
e989150f8216 libfaad2 v2.0rc1 imported
arpi
parents:
diff changeset
4 **
e989150f8216 libfaad2 v2.0rc1 imported
arpi
parents:
diff changeset
5 ** This program is free software; you can redistribute it and/or modify
e989150f8216 libfaad2 v2.0rc1 imported
arpi
parents:
diff changeset
6 ** it under the terms of the GNU General Public License as published by
e989150f8216 libfaad2 v2.0rc1 imported
arpi
parents:
diff changeset
7 ** the Free Software Foundation; either version 2 of the License, or
e989150f8216 libfaad2 v2.0rc1 imported
arpi
parents:
diff changeset
8 ** (at your option) any later version.
e989150f8216 libfaad2 v2.0rc1 imported
arpi
parents:
diff changeset
9 **
e989150f8216 libfaad2 v2.0rc1 imported
arpi
parents:
diff changeset
10 ** This program is distributed in the hope that it will be useful,
e989150f8216 libfaad2 v2.0rc1 imported
arpi
parents:
diff changeset
11 ** but WITHOUT ANY WARRANTY; without even the implied warranty of
e989150f8216 libfaad2 v2.0rc1 imported
arpi
parents:
diff changeset
12 ** MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
e989150f8216 libfaad2 v2.0rc1 imported
arpi
parents:
diff changeset
13 ** GNU General Public License for more details.
e989150f8216 libfaad2 v2.0rc1 imported
arpi
parents:
diff changeset
14 **
e989150f8216 libfaad2 v2.0rc1 imported
arpi
parents:
diff changeset
15 ** You should have received a copy of the GNU General Public License
e989150f8216 libfaad2 v2.0rc1 imported
arpi
parents:
diff changeset
16 ** along with this program; if not, write to the Free Software
e989150f8216 libfaad2 v2.0rc1 imported
arpi
parents:
diff changeset
17 ** Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
e989150f8216 libfaad2 v2.0rc1 imported
arpi
parents:
diff changeset
18 **
e989150f8216 libfaad2 v2.0rc1 imported
arpi
parents:
diff changeset
19 ** Any non-GPL usage of this software or parts of this software is strictly
e989150f8216 libfaad2 v2.0rc1 imported
arpi
parents:
diff changeset
20 ** forbidden.
e989150f8216 libfaad2 v2.0rc1 imported
arpi
parents:
diff changeset
21 **
e989150f8216 libfaad2 v2.0rc1 imported
arpi
parents:
diff changeset
22 ** Commercial non-GPL licensing of this software is possible.
e989150f8216 libfaad2 v2.0rc1 imported
arpi
parents:
diff changeset
23 ** For more info contact Ahead Software through Mpeg4AAClicense@nero.com.
e989150f8216 libfaad2 v2.0rc1 imported
arpi
parents:
diff changeset
24 **
18141
59b6fa5b4201 Update to faad2 cvs 20040915+MPlayer fixes
rtognimp
parents: 14727
diff changeset
25 ** $Id: sbr_noise.h,v 1.13 2004/09/04 14:56:28 menno Exp $
10725
e989150f8216 libfaad2 v2.0rc1 imported
arpi
parents:
diff changeset
26 **/
e989150f8216 libfaad2 v2.0rc1 imported
arpi
parents:
diff changeset
27
e989150f8216 libfaad2 v2.0rc1 imported
arpi
parents:
diff changeset
28 #ifndef __SBR_NOISE_H__
e989150f8216 libfaad2 v2.0rc1 imported
arpi
parents:
diff changeset
29 #define __SBR_NOISE_H__
e989150f8216 libfaad2 v2.0rc1 imported
arpi
parents:
diff changeset
30
e989150f8216 libfaad2 v2.0rc1 imported
arpi
parents:
diff changeset
31 #ifdef __cplusplus
e989150f8216 libfaad2 v2.0rc1 imported
arpi
parents:
diff changeset
32 extern "C" {
e989150f8216 libfaad2 v2.0rc1 imported
arpi
parents:
diff changeset
33 #endif
e989150f8216 libfaad2 v2.0rc1 imported
arpi
parents:
diff changeset
34
e989150f8216 libfaad2 v2.0rc1 imported
arpi
parents:
diff changeset
35 #ifdef _MSC_VER
e989150f8216 libfaad2 v2.0rc1 imported
arpi
parents:
diff changeset
36 #pragma warning(disable:4305)
e989150f8216 libfaad2 v2.0rc1 imported
arpi
parents:
diff changeset
37 #pragma warning(disable:4244)
e989150f8216 libfaad2 v2.0rc1 imported
arpi
parents:
diff changeset
38 #endif
e989150f8216 libfaad2 v2.0rc1 imported
arpi
parents:
diff changeset
39
e989150f8216 libfaad2 v2.0rc1 imported
arpi
parents:
diff changeset
40
e989150f8216 libfaad2 v2.0rc1 imported
arpi
parents:
diff changeset
41 /* Table 1.A.13 Noise table V */
12527
4a370c80fe5c update to the 2.0 release of faad, patch by adland
diego
parents: 10989
diff changeset
42 ALIGN static const complex_t V[] = {
4a370c80fe5c update to the 2.0 release of faad, patch by adland
diego
parents: 10989
diff changeset
43 { FRAC_CONST(-0.99948155879974), FRAC_CONST(-0.59483414888382) },
4a370c80fe5c update to the 2.0 release of faad, patch by adland
diego
parents: 10989
diff changeset
44 { FRAC_CONST(0.97113454341888), FRAC_CONST(-0.67528516054153) },
4a370c80fe5c update to the 2.0 release of faad, patch by adland
diego
parents: 10989
diff changeset
45 { FRAC_CONST(0.14130051434040), FRAC_CONST(-0.95090985298157) },
4a370c80fe5c update to the 2.0 release of faad, patch by adland
diego
parents: 10989
diff changeset
46 { FRAC_CONST(-0.47005495429039), FRAC_CONST(-0.37340548634529) },
4a370c80fe5c update to the 2.0 release of faad, patch by adland
diego
parents: 10989
diff changeset
47 { FRAC_CONST(0.80705064535141), FRAC_CONST(0.29653668403625) },
4a370c80fe5c update to the 2.0 release of faad, patch by adland
diego
parents: 10989
diff changeset
48 { FRAC_CONST(-0.38981479406357), FRAC_CONST(0.89572608470917) },
4a370c80fe5c update to the 2.0 release of faad, patch by adland
diego
parents: 10989
diff changeset
49 { FRAC_CONST(-0.01053049881011), FRAC_CONST(-0.66959059238434) },
4a370c80fe5c update to the 2.0 release of faad, patch by adland
diego
parents: 10989
diff changeset
50 { FRAC_CONST(-0.91266369819641), FRAC_CONST(-0.11522938311100) },
4a370c80fe5c update to the 2.0 release of faad, patch by adland
diego
parents: 10989
diff changeset
51 { FRAC_CONST(0.54840421676636), FRAC_CONST(0.75221365690231) },
4a370c80fe5c update to the 2.0 release of faad, patch by adland
diego
parents: 10989
diff changeset
52 { FRAC_CONST(0.40009254217148), FRAC_CONST(-0.98929399251938) },
4a370c80fe5c update to the 2.0 release of faad, patch by adland
diego
parents: 10989
diff changeset
53 { FRAC_CONST(-0.99867975711823), FRAC_CONST(-0.88147068023682) },
4a370c80fe5c update to the 2.0 release of faad, patch by adland
diego
parents: 10989
diff changeset
54 { FRAC_CONST(-0.95531076192856), FRAC_CONST(0.90908759832382) },
4a370c80fe5c update to the 2.0 release of faad, patch by adland
diego
parents: 10989
diff changeset
55 { FRAC_CONST(-0.45725932717323), FRAC_CONST(-0.56716322898865) },
4a370c80fe5c update to the 2.0 release of faad, patch by adland
diego
parents: 10989
diff changeset
56 { FRAC_CONST(-0.72929674386978), FRAC_CONST(-0.98008275032043) },
4a370c80fe5c update to the 2.0 release of faad, patch by adland
diego
parents: 10989
diff changeset
57 { FRAC_CONST(0.75622802972794), FRAC_CONST(0.20950329303741) },
4a370c80fe5c update to the 2.0 release of faad, patch by adland
diego
parents: 10989
diff changeset
58 { FRAC_CONST(0.07069442421198), FRAC_CONST(-0.78247898817062) },
4a370c80fe5c update to the 2.0 release of faad, patch by adland
diego
parents: 10989
diff changeset
59 { FRAC_CONST(0.74496251344681), FRAC_CONST(-0.91169005632401) },
4a370c80fe5c update to the 2.0 release of faad, patch by adland
diego
parents: 10989
diff changeset
60 { FRAC_CONST(-0.96440184116364), FRAC_CONST(-0.94739919900894) },
4a370c80fe5c update to the 2.0 release of faad, patch by adland
diego
parents: 10989
diff changeset
61 { FRAC_CONST(0.30424630641937), FRAC_CONST(-0.49438267946243) },
4a370c80fe5c update to the 2.0 release of faad, patch by adland
diego
parents: 10989
diff changeset
62 { FRAC_CONST(0.66565030813217), FRAC_CONST(0.64652937650681) },
4a370c80fe5c update to the 2.0 release of faad, patch by adland
diego
parents: 10989
diff changeset
63 { FRAC_CONST(0.91697007417679), FRAC_CONST(0.17514097690582) },
4a370c80fe5c update to the 2.0 release of faad, patch by adland
diego
parents: 10989
diff changeset
64 { FRAC_CONST(-0.70774918794632), FRAC_CONST(0.52548652887344) },
4a370c80fe5c update to the 2.0 release of faad, patch by adland
diego
parents: 10989
diff changeset
65 { FRAC_CONST(-0.70051413774490), FRAC_CONST(-0.45340028405190) },
4a370c80fe5c update to the 2.0 release of faad, patch by adland
diego
parents: 10989
diff changeset
66 { FRAC_CONST(-0.99496513605118), FRAC_CONST(-0.90071910619736) },
4a370c80fe5c update to the 2.0 release of faad, patch by adland
diego
parents: 10989
diff changeset
67 { FRAC_CONST(0.98164492845535), FRAC_CONST(-0.77463155984879) },
4a370c80fe5c update to the 2.0 release of faad, patch by adland
diego
parents: 10989
diff changeset
68 { FRAC_CONST(-0.54671579599380), FRAC_CONST(-0.02570928446949) },
4a370c80fe5c update to the 2.0 release of faad, patch by adland
diego
parents: 10989
diff changeset
69 { FRAC_CONST(-0.01689629070461), FRAC_CONST(0.00287506449968) },
4a370c80fe5c update to the 2.0 release of faad, patch by adland
diego
parents: 10989
diff changeset
70 { FRAC_CONST(-0.86110347509384), FRAC_CONST(0.42548584938049) },
4a370c80fe5c update to the 2.0 release of faad, patch by adland
diego
parents: 10989
diff changeset
71 { FRAC_CONST(-0.98892980813980), FRAC_CONST(-0.87881129980087) },
4a370c80fe5c update to the 2.0 release of faad, patch by adland
diego
parents: 10989
diff changeset
72 { FRAC_CONST(0.51756626367569), FRAC_CONST(0.66926783323288) },
4a370c80fe5c update to the 2.0 release of faad, patch by adland
diego
parents: 10989
diff changeset
73 { FRAC_CONST(-0.99635028839111), FRAC_CONST(-0.58107727766037) },
4a370c80fe5c update to the 2.0 release of faad, patch by adland
diego
parents: 10989
diff changeset
74 { FRAC_CONST(-0.99969369173050), FRAC_CONST(0.98369991779327) },
4a370c80fe5c update to the 2.0 release of faad, patch by adland
diego
parents: 10989
diff changeset
75 { FRAC_CONST(0.55266261100769), FRAC_CONST(0.59449058771133) },
4a370c80fe5c update to the 2.0 release of faad, patch by adland
diego
parents: 10989
diff changeset
76 { FRAC_CONST(0.34581178426743), FRAC_CONST(0.94879418611526) },
4a370c80fe5c update to the 2.0 release of faad, patch by adland
diego
parents: 10989
diff changeset
77 { FRAC_CONST(0.62664210796356), FRAC_CONST(-0.74402970075607) },
4a370c80fe5c update to the 2.0 release of faad, patch by adland
diego
parents: 10989
diff changeset
78 { FRAC_CONST(-0.77149701118469), FRAC_CONST(-0.33883658051491) },
4a370c80fe5c update to the 2.0 release of faad, patch by adland
diego
parents: 10989
diff changeset
79 { FRAC_CONST(-0.91592246294022), FRAC_CONST(0.03687901422381) },
4a370c80fe5c update to the 2.0 release of faad, patch by adland
diego
parents: 10989
diff changeset
80 { FRAC_CONST(-0.76285493373871), FRAC_CONST(-0.91371870040894) },
4a370c80fe5c update to the 2.0 release of faad, patch by adland
diego
parents: 10989
diff changeset
81 { FRAC_CONST(0.79788339138031), FRAC_CONST(-0.93180972337723) },
4a370c80fe5c update to the 2.0 release of faad, patch by adland
diego
parents: 10989
diff changeset
82 { FRAC_CONST(0.54473078250885), FRAC_CONST(-0.11919206380844) },
4a370c80fe5c update to the 2.0 release of faad, patch by adland
diego
parents: 10989
diff changeset
83 { FRAC_CONST(-0.85639280080795), FRAC_CONST(0.42429855465889) },
4a370c80fe5c update to the 2.0 release of faad, patch by adland
diego
parents: 10989
diff changeset
84 { FRAC_CONST(-0.92882400751114), FRAC_CONST(0.27871808409691) },
4a370c80fe5c update to the 2.0 release of faad, patch by adland
diego
parents: 10989
diff changeset
85 { FRAC_CONST(-0.11708371341228), FRAC_CONST(-0.99800843000412) },
4a370c80fe5c update to the 2.0 release of faad, patch by adland
diego
parents: 10989
diff changeset
86 { FRAC_CONST(0.21356749534607), FRAC_CONST(-0.90716296434402) },
4a370c80fe5c update to the 2.0 release of faad, patch by adland
diego
parents: 10989
diff changeset
87 { FRAC_CONST(-0.76191693544388), FRAC_CONST(0.99768120050430) },
4a370c80fe5c update to the 2.0 release of faad, patch by adland
diego
parents: 10989
diff changeset
88 { FRAC_CONST(0.98111045360565), FRAC_CONST(-0.95854461193085) },
4a370c80fe5c update to the 2.0 release of faad, patch by adland
diego
parents: 10989
diff changeset
89 { FRAC_CONST(-0.85913270711899), FRAC_CONST(0.95766568183899) },
4a370c80fe5c update to the 2.0 release of faad, patch by adland
diego
parents: 10989
diff changeset
90 { FRAC_CONST(-0.93307244777679), FRAC_CONST(0.49431759119034) },
4a370c80fe5c update to the 2.0 release of faad, patch by adland
diego
parents: 10989
diff changeset
91 { FRAC_CONST(0.30485755205154), FRAC_CONST(-0.70540034770966) },
4a370c80fe5c update to the 2.0 release of faad, patch by adland
diego
parents: 10989
diff changeset
92 { FRAC_CONST(0.85289651155472), FRAC_CONST(0.46766132116318) },
4a370c80fe5c update to the 2.0 release of faad, patch by adland
diego
parents: 10989
diff changeset
93 { FRAC_CONST(0.91328084468842), FRAC_CONST(-0.99839597940445) },
4a370c80fe5c update to the 2.0 release of faad, patch by adland
diego
parents: 10989
diff changeset
94 { FRAC_CONST(-0.05890199914575), FRAC_CONST(0.70741826295853) },
4a370c80fe5c update to the 2.0 release of faad, patch by adland
diego
parents: 10989
diff changeset
95 { FRAC_CONST(0.28398686647415), FRAC_CONST(0.34633556008339) },
4a370c80fe5c update to the 2.0 release of faad, patch by adland
diego
parents: 10989
diff changeset
96 { FRAC_CONST(0.95258164405823), FRAC_CONST(-0.54893416166306) },
4a370c80fe5c update to the 2.0 release of faad, patch by adland
diego
parents: 10989
diff changeset
97 { FRAC_CONST(-0.78566324710846), FRAC_CONST(-0.75568538904190) },
4a370c80fe5c update to the 2.0 release of faad, patch by adland
diego
parents: 10989
diff changeset
98 { FRAC_CONST(-0.95789498090744), FRAC_CONST(-0.20423194766045) },
4a370c80fe5c update to the 2.0 release of faad, patch by adland
diego
parents: 10989
diff changeset
99 { FRAC_CONST(0.82411158084869), FRAC_CONST(0.96654617786407) },
4a370c80fe5c update to the 2.0 release of faad, patch by adland
diego
parents: 10989
diff changeset
100 { FRAC_CONST(-0.65185445547104), FRAC_CONST(-0.88734990358353) },
4a370c80fe5c update to the 2.0 release of faad, patch by adland
diego
parents: 10989
diff changeset
101 { FRAC_CONST(-0.93643605709076), FRAC_CONST(0.99870789051056) },
4a370c80fe5c update to the 2.0 release of faad, patch by adland
diego
parents: 10989
diff changeset
102 { FRAC_CONST(0.91427159309387), FRAC_CONST(-0.98290503025055) },
4a370c80fe5c update to the 2.0 release of faad, patch by adland
diego
parents: 10989
diff changeset
103 { FRAC_CONST(-0.70395684242249), FRAC_CONST(0.58796799182892) },
4a370c80fe5c update to the 2.0 release of faad, patch by adland
diego
parents: 10989
diff changeset
104 { FRAC_CONST(0.00563771976158), FRAC_CONST(0.61768198013306) },
4a370c80fe5c update to the 2.0 release of faad, patch by adland
diego
parents: 10989
diff changeset
105 { FRAC_CONST(0.89065051078796), FRAC_CONST(0.52783352136612) },
4a370c80fe5c update to the 2.0 release of faad, patch by adland
diego
parents: 10989
diff changeset
106 { FRAC_CONST(-0.68683707714081), FRAC_CONST(0.80806946754456) },
4a370c80fe5c update to the 2.0 release of faad, patch by adland
diego
parents: 10989
diff changeset
107 { FRAC_CONST(0.72165340185165), FRAC_CONST(-0.69259858131409) },
4a370c80fe5c update to the 2.0 release of faad, patch by adland
diego
parents: 10989
diff changeset
108 { FRAC_CONST(-0.62928247451782), FRAC_CONST(0.13627037405968) },
4a370c80fe5c update to the 2.0 release of faad, patch by adland
diego
parents: 10989
diff changeset
109 { FRAC_CONST(0.29938435554504), FRAC_CONST(-0.46051329374313) },
4a370c80fe5c update to the 2.0 release of faad, patch by adland
diego
parents: 10989
diff changeset
110 { FRAC_CONST(-0.91781955957413), FRAC_CONST(-0.74012714624405) },
4a370c80fe5c update to the 2.0 release of faad, patch by adland
diego
parents: 10989
diff changeset
111 { FRAC_CONST(0.99298715591431), FRAC_CONST(0.40816611051559) },
4a370c80fe5c update to the 2.0 release of faad, patch by adland
diego
parents: 10989
diff changeset
112 { FRAC_CONST(0.82368296384811), FRAC_CONST(-0.74036049842834) },
4a370c80fe5c update to the 2.0 release of faad, patch by adland
diego
parents: 10989
diff changeset
113 { FRAC_CONST(-0.98512834310532), FRAC_CONST(-0.99972331523895) },
4a370c80fe5c update to the 2.0 release of faad, patch by adland
diego
parents: 10989
diff changeset
114 { FRAC_CONST(-0.95915371179581), FRAC_CONST(-0.99237799644470) },
4a370c80fe5c update to the 2.0 release of faad, patch by adland
diego
parents: 10989
diff changeset
115 { FRAC_CONST(-0.21411126852036), FRAC_CONST(-0.93424820899963) },
4a370c80fe5c update to the 2.0 release of faad, patch by adland
diego
parents: 10989
diff changeset
116 { FRAC_CONST(-0.68821477890015), FRAC_CONST(-0.26892307400703) },
4a370c80fe5c update to the 2.0 release of faad, patch by adland
diego
parents: 10989
diff changeset
117 { FRAC_CONST(0.91851997375488), FRAC_CONST(0.09358228743076) },
4a370c80fe5c update to the 2.0 release of faad, patch by adland
diego
parents: 10989
diff changeset
118 { FRAC_CONST(-0.96062767505646), FRAC_CONST(0.36099094152451) },
4a370c80fe5c update to the 2.0 release of faad, patch by adland
diego
parents: 10989
diff changeset
119 { FRAC_CONST(0.51646184921265), FRAC_CONST(-0.71373331546783) },
4a370c80fe5c update to the 2.0 release of faad, patch by adland
diego
parents: 10989
diff changeset
120 { FRAC_CONST(0.61130720376968), FRAC_CONST(0.46950140595436) },
4a370c80fe5c update to the 2.0 release of faad, patch by adland
diego
parents: 10989
diff changeset
121 { FRAC_CONST(0.47336128354073), FRAC_CONST(-0.27333179116249) },
4a370c80fe5c update to the 2.0 release of faad, patch by adland
diego
parents: 10989
diff changeset
122 { FRAC_CONST(0.90998309850693), FRAC_CONST(0.96715664863586) },
4a370c80fe5c update to the 2.0 release of faad, patch by adland
diego
parents: 10989
diff changeset
123 { FRAC_CONST(0.44844800233841), FRAC_CONST(0.99211573600769) },
4a370c80fe5c update to the 2.0 release of faad, patch by adland
diego
parents: 10989
diff changeset
124 { FRAC_CONST(0.66614890098572), FRAC_CONST(0.96590173244476) },
4a370c80fe5c update to the 2.0 release of faad, patch by adland
diego
parents: 10989
diff changeset
125 { FRAC_CONST(0.74922239780426), FRAC_CONST(-0.89879858493805) },
4a370c80fe5c update to the 2.0 release of faad, patch by adland
diego
parents: 10989
diff changeset
126 { FRAC_CONST(-0.99571585655212), FRAC_CONST(0.52785521745682) },
4a370c80fe5c update to the 2.0 release of faad, patch by adland
diego
parents: 10989
diff changeset
127 { FRAC_CONST(0.97401082515717), FRAC_CONST(-0.16855870187283) },
4a370c80fe5c update to the 2.0 release of faad, patch by adland
diego
parents: 10989
diff changeset
128 { FRAC_CONST(0.72683745622635), FRAC_CONST(-0.48060774803162) },
4a370c80fe5c update to the 2.0 release of faad, patch by adland
diego
parents: 10989
diff changeset
129 { FRAC_CONST(0.95432192087173), FRAC_CONST(0.68849605321884) },
4a370c80fe5c update to the 2.0 release of faad, patch by adland
diego
parents: 10989
diff changeset
130 { FRAC_CONST(-0.72962206602097), FRAC_CONST(-0.76608443260193) },
4a370c80fe5c update to the 2.0 release of faad, patch by adland
diego
parents: 10989
diff changeset
131 { FRAC_CONST(-0.85359477996826), FRAC_CONST(0.88738125562668) },
4a370c80fe5c update to the 2.0 release of faad, patch by adland
diego
parents: 10989
diff changeset
132 { FRAC_CONST(-0.81412428617477), FRAC_CONST(-0.97480767965317) },
4a370c80fe5c update to the 2.0 release of faad, patch by adland
diego
parents: 10989
diff changeset
133 { FRAC_CONST(-0.87930774688721), FRAC_CONST(0.74748307466507) },
4a370c80fe5c update to the 2.0 release of faad, patch by adland
diego
parents: 10989
diff changeset
134 { FRAC_CONST(-0.71573328971863), FRAC_CONST(-0.98570609092712) },
4a370c80fe5c update to the 2.0 release of faad, patch by adland
diego
parents: 10989
diff changeset
135 { FRAC_CONST(0.83524298667908), FRAC_CONST(0.83702534437180) },
4a370c80fe5c update to the 2.0 release of faad, patch by adland
diego
parents: 10989
diff changeset
136 { FRAC_CONST(-0.48086065053940), FRAC_CONST(-0.98848503828049) },
4a370c80fe5c update to the 2.0 release of faad, patch by adland
diego
parents: 10989
diff changeset
137 { FRAC_CONST(0.97139126062393), FRAC_CONST(0.80093622207642) },
4a370c80fe5c update to the 2.0 release of faad, patch by adland
diego
parents: 10989
diff changeset
138 { FRAC_CONST(0.51992827653885), FRAC_CONST(0.80247628688812) },
4a370c80fe5c update to the 2.0 release of faad, patch by adland
diego
parents: 10989
diff changeset
139 { FRAC_CONST(-0.00848591234535), FRAC_CONST(-0.76670128107071) },
4a370c80fe5c update to the 2.0 release of faad, patch by adland
diego
parents: 10989
diff changeset
140 { FRAC_CONST(-0.70294374227524), FRAC_CONST(0.55359911918640) },
4a370c80fe5c update to the 2.0 release of faad, patch by adland
diego
parents: 10989
diff changeset
141 { FRAC_CONST(-0.95894426107407), FRAC_CONST(-0.43265503644943) },
4a370c80fe5c update to the 2.0 release of faad, patch by adland
diego
parents: 10989
diff changeset
142 { FRAC_CONST(0.97079253196716), FRAC_CONST(0.09325857460499) },
4a370c80fe5c update to the 2.0 release of faad, patch by adland
diego
parents: 10989
diff changeset
143 { FRAC_CONST(-0.92404294013977), FRAC_CONST(0.85507702827454) },
4a370c80fe5c update to the 2.0 release of faad, patch by adland
diego
parents: 10989
diff changeset
144 { FRAC_CONST(-0.69506472349167), FRAC_CONST(0.98633414506912) },
4a370c80fe5c update to the 2.0 release of faad, patch by adland
diego
parents: 10989
diff changeset
145 { FRAC_CONST(0.26559203863144), FRAC_CONST(0.73314309120178) },
4a370c80fe5c update to the 2.0 release of faad, patch by adland
diego
parents: 10989
diff changeset
146 { FRAC_CONST(0.28038442134857), FRAC_CONST(0.14537914097309) },
4a370c80fe5c update to the 2.0 release of faad, patch by adland
diego
parents: 10989
diff changeset
147 { FRAC_CONST(-0.74138122797012), FRAC_CONST(0.99310338497162) },
4a370c80fe5c update to the 2.0 release of faad, patch by adland
diego
parents: 10989
diff changeset
148 { FRAC_CONST(-0.01752796024084), FRAC_CONST(-0.82616633176804) },
4a370c80fe5c update to the 2.0 release of faad, patch by adland
diego
parents: 10989
diff changeset
149 { FRAC_CONST(-0.55126774311066), FRAC_CONST(-0.98898541927338) },
4a370c80fe5c update to the 2.0 release of faad, patch by adland
diego
parents: 10989
diff changeset
150 { FRAC_CONST(0.97960901260376), FRAC_CONST(-0.94021445512772) },
4a370c80fe5c update to the 2.0 release of faad, patch by adland
diego
parents: 10989
diff changeset
151 { FRAC_CONST(-0.99196308851242), FRAC_CONST(0.67019015550613) },
4a370c80fe5c update to the 2.0 release of faad, patch by adland
diego
parents: 10989
diff changeset
152 { FRAC_CONST(-0.67684930562973), FRAC_CONST(0.12631492316723) },
4a370c80fe5c update to the 2.0 release of faad, patch by adland
diego
parents: 10989
diff changeset
153 { FRAC_CONST(0.09140039235353), FRAC_CONST(-0.20537731051445) },
4a370c80fe5c update to the 2.0 release of faad, patch by adland
diego
parents: 10989
diff changeset
154 { FRAC_CONST(-0.71658962965012), FRAC_CONST(-0.97788202762604) },
4a370c80fe5c update to the 2.0 release of faad, patch by adland
diego
parents: 10989
diff changeset
155 { FRAC_CONST(0.81014639139175), FRAC_CONST(0.53722649812698) },
4a370c80fe5c update to the 2.0 release of faad, patch by adland
diego
parents: 10989
diff changeset
156 { FRAC_CONST(0.40616992115974), FRAC_CONST(-0.26469007134438) },
4a370c80fe5c update to the 2.0 release of faad, patch by adland
diego
parents: 10989
diff changeset
157 { FRAC_CONST(-0.67680186033249), FRAC_CONST(0.94502049684525) },
4a370c80fe5c update to the 2.0 release of faad, patch by adland
diego
parents: 10989
diff changeset
158 { FRAC_CONST(0.86849772930145), FRAC_CONST(-0.18333598971367) },
4a370c80fe5c update to the 2.0 release of faad, patch by adland
diego
parents: 10989
diff changeset
159 { FRAC_CONST(-0.99500381946564), FRAC_CONST(-0.02634122036397) },
4a370c80fe5c update to the 2.0 release of faad, patch by adland
diego
parents: 10989
diff changeset
160 { FRAC_CONST(0.84329187870026), FRAC_CONST(0.10406957566738) },
4a370c80fe5c update to the 2.0 release of faad, patch by adland
diego
parents: 10989
diff changeset
161 { FRAC_CONST(-0.09215968847275), FRAC_CONST(0.69540011882782) },
4a370c80fe5c update to the 2.0 release of faad, patch by adland
diego
parents: 10989
diff changeset
162 { FRAC_CONST(0.99956172704697), FRAC_CONST(-0.12358541786671) },
4a370c80fe5c update to the 2.0 release of faad, patch by adland
diego
parents: 10989
diff changeset
163 { FRAC_CONST(-0.79732781648636), FRAC_CONST(-0.91582524776459) },
4a370c80fe5c update to the 2.0 release of faad, patch by adland
diego
parents: 10989
diff changeset
164 { FRAC_CONST(0.96349972486496), FRAC_CONST(0.96640455722809) },
4a370c80fe5c update to the 2.0 release of faad, patch by adland
diego
parents: 10989
diff changeset
165 { FRAC_CONST(-0.79942780733109), FRAC_CONST(0.64323902130127) },
4a370c80fe5c update to the 2.0 release of faad, patch by adland
diego
parents: 10989
diff changeset
166 { FRAC_CONST(-0.11566039919853), FRAC_CONST(0.28587844967842) },
4a370c80fe5c update to the 2.0 release of faad, patch by adland
diego
parents: 10989
diff changeset
167 { FRAC_CONST(-0.39922955632210), FRAC_CONST(0.94129604101181) },
4a370c80fe5c update to the 2.0 release of faad, patch by adland
diego
parents: 10989
diff changeset
168 { FRAC_CONST(0.99089199304581), FRAC_CONST(-0.92062628269196) },
4a370c80fe5c update to the 2.0 release of faad, patch by adland
diego
parents: 10989
diff changeset
169 { FRAC_CONST(0.28631284832954), FRAC_CONST(-0.91035044193268) },
4a370c80fe5c update to the 2.0 release of faad, patch by adland
diego
parents: 10989
diff changeset
170 { FRAC_CONST(-0.83302724361420), FRAC_CONST(-0.67330408096313) },
4a370c80fe5c update to the 2.0 release of faad, patch by adland
diego
parents: 10989
diff changeset
171 { FRAC_CONST(0.95404446125031), FRAC_CONST(0.49162766337395) },
4a370c80fe5c update to the 2.0 release of faad, patch by adland
diego
parents: 10989
diff changeset
172 { FRAC_CONST(-0.06449863314629), FRAC_CONST(0.03250560909510) },
4a370c80fe5c update to the 2.0 release of faad, patch by adland
diego
parents: 10989
diff changeset
173 { FRAC_CONST(-0.99575054645538), FRAC_CONST(0.42389783263206) },
4a370c80fe5c update to the 2.0 release of faad, patch by adland
diego
parents: 10989
diff changeset
174 { FRAC_CONST(-0.65501141548157), FRAC_CONST(0.82546114921570) },
4a370c80fe5c update to the 2.0 release of faad, patch by adland
diego
parents: 10989
diff changeset
175 { FRAC_CONST(-0.81254440546036), FRAC_CONST(-0.51627236604691) },
4a370c80fe5c update to the 2.0 release of faad, patch by adland
diego
parents: 10989
diff changeset
176 { FRAC_CONST(-0.99646371603012), FRAC_CONST(0.84490531682968) },
4a370c80fe5c update to the 2.0 release of faad, patch by adland
diego
parents: 10989
diff changeset
177 { FRAC_CONST(0.00287840608507), FRAC_CONST(0.64768260717392) },
4a370c80fe5c update to the 2.0 release of faad, patch by adland
diego
parents: 10989
diff changeset
178 { FRAC_CONST(0.70176988840103), FRAC_CONST(-0.20453028380871) },
4a370c80fe5c update to the 2.0 release of faad, patch by adland
diego
parents: 10989
diff changeset
179 { FRAC_CONST(0.96361881494522), FRAC_CONST(0.40706968307495) },
4a370c80fe5c update to the 2.0 release of faad, patch by adland
diego
parents: 10989
diff changeset
180 { FRAC_CONST(-0.68883758783340), FRAC_CONST(0.91338956356049) },
4a370c80fe5c update to the 2.0 release of faad, patch by adland
diego
parents: 10989
diff changeset
181 { FRAC_CONST(-0.34875586628914), FRAC_CONST(0.71472293138504) },
4a370c80fe5c update to the 2.0 release of faad, patch by adland
diego
parents: 10989
diff changeset
182 { FRAC_CONST(0.91980081796646), FRAC_CONST(0.66507452726364) },
4a370c80fe5c update to the 2.0 release of faad, patch by adland
diego
parents: 10989
diff changeset
183 { FRAC_CONST(-0.99009048938751), FRAC_CONST(0.85868018865585) },
4a370c80fe5c update to the 2.0 release of faad, patch by adland
diego
parents: 10989
diff changeset
184 { FRAC_CONST(0.68865793943405), FRAC_CONST(0.55660319328308) },
4a370c80fe5c update to the 2.0 release of faad, patch by adland
diego
parents: 10989
diff changeset
185 { FRAC_CONST(-0.99484401941299), FRAC_CONST(-0.20052559673786) },
4a370c80fe5c update to the 2.0 release of faad, patch by adland
diego
parents: 10989
diff changeset
186 { FRAC_CONST(0.94214510917664), FRAC_CONST(-0.99696427583694) },
4a370c80fe5c update to the 2.0 release of faad, patch by adland
diego
parents: 10989
diff changeset
187 { FRAC_CONST(-0.67414629459381), FRAC_CONST(0.49548220634460) },
4a370c80fe5c update to the 2.0 release of faad, patch by adland
diego
parents: 10989
diff changeset
188 { FRAC_CONST(-0.47339352965355), FRAC_CONST(-0.85904330015182) },
4a370c80fe5c update to the 2.0 release of faad, patch by adland
diego
parents: 10989
diff changeset
189 { FRAC_CONST(0.14323651790619), FRAC_CONST(-0.94145596027374) },
4a370c80fe5c update to the 2.0 release of faad, patch by adland
diego
parents: 10989
diff changeset
190 { FRAC_CONST(-0.29268294572830), FRAC_CONST(0.05759225040674) },
4a370c80fe5c update to the 2.0 release of faad, patch by adland
diego
parents: 10989
diff changeset
191 { FRAC_CONST(0.43793860077858), FRAC_CONST(-0.78904968500137) },
4a370c80fe5c update to the 2.0 release of faad, patch by adland
diego
parents: 10989
diff changeset
192 { FRAC_CONST(-0.36345127224922), FRAC_CONST(0.64874434471130) },
4a370c80fe5c update to the 2.0 release of faad, patch by adland
diego
parents: 10989
diff changeset
193 { FRAC_CONST(-0.08750604838133), FRAC_CONST(0.97686946392059) },
4a370c80fe5c update to the 2.0 release of faad, patch by adland
diego
parents: 10989
diff changeset
194 { FRAC_CONST(-0.96495270729065), FRAC_CONST(-0.53960305452347) },
4a370c80fe5c update to the 2.0 release of faad, patch by adland
diego
parents: 10989
diff changeset
195 { FRAC_CONST(0.55526942014694), FRAC_CONST(0.78891521692276) },
4a370c80fe5c update to the 2.0 release of faad, patch by adland
diego
parents: 10989
diff changeset
196 { FRAC_CONST(0.73538213968277), FRAC_CONST(0.96452075242996) },
4a370c80fe5c update to the 2.0 release of faad, patch by adland
diego
parents: 10989
diff changeset
197 { FRAC_CONST(-0.30889773368835), FRAC_CONST(-0.80664390325546) },
4a370c80fe5c update to the 2.0 release of faad, patch by adland
diego
parents: 10989
diff changeset
198 { FRAC_CONST(0.03574995696545), FRAC_CONST(-0.97325617074966) },
4a370c80fe5c update to the 2.0 release of faad, patch by adland
diego
parents: 10989
diff changeset
199 { FRAC_CONST(0.98720687627792), FRAC_CONST(0.48409134149551) },
4a370c80fe5c update to the 2.0 release of faad, patch by adland
diego
parents: 10989
diff changeset
200 { FRAC_CONST(-0.81689298152924), FRAC_CONST(-0.90827703475952) },
4a370c80fe5c update to the 2.0 release of faad, patch by adland
diego
parents: 10989
diff changeset
201 { FRAC_CONST(0.67866861820221), FRAC_CONST(0.81284505128860) },
4a370c80fe5c update to the 2.0 release of faad, patch by adland
diego
parents: 10989
diff changeset
202 { FRAC_CONST(-0.15808570384979), FRAC_CONST(0.85279554128647) },
4a370c80fe5c update to the 2.0 release of faad, patch by adland
diego
parents: 10989
diff changeset
203 { FRAC_CONST(0.80723392963409), FRAC_CONST(-0.24717418849468) },
4a370c80fe5c update to the 2.0 release of faad, patch by adland
diego
parents: 10989
diff changeset
204 { FRAC_CONST(0.47788757085800), FRAC_CONST(-0.46333149075508) },
4a370c80fe5c update to the 2.0 release of faad, patch by adland
diego
parents: 10989
diff changeset
205 { FRAC_CONST(0.96367555856705), FRAC_CONST(0.38486748933792) },
4a370c80fe5c update to the 2.0 release of faad, patch by adland
diego
parents: 10989
diff changeset
206 { FRAC_CONST(-0.99143874645233), FRAC_CONST(-0.24945276975632) },
4a370c80fe5c update to the 2.0 release of faad, patch by adland
diego
parents: 10989
diff changeset
207 { FRAC_CONST(0.83081877231598), FRAC_CONST(-0.94780850410461) },
4a370c80fe5c update to the 2.0 release of faad, patch by adland
diego
parents: 10989
diff changeset
208 { FRAC_CONST(-0.58753192424774), FRAC_CONST(0.01290772389621) },
4a370c80fe5c update to the 2.0 release of faad, patch by adland
diego
parents: 10989
diff changeset
209 { FRAC_CONST(0.95538109540939), FRAC_CONST(-0.85557049512863) },
4a370c80fe5c update to the 2.0 release of faad, patch by adland
diego
parents: 10989
diff changeset
210 { FRAC_CONST(-0.96490919589996), FRAC_CONST(-0.64020973443985) },
4a370c80fe5c update to the 2.0 release of faad, patch by adland
diego
parents: 10989
diff changeset
211 { FRAC_CONST(-0.97327101230621), FRAC_CONST(0.12378127872944) },
4a370c80fe5c update to the 2.0 release of faad, patch by adland
diego
parents: 10989
diff changeset
212 { FRAC_CONST(0.91400367021561), FRAC_CONST(0.57972472906113) },
4a370c80fe5c update to the 2.0 release of faad, patch by adland
diego
parents: 10989
diff changeset
213 { FRAC_CONST(-0.99925839900970), FRAC_CONST(0.71084845066071) },
4a370c80fe5c update to the 2.0 release of faad, patch by adland
diego
parents: 10989
diff changeset
214 { FRAC_CONST(-0.86875903606415), FRAC_CONST(-0.20291699469090) },
4a370c80fe5c update to the 2.0 release of faad, patch by adland
diego
parents: 10989
diff changeset
215 { FRAC_CONST(-0.26240035891533), FRAC_CONST(-0.68264555931091) },
4a370c80fe5c update to the 2.0 release of faad, patch by adland
diego
parents: 10989
diff changeset
216 { FRAC_CONST(-0.24664412438869), FRAC_CONST(-0.87642270326614) },
4a370c80fe5c update to the 2.0 release of faad, patch by adland
diego
parents: 10989
diff changeset
217 { FRAC_CONST(0.02416275814176), FRAC_CONST(0.27192914485931) },
4a370c80fe5c update to the 2.0 release of faad, patch by adland
diego
parents: 10989
diff changeset
218 { FRAC_CONST(0.82068622112274), FRAC_CONST(-0.85087788105011) },
4a370c80fe5c update to the 2.0 release of faad, patch by adland
diego
parents: 10989
diff changeset
219 { FRAC_CONST(0.88547372817993), FRAC_CONST(-0.89636802673340) },
4a370c80fe5c update to the 2.0 release of faad, patch by adland
diego
parents: 10989
diff changeset
220 { FRAC_CONST(-0.18173077702522), FRAC_CONST(-0.26152145862579) },
4a370c80fe5c update to the 2.0 release of faad, patch by adland
diego
parents: 10989
diff changeset
221 { FRAC_CONST(0.09355476498604), FRAC_CONST(0.54845124483109) },
4a370c80fe5c update to the 2.0 release of faad, patch by adland
diego
parents: 10989
diff changeset
222 { FRAC_CONST(-0.54668414592743), FRAC_CONST(0.95980775356293) },
4a370c80fe5c update to the 2.0 release of faad, patch by adland
diego
parents: 10989
diff changeset
223 { FRAC_CONST(0.37050989270210), FRAC_CONST(-0.59910142421722) },
4a370c80fe5c update to the 2.0 release of faad, patch by adland
diego
parents: 10989
diff changeset
224 { FRAC_CONST(-0.70373594760895), FRAC_CONST(0.91227668523788) },
4a370c80fe5c update to the 2.0 release of faad, patch by adland
diego
parents: 10989
diff changeset
225 { FRAC_CONST(-0.34600785374641), FRAC_CONST(-0.99441426992416) },
4a370c80fe5c update to the 2.0 release of faad, patch by adland
diego
parents: 10989
diff changeset
226 { FRAC_CONST(-0.68774479627609), FRAC_CONST(-0.30238837003708) },
4a370c80fe5c update to the 2.0 release of faad, patch by adland
diego
parents: 10989
diff changeset
227 { FRAC_CONST(-0.26843291521072), FRAC_CONST(0.83115667104721) },
4a370c80fe5c update to the 2.0 release of faad, patch by adland
diego
parents: 10989
diff changeset
228 { FRAC_CONST(0.49072334170341), FRAC_CONST(-0.45359709858894) },
4a370c80fe5c update to the 2.0 release of faad, patch by adland
diego
parents: 10989
diff changeset
229 { FRAC_CONST(0.38975992798805), FRAC_CONST(0.95515358448029) },
4a370c80fe5c update to the 2.0 release of faad, patch by adland
diego
parents: 10989
diff changeset
230 { FRAC_CONST(-0.97757124900818), FRAC_CONST(0.05305894464254) },
4a370c80fe5c update to the 2.0 release of faad, patch by adland
diego
parents: 10989
diff changeset
231 { FRAC_CONST(-0.17325553297997), FRAC_CONST(-0.92770671844482) },
4a370c80fe5c update to the 2.0 release of faad, patch by adland
diego
parents: 10989
diff changeset
232 { FRAC_CONST(0.99948036670685), FRAC_CONST(0.58285546302795) },
4a370c80fe5c update to the 2.0 release of faad, patch by adland
diego
parents: 10989
diff changeset
233 { FRAC_CONST(-0.64946246147156), FRAC_CONST(0.68645507097244) },
4a370c80fe5c update to the 2.0 release of faad, patch by adland
diego
parents: 10989
diff changeset
234 { FRAC_CONST(-0.12016920745373), FRAC_CONST(-0.57147324085236) },
4a370c80fe5c update to the 2.0 release of faad, patch by adland
diego
parents: 10989
diff changeset
235 { FRAC_CONST(-0.58947455883026), FRAC_CONST(-0.34847131371498) },
4a370c80fe5c update to the 2.0 release of faad, patch by adland
diego
parents: 10989
diff changeset
236 { FRAC_CONST(-0.41815140843391), FRAC_CONST(0.16276422142982) },
4a370c80fe5c update to the 2.0 release of faad, patch by adland
diego
parents: 10989
diff changeset
237 { FRAC_CONST(0.99885648488998), FRAC_CONST(0.11136095225811) },
4a370c80fe5c update to the 2.0 release of faad, patch by adland
diego
parents: 10989
diff changeset
238 { FRAC_CONST(-0.56649613380432), FRAC_CONST(-0.90494865179062) },
4a370c80fe5c update to the 2.0 release of faad, patch by adland
diego
parents: 10989
diff changeset
239 { FRAC_CONST(0.94138020277023), FRAC_CONST(0.35281917452812) },
4a370c80fe5c update to the 2.0 release of faad, patch by adland
diego
parents: 10989
diff changeset
240 { FRAC_CONST(-0.75725078582764), FRAC_CONST(0.53650552034378) },
4a370c80fe5c update to the 2.0 release of faad, patch by adland
diego
parents: 10989
diff changeset
241 { FRAC_CONST(0.20541973412037), FRAC_CONST(-0.94435143470764) },
4a370c80fe5c update to the 2.0 release of faad, patch by adland
diego
parents: 10989
diff changeset
242 { FRAC_CONST(0.99980372190475), FRAC_CONST(0.79835915565491) },
4a370c80fe5c update to the 2.0 release of faad, patch by adland
diego
parents: 10989
diff changeset
243 { FRAC_CONST(0.29078277945518), FRAC_CONST(0.35393777489662) },
4a370c80fe5c update to the 2.0 release of faad, patch by adland
diego
parents: 10989
diff changeset
244 { FRAC_CONST(-0.62858772277832), FRAC_CONST(0.38765692710876) },
4a370c80fe5c update to the 2.0 release of faad, patch by adland
diego
parents: 10989
diff changeset
245 { FRAC_CONST(0.43440905213356), FRAC_CONST(-0.98546332120895) },
4a370c80fe5c update to the 2.0 release of faad, patch by adland
diego
parents: 10989
diff changeset
246 { FRAC_CONST(-0.98298585414886), FRAC_CONST(0.21021524071693) },
4a370c80fe5c update to the 2.0 release of faad, patch by adland
diego
parents: 10989
diff changeset
247 { FRAC_CONST(0.19513028860092), FRAC_CONST(-0.94239830970764) },
4a370c80fe5c update to the 2.0 release of faad, patch by adland
diego
parents: 10989
diff changeset
248 { FRAC_CONST(-0.95476663112640), FRAC_CONST(0.98364555835724) },
4a370c80fe5c update to the 2.0 release of faad, patch by adland
diego
parents: 10989
diff changeset
249 { FRAC_CONST(0.93379634618759), FRAC_CONST(-0.70881992578506) },
4a370c80fe5c update to the 2.0 release of faad, patch by adland
diego
parents: 10989
diff changeset
250 { FRAC_CONST(-0.85235410928726), FRAC_CONST(-0.08342348039150) },
4a370c80fe5c update to the 2.0 release of faad, patch by adland
diego
parents: 10989
diff changeset
251 { FRAC_CONST(-0.86425095796585), FRAC_CONST(-0.45795026421547) },
4a370c80fe5c update to the 2.0 release of faad, patch by adland
diego
parents: 10989
diff changeset
252 { FRAC_CONST(0.38879778981209), FRAC_CONST(0.97274428606033) },
4a370c80fe5c update to the 2.0 release of faad, patch by adland
diego
parents: 10989
diff changeset
253 { FRAC_CONST(0.92045122385025), FRAC_CONST(-0.62433654069901) },
4a370c80fe5c update to the 2.0 release of faad, patch by adland
diego
parents: 10989
diff changeset
254 { FRAC_CONST(0.89162534475327), FRAC_CONST(0.54950958490372) },
4a370c80fe5c update to the 2.0 release of faad, patch by adland
diego
parents: 10989
diff changeset
255 { FRAC_CONST(-0.36834338307381), FRAC_CONST(0.96458297967911) },
4a370c80fe5c update to the 2.0 release of faad, patch by adland
diego
parents: 10989
diff changeset
256 { FRAC_CONST(0.93891763687134), FRAC_CONST(-0.89968353509903) },
4a370c80fe5c update to the 2.0 release of faad, patch by adland
diego
parents: 10989
diff changeset
257 { FRAC_CONST(0.99267655611038), FRAC_CONST(-0.03757034242153) },
4a370c80fe5c update to the 2.0 release of faad, patch by adland
diego
parents: 10989
diff changeset
258 { FRAC_CONST(-0.94063472747803), FRAC_CONST(0.41332337260246) },
4a370c80fe5c update to the 2.0 release of faad, patch by adland
diego
parents: 10989
diff changeset
259 { FRAC_CONST(0.99740225076675), FRAC_CONST(-0.16830494999886) },
4a370c80fe5c update to the 2.0 release of faad, patch by adland
diego
parents: 10989
diff changeset
260 { FRAC_CONST(-0.35899412631989), FRAC_CONST(-0.46633225679398) },
4a370c80fe5c update to the 2.0 release of faad, patch by adland
diego
parents: 10989
diff changeset
261 { FRAC_CONST(0.05237237364054), FRAC_CONST(-0.25640362501144) },
4a370c80fe5c update to the 2.0 release of faad, patch by adland
diego
parents: 10989
diff changeset
262 { FRAC_CONST(0.36703583598137), FRAC_CONST(-0.38653266429901) },
4a370c80fe5c update to the 2.0 release of faad, patch by adland
diego
parents: 10989
diff changeset
263 { FRAC_CONST(0.91653180122375), FRAC_CONST(-0.30587628483772) },
4a370c80fe5c update to the 2.0 release of faad, patch by adland
diego
parents: 10989
diff changeset
264 { FRAC_CONST(0.69000804424286), FRAC_CONST(0.90952169895172) },
4a370c80fe5c update to the 2.0 release of faad, patch by adland
diego
parents: 10989
diff changeset
265 { FRAC_CONST(-0.38658750057220), FRAC_CONST(0.99501574039459) },
4a370c80fe5c update to the 2.0 release of faad, patch by adland
diego
parents: 10989
diff changeset
266 { FRAC_CONST(-0.29250815510750), FRAC_CONST(0.37444993853569) },
4a370c80fe5c update to the 2.0 release of faad, patch by adland
diego
parents: 10989
diff changeset
267 { FRAC_CONST(-0.60182201862335), FRAC_CONST(0.86779648065567) },
4a370c80fe5c update to the 2.0 release of faad, patch by adland
diego
parents: 10989
diff changeset
268 { FRAC_CONST(-0.97418588399887), FRAC_CONST(0.96468526124954) },
4a370c80fe5c update to the 2.0 release of faad, patch by adland
diego
parents: 10989
diff changeset
269 { FRAC_CONST(0.88461571931839), FRAC_CONST(0.57508403062820) },
4a370c80fe5c update to the 2.0 release of faad, patch by adland
diego
parents: 10989
diff changeset
270 { FRAC_CONST(0.05198933184147), FRAC_CONST(0.21269661188126) },
4a370c80fe5c update to the 2.0 release of faad, patch by adland
diego
parents: 10989
diff changeset
271 { FRAC_CONST(-0.53499621152878), FRAC_CONST(0.97241556644440) },
4a370c80fe5c update to the 2.0 release of faad, patch by adland
diego
parents: 10989
diff changeset
272 { FRAC_CONST(-0.49429559707642), FRAC_CONST(0.98183864355087) },
4a370c80fe5c update to the 2.0 release of faad, patch by adland
diego
parents: 10989
diff changeset
273 { FRAC_CONST(-0.98935145139694), FRAC_CONST(-0.40249159932137) },
4a370c80fe5c update to the 2.0 release of faad, patch by adland
diego
parents: 10989
diff changeset
274 { FRAC_CONST(-0.98081380128860), FRAC_CONST(-0.72856897115707) },
4a370c80fe5c update to the 2.0 release of faad, patch by adland
diego
parents: 10989
diff changeset
275 { FRAC_CONST(-0.27338150143623), FRAC_CONST(0.99950921535492) },
4a370c80fe5c update to the 2.0 release of faad, patch by adland
diego
parents: 10989
diff changeset
276 { FRAC_CONST(0.06310802698135), FRAC_CONST(-0.54539585113525) },
4a370c80fe5c update to the 2.0 release of faad, patch by adland
diego
parents: 10989
diff changeset
277 { FRAC_CONST(-0.20461677014828), FRAC_CONST(-0.14209978282452) },
4a370c80fe5c update to the 2.0 release of faad, patch by adland
diego
parents: 10989
diff changeset
278 { FRAC_CONST(0.66223841905594), FRAC_CONST(0.72528582811356) },
4a370c80fe5c update to the 2.0 release of faad, patch by adland
diego
parents: 10989
diff changeset
279 { FRAC_CONST(-0.84764343500137), FRAC_CONST(0.02372316829860) },
4a370c80fe5c update to the 2.0 release of faad, patch by adland
diego
parents: 10989
diff changeset
280 { FRAC_CONST(-0.89039862155914), FRAC_CONST(0.88866579532623) },
4a370c80fe5c update to the 2.0 release of faad, patch by adland
diego
parents: 10989
diff changeset
281 { FRAC_CONST(0.95903307199478), FRAC_CONST(0.76744925975800) },
4a370c80fe5c update to the 2.0 release of faad, patch by adland
diego
parents: 10989
diff changeset
282 { FRAC_CONST(0.73504126071930), FRAC_CONST(-0.03747203201056) },
4a370c80fe5c update to the 2.0 release of faad, patch by adland
diego
parents: 10989
diff changeset
283 { FRAC_CONST(-0.31744435429573), FRAC_CONST(-0.36834111809731) },
4a370c80fe5c update to the 2.0 release of faad, patch by adland
diego
parents: 10989
diff changeset
284 { FRAC_CONST(-0.34110826253891), FRAC_CONST(0.40211221575737) },
4a370c80fe5c update to the 2.0 release of faad, patch by adland
diego
parents: 10989
diff changeset
285 { FRAC_CONST(0.47803884744644), FRAC_CONST(-0.39423218369484) },
4a370c80fe5c update to the 2.0 release of faad, patch by adland
diego
parents: 10989
diff changeset
286 { FRAC_CONST(0.98299193382263), FRAC_CONST(0.01989791356027) },
4a370c80fe5c update to the 2.0 release of faad, patch by adland
diego
parents: 10989
diff changeset
287 { FRAC_CONST(-0.30963072180748), FRAC_CONST(-0.18076720833778) },
4a370c80fe5c update to the 2.0 release of faad, patch by adland
diego
parents: 10989
diff changeset
288 { FRAC_CONST(0.99992591142654), FRAC_CONST(-0.26281872391701) },
4a370c80fe5c update to the 2.0 release of faad, patch by adland
diego
parents: 10989
diff changeset
289 { FRAC_CONST(-0.93149733543396), FRAC_CONST(-0.98313164710999) },
4a370c80fe5c update to the 2.0 release of faad, patch by adland
diego
parents: 10989
diff changeset
290 { FRAC_CONST(0.99923473596573), FRAC_CONST(-0.80142992734909) },
4a370c80fe5c update to the 2.0 release of faad, patch by adland
diego
parents: 10989
diff changeset
291 { FRAC_CONST(-0.26024168729782), FRAC_CONST(-0.75999760627747) },
4a370c80fe5c update to the 2.0 release of faad, patch by adland
diego
parents: 10989
diff changeset
292 { FRAC_CONST(-0.35712513327599), FRAC_CONST(0.19298963248730) },
4a370c80fe5c update to the 2.0 release of faad, patch by adland
diego
parents: 10989
diff changeset
293 { FRAC_CONST(-0.99899083375931), FRAC_CONST(0.74645155668259) },
4a370c80fe5c update to the 2.0 release of faad, patch by adland
diego
parents: 10989
diff changeset
294 { FRAC_CONST(0.86557173728943), FRAC_CONST(0.55593866109848) },
4a370c80fe5c update to the 2.0 release of faad, patch by adland
diego
parents: 10989
diff changeset
295 { FRAC_CONST(0.33408042788506), FRAC_CONST(0.86185956001282) },
4a370c80fe5c update to the 2.0 release of faad, patch by adland
diego
parents: 10989
diff changeset
296 { FRAC_CONST(0.99010735750198), FRAC_CONST(0.04602397605777) },
4a370c80fe5c update to the 2.0 release of faad, patch by adland
diego
parents: 10989
diff changeset
297 { FRAC_CONST(-0.66694271564484), FRAC_CONST(-0.91643613576889) },
4a370c80fe5c update to the 2.0 release of faad, patch by adland
diego
parents: 10989
diff changeset
298 { FRAC_CONST(0.64016789197922), FRAC_CONST(0.15649530291557) },
4a370c80fe5c update to the 2.0 release of faad, patch by adland
diego
parents: 10989
diff changeset
299 { FRAC_CONST(0.99570536613464), FRAC_CONST(0.45844584703445) },
4a370c80fe5c update to the 2.0 release of faad, patch by adland
diego
parents: 10989
diff changeset
300 { FRAC_CONST(-0.63431465625763), FRAC_CONST(0.21079117059708) },
4a370c80fe5c update to the 2.0 release of faad, patch by adland
diego
parents: 10989
diff changeset
301 { FRAC_CONST(-0.07706847041845), FRAC_CONST(-0.89581435918808) },
4a370c80fe5c update to the 2.0 release of faad, patch by adland
diego
parents: 10989
diff changeset
302 { FRAC_CONST(0.98590087890625), FRAC_CONST(0.88241720199585) },
4a370c80fe5c update to the 2.0 release of faad, patch by adland
diego
parents: 10989
diff changeset
303 { FRAC_CONST(0.80099332332611), FRAC_CONST(-0.36851897835732) },
4a370c80fe5c update to the 2.0 release of faad, patch by adland
diego
parents: 10989
diff changeset
304 { FRAC_CONST(0.78368133306503), FRAC_CONST(0.45506998896599) },
4a370c80fe5c update to the 2.0 release of faad, patch by adland
diego
parents: 10989
diff changeset
305 { FRAC_CONST(0.08707806468010), FRAC_CONST(0.80938994884491) },
4a370c80fe5c update to the 2.0 release of faad, patch by adland
diego
parents: 10989
diff changeset
306 { FRAC_CONST(-0.86811882257462), FRAC_CONST(0.39347308874130) },
4a370c80fe5c update to the 2.0 release of faad, patch by adland
diego
parents: 10989
diff changeset
307 { FRAC_CONST(-0.39466530084610), FRAC_CONST(-0.66809433698654) },
4a370c80fe5c update to the 2.0 release of faad, patch by adland
diego
parents: 10989
diff changeset
308 { FRAC_CONST(0.97875326871872), FRAC_CONST(-0.72467839717865) },
4a370c80fe5c update to the 2.0 release of faad, patch by adland
diego
parents: 10989
diff changeset
309 { FRAC_CONST(-0.95038563013077), FRAC_CONST(0.89563220739365) },
4a370c80fe5c update to the 2.0 release of faad, patch by adland
diego
parents: 10989
diff changeset
310 { FRAC_CONST(0.17005239427090), FRAC_CONST(0.54683053493500) },
4a370c80fe5c update to the 2.0 release of faad, patch by adland
diego
parents: 10989
diff changeset
311 { FRAC_CONST(-0.76910793781281), FRAC_CONST(-0.96226614713669) },
4a370c80fe5c update to the 2.0 release of faad, patch by adland
diego
parents: 10989
diff changeset
312 { FRAC_CONST(0.99743282794952), FRAC_CONST(0.42697158455849) },
4a370c80fe5c update to the 2.0 release of faad, patch by adland
diego
parents: 10989
diff changeset
313 { FRAC_CONST(0.95437383651733), FRAC_CONST(0.97002321481705) },
4a370c80fe5c update to the 2.0 release of faad, patch by adland
diego
parents: 10989
diff changeset
314 { FRAC_CONST(0.99578905105591), FRAC_CONST(-0.54106825590134) },
4a370c80fe5c update to the 2.0 release of faad, patch by adland
diego
parents: 10989
diff changeset
315 { FRAC_CONST(0.28058260679245), FRAC_CONST(-0.85361421108246) },
4a370c80fe5c update to the 2.0 release of faad, patch by adland
diego
parents: 10989
diff changeset
316 { FRAC_CONST(0.85256522893906), FRAC_CONST(-0.64567607641220) },
4a370c80fe5c update to the 2.0 release of faad, patch by adland
diego
parents: 10989
diff changeset
317 { FRAC_CONST(-0.50608539581299), FRAC_CONST(-0.65846014022827) },
4a370c80fe5c update to the 2.0 release of faad, patch by adland
diego
parents: 10989
diff changeset
318 { FRAC_CONST(-0.97210735082626), FRAC_CONST(-0.23095212876797) },
4a370c80fe5c update to the 2.0 release of faad, patch by adland
diego
parents: 10989
diff changeset
319 { FRAC_CONST(0.95424050092697), FRAC_CONST(-0.99240148067474) },
4a370c80fe5c update to the 2.0 release of faad, patch by adland
diego
parents: 10989
diff changeset
320 { FRAC_CONST(-0.96926569938660), FRAC_CONST(0.73775655031204) },
4a370c80fe5c update to the 2.0 release of faad, patch by adland
diego
parents: 10989
diff changeset
321 { FRAC_CONST(0.30872163176537), FRAC_CONST(0.41514959931374) },
4a370c80fe5c update to the 2.0 release of faad, patch by adland
diego
parents: 10989
diff changeset
322 { FRAC_CONST(-0.24523839354515), FRAC_CONST(0.63206630945206) },
4a370c80fe5c update to the 2.0 release of faad, patch by adland
diego
parents: 10989
diff changeset
323 { FRAC_CONST(-0.33813264966011), FRAC_CONST(-0.38661777973175) },
4a370c80fe5c update to the 2.0 release of faad, patch by adland
diego
parents: 10989
diff changeset
324 { FRAC_CONST(-0.05826828256249), FRAC_CONST(-0.06940773874521) },
4a370c80fe5c update to the 2.0 release of faad, patch by adland
diego
parents: 10989
diff changeset
325 { FRAC_CONST(-0.22898460924625), FRAC_CONST(0.97054851055145) },
4a370c80fe5c update to the 2.0 release of faad, patch by adland
diego
parents: 10989
diff changeset
326 { FRAC_CONST(-0.18509915471077), FRAC_CONST(0.47565764188766) },
4a370c80fe5c update to the 2.0 release of faad, patch by adland
diego
parents: 10989
diff changeset
327 { FRAC_CONST(-0.10488238185644), FRAC_CONST(-0.87769949436188) },
4a370c80fe5c update to the 2.0 release of faad, patch by adland
diego
parents: 10989
diff changeset
328 { FRAC_CONST(-0.71886587142944), FRAC_CONST(0.78030979633331) },
4a370c80fe5c update to the 2.0 release of faad, patch by adland
diego
parents: 10989
diff changeset
329 { FRAC_CONST(0.99793875217438), FRAC_CONST(0.90041309595108) },
4a370c80fe5c update to the 2.0 release of faad, patch by adland
diego
parents: 10989
diff changeset
330 { FRAC_CONST(0.57563304901123), FRAC_CONST(-0.91034334897995) },
4a370c80fe5c update to the 2.0 release of faad, patch by adland
diego
parents: 10989
diff changeset
331 { FRAC_CONST(0.28909647464752), FRAC_CONST(0.96307784318924) },
4a370c80fe5c update to the 2.0 release of faad, patch by adland
diego
parents: 10989
diff changeset
332 { FRAC_CONST(0.42188999056816), FRAC_CONST(0.48148649930954) },
4a370c80fe5c update to the 2.0 release of faad, patch by adland
diego
parents: 10989
diff changeset
333 { FRAC_CONST(0.93335050344467), FRAC_CONST(-0.43537023663521) },
4a370c80fe5c update to the 2.0 release of faad, patch by adland
diego
parents: 10989
diff changeset
334 { FRAC_CONST(-0.97087377309799), FRAC_CONST(0.86636447906494) },
4a370c80fe5c update to the 2.0 release of faad, patch by adland
diego
parents: 10989
diff changeset
335 { FRAC_CONST(0.36722871661186), FRAC_CONST(0.65291655063629) },
4a370c80fe5c update to the 2.0 release of faad, patch by adland
diego
parents: 10989
diff changeset
336 { FRAC_CONST(-0.81093025207520), FRAC_CONST(0.08778370171785) },
4a370c80fe5c update to the 2.0 release of faad, patch by adland
diego
parents: 10989
diff changeset
337 { FRAC_CONST(-0.26240602135658), FRAC_CONST(-0.92774093151093) },
4a370c80fe5c update to the 2.0 release of faad, patch by adland
diego
parents: 10989
diff changeset
338 { FRAC_CONST(0.83996498584747), FRAC_CONST(0.55839848518372) },
4a370c80fe5c update to the 2.0 release of faad, patch by adland
diego
parents: 10989
diff changeset
339 { FRAC_CONST(-0.99909615516663), FRAC_CONST(-0.96024608612061) },
4a370c80fe5c update to the 2.0 release of faad, patch by adland
diego
parents: 10989
diff changeset
340 { FRAC_CONST(0.74649465084076), FRAC_CONST(0.12144893407822) },
4a370c80fe5c update to the 2.0 release of faad, patch by adland
diego
parents: 10989
diff changeset
341 { FRAC_CONST(-0.74774593114853), FRAC_CONST(-0.26898062229156) },
4a370c80fe5c update to the 2.0 release of faad, patch by adland
diego
parents: 10989
diff changeset
342 { FRAC_CONST(0.95781666040421), FRAC_CONST(-0.79047924280167) },
4a370c80fe5c update to the 2.0 release of faad, patch by adland
diego
parents: 10989
diff changeset
343 { FRAC_CONST(0.95472306013107), FRAC_CONST(-0.08588775992393) },
4a370c80fe5c update to the 2.0 release of faad, patch by adland
diego
parents: 10989
diff changeset
344 { FRAC_CONST(0.48708331584930), FRAC_CONST(0.99999040365219) },
4a370c80fe5c update to the 2.0 release of faad, patch by adland
diego
parents: 10989
diff changeset
345 { FRAC_CONST(0.46332037448883), FRAC_CONST(0.10964126139879) },
4a370c80fe5c update to the 2.0 release of faad, patch by adland
diego
parents: 10989
diff changeset
346 { FRAC_CONST(-0.76497006416321), FRAC_CONST(0.89210927486420) },
4a370c80fe5c update to the 2.0 release of faad, patch by adland
diego
parents: 10989
diff changeset
347 { FRAC_CONST(0.57397389411926), FRAC_CONST(0.35289704799652) },
4a370c80fe5c update to the 2.0 release of faad, patch by adland
diego
parents: 10989
diff changeset
348 { FRAC_CONST(0.75374317169189), FRAC_CONST(0.96705216169357) },
4a370c80fe5c update to the 2.0 release of faad, patch by adland
diego
parents: 10989
diff changeset
349 { FRAC_CONST(-0.59174400568008), FRAC_CONST(-0.89405369758606) },
4a370c80fe5c update to the 2.0 release of faad, patch by adland
diego
parents: 10989
diff changeset
350 { FRAC_CONST(0.75087904930115), FRAC_CONST(-0.29612672328949) },
4a370c80fe5c update to the 2.0 release of faad, patch by adland
diego
parents: 10989
diff changeset
351 { FRAC_CONST(-0.98607856035233), FRAC_CONST(0.25034910440445) },
4a370c80fe5c update to the 2.0 release of faad, patch by adland
diego
parents: 10989
diff changeset
352 { FRAC_CONST(-0.40761056542397), FRAC_CONST(-0.90045571327209) },
4a370c80fe5c update to the 2.0 release of faad, patch by adland
diego
parents: 10989
diff changeset
353 { FRAC_CONST(0.66929268836975), FRAC_CONST(0.98629492521286) },
4a370c80fe5c update to the 2.0 release of faad, patch by adland
diego
parents: 10989
diff changeset
354 { FRAC_CONST(-0.97463697195053), FRAC_CONST(-0.00190223299433) },
4a370c80fe5c update to the 2.0 release of faad, patch by adland
diego
parents: 10989
diff changeset
355 { FRAC_CONST(0.90145510435104), FRAC_CONST(0.99781388044357) },
4a370c80fe5c update to the 2.0 release of faad, patch by adland
diego
parents: 10989
diff changeset
356 { FRAC_CONST(-0.87259286642075), FRAC_CONST(0.99233585596085) },
4a370c80fe5c update to the 2.0 release of faad, patch by adland
diego
parents: 10989
diff changeset
357 { FRAC_CONST(-0.91529458761215), FRAC_CONST(-0.15698707103729) },
4a370c80fe5c update to the 2.0 release of faad, patch by adland
diego
parents: 10989
diff changeset
358 { FRAC_CONST(-0.03305738791823), FRAC_CONST(-0.37205263972282) },
4a370c80fe5c update to the 2.0 release of faad, patch by adland
diego
parents: 10989
diff changeset
359 { FRAC_CONST(0.07223051041365), FRAC_CONST(-0.88805001974106) },
4a370c80fe5c update to the 2.0 release of faad, patch by adland
diego
parents: 10989
diff changeset
360 { FRAC_CONST(0.99498009681702), FRAC_CONST(0.97094357013702) },
4a370c80fe5c update to the 2.0 release of faad, patch by adland
diego
parents: 10989
diff changeset
361 { FRAC_CONST(-0.74904936552048), FRAC_CONST(0.99985486268997) },
4a370c80fe5c update to the 2.0 release of faad, patch by adland
diego
parents: 10989
diff changeset
362 { FRAC_CONST(0.04585228487849), FRAC_CONST(0.99812334775925) },
4a370c80fe5c update to the 2.0 release of faad, patch by adland
diego
parents: 10989
diff changeset
363 { FRAC_CONST(-0.89054954051971), FRAC_CONST(-0.31791913509369) },
4a370c80fe5c update to the 2.0 release of faad, patch by adland
diego
parents: 10989
diff changeset
364 { FRAC_CONST(-0.83782142400742), FRAC_CONST(0.97637635469437) },
4a370c80fe5c update to the 2.0 release of faad, patch by adland
diego
parents: 10989
diff changeset
365 { FRAC_CONST(0.33454805612564), FRAC_CONST(-0.86231517791748) },
4a370c80fe5c update to the 2.0 release of faad, patch by adland
diego
parents: 10989
diff changeset
366 { FRAC_CONST(-0.99707579612732), FRAC_CONST(0.93237990140915) },
4a370c80fe5c update to the 2.0 release of faad, patch by adland
diego
parents: 10989
diff changeset
367 { FRAC_CONST(-0.22827528417110), FRAC_CONST(0.18874759972095) },
4a370c80fe5c update to the 2.0 release of faad, patch by adland
diego
parents: 10989
diff changeset
368 { FRAC_CONST(0.67248046398163), FRAC_CONST(-0.03646211326122) },
4a370c80fe5c update to the 2.0 release of faad, patch by adland
diego
parents: 10989
diff changeset
369 { FRAC_CONST(-0.05146538093686), FRAC_CONST(-0.92599701881409) },
4a370c80fe5c update to the 2.0 release of faad, patch by adland
diego
parents: 10989
diff changeset
370 { FRAC_CONST(0.99947297573090), FRAC_CONST(0.93625229597092) },
4a370c80fe5c update to the 2.0 release of faad, patch by adland
diego
parents: 10989
diff changeset
371 { FRAC_CONST(0.66951125860214), FRAC_CONST(0.98905825614929) },
4a370c80fe5c update to the 2.0 release of faad, patch by adland
diego
parents: 10989
diff changeset
372 { FRAC_CONST(-0.99602955579758), FRAC_CONST(-0.44654715061188) },
4a370c80fe5c update to the 2.0 release of faad, patch by adland
diego
parents: 10989
diff changeset
373 { FRAC_CONST(0.82104903459549), FRAC_CONST(0.99540740251541) },
4a370c80fe5c update to the 2.0 release of faad, patch by adland
diego
parents: 10989
diff changeset
374 { FRAC_CONST(0.99186509847641), FRAC_CONST(0.72022998332977) },
4a370c80fe5c update to the 2.0 release of faad, patch by adland
diego
parents: 10989
diff changeset
375 { FRAC_CONST(-0.65284591913223), FRAC_CONST(0.52186721563339) },
4a370c80fe5c update to the 2.0 release of faad, patch by adland
diego
parents: 10989
diff changeset
376 { FRAC_CONST(0.93885445594788), FRAC_CONST(-0.74895310401917) },
4a370c80fe5c update to the 2.0 release of faad, patch by adland
diego
parents: 10989
diff changeset
377 { FRAC_CONST(0.96735250949860), FRAC_CONST(0.90891814231873) },
4a370c80fe5c update to the 2.0 release of faad, patch by adland
diego
parents: 10989
diff changeset
378 { FRAC_CONST(-0.22225968539715), FRAC_CONST(0.57124030590057) },
4a370c80fe5c update to the 2.0 release of faad, patch by adland
diego
parents: 10989
diff changeset
379 { FRAC_CONST(-0.44132784008980), FRAC_CONST(-0.92688840627670) },
4a370c80fe5c update to the 2.0 release of faad, patch by adland
diego
parents: 10989
diff changeset
380 { FRAC_CONST(-0.85694974660873), FRAC_CONST(0.88844531774521) },
4a370c80fe5c update to the 2.0 release of faad, patch by adland
diego
parents: 10989
diff changeset
381 { FRAC_CONST(0.91783040761948), FRAC_CONST(-0.46356892585754) },
4a370c80fe5c update to the 2.0 release of faad, patch by adland
diego
parents: 10989
diff changeset
382 { FRAC_CONST(0.72556972503662), FRAC_CONST(-0.99899554252625) },
4a370c80fe5c update to the 2.0 release of faad, patch by adland
diego
parents: 10989
diff changeset
383 { FRAC_CONST(-0.99711579084396), FRAC_CONST(0.58211559057236) },
4a370c80fe5c update to the 2.0 release of faad, patch by adland
diego
parents: 10989
diff changeset
384 { FRAC_CONST(0.77638977766037), FRAC_CONST(0.94321835041046) },
4a370c80fe5c update to the 2.0 release of faad, patch by adland
diego
parents: 10989
diff changeset
385 { FRAC_CONST(0.07717324048281), FRAC_CONST(0.58638399839401) },
4a370c80fe5c update to the 2.0 release of faad, patch by adland
diego
parents: 10989
diff changeset
386 { FRAC_CONST(-0.56049829721451), FRAC_CONST(0.82522302865982) },
4a370c80fe5c update to the 2.0 release of faad, patch by adland
diego
parents: 10989
diff changeset
387 { FRAC_CONST(0.98398894071579), FRAC_CONST(0.39467439055443) },
4a370c80fe5c update to the 2.0 release of faad, patch by adland
diego
parents: 10989
diff changeset
388 { FRAC_CONST(0.47546947002411), FRAC_CONST(0.68613046407700) },
4a370c80fe5c update to the 2.0 release of faad, patch by adland
diego
parents: 10989
diff changeset
389 { FRAC_CONST(0.65675091743469), FRAC_CONST(0.18331636488438) },
4a370c80fe5c update to the 2.0 release of faad, patch by adland
diego
parents: 10989
diff changeset
390 { FRAC_CONST(0.03273375332355), FRAC_CONST(-0.74933111667633) },
4a370c80fe5c update to the 2.0 release of faad, patch by adland
diego
parents: 10989
diff changeset
391 { FRAC_CONST(-0.38684144616127), FRAC_CONST(0.51337349414825) },
4a370c80fe5c update to the 2.0 release of faad, patch by adland
diego
parents: 10989
diff changeset
392 { FRAC_CONST(-0.97346270084381), FRAC_CONST(-0.96549361944199) },
4a370c80fe5c update to the 2.0 release of faad, patch by adland
diego
parents: 10989
diff changeset
393 { FRAC_CONST(-0.53282153606415), FRAC_CONST(-0.91423267126083) },
4a370c80fe5c update to the 2.0 release of faad, patch by adland
diego
parents: 10989
diff changeset
394 { FRAC_CONST(0.99817311763763), FRAC_CONST(0.61133575439453) },
4a370c80fe5c update to the 2.0 release of faad, patch by adland
diego
parents: 10989
diff changeset
395 { FRAC_CONST(-0.50254499912262), FRAC_CONST(-0.88829338550568) },
4a370c80fe5c update to the 2.0 release of faad, patch by adland
diego
parents: 10989
diff changeset
396 { FRAC_CONST(0.01995873264968), FRAC_CONST(0.85223513841629) },
4a370c80fe5c update to the 2.0 release of faad, patch by adland
diego
parents: 10989
diff changeset
397 { FRAC_CONST(0.99930381774902), FRAC_CONST(0.94578897953033) },
4a370c80fe5c update to the 2.0 release of faad, patch by adland
diego
parents: 10989
diff changeset
398 { FRAC_CONST(0.82907766103745), FRAC_CONST(-0.06323442608118) },
4a370c80fe5c update to the 2.0 release of faad, patch by adland
diego
parents: 10989
diff changeset
399 { FRAC_CONST(-0.58660709857941), FRAC_CONST(0.96840775012970) },
4a370c80fe5c update to the 2.0 release of faad, patch by adland
diego
parents: 10989
diff changeset
400 { FRAC_CONST(-0.17573736608028), FRAC_CONST(-0.48166921734810) },
4a370c80fe5c update to the 2.0 release of faad, patch by adland
diego
parents: 10989
diff changeset
401 { FRAC_CONST(0.83434289693832), FRAC_CONST(-0.13023450970650) },
4a370c80fe5c update to the 2.0 release of faad, patch by adland
diego
parents: 10989
diff changeset
402 { FRAC_CONST(0.05946491286159), FRAC_CONST(0.20511047542095) },
4a370c80fe5c update to the 2.0 release of faad, patch by adland
diego
parents: 10989
diff changeset
403 { FRAC_CONST(0.81505483388901), FRAC_CONST(-0.94685947895050) },
4a370c80fe5c update to the 2.0 release of faad, patch by adland
diego
parents: 10989
diff changeset
404 { FRAC_CONST(-0.44976380467415), FRAC_CONST(0.40894573926926) },
4a370c80fe5c update to the 2.0 release of faad, patch by adland
diego
parents: 10989
diff changeset
405 { FRAC_CONST(-0.89746475219727), FRAC_CONST(0.99846577644348) },
4a370c80fe5c update to the 2.0 release of faad, patch by adland
diego
parents: 10989
diff changeset
406 { FRAC_CONST(0.39677256345749), FRAC_CONST(-0.74854665994644) },
4a370c80fe5c update to the 2.0 release of faad, patch by adland
diego
parents: 10989
diff changeset
407 { FRAC_CONST(-0.07588948309422), FRAC_CONST(0.74096214771271) },
4a370c80fe5c update to the 2.0 release of faad, patch by adland
diego
parents: 10989
diff changeset
408 { FRAC_CONST(0.76343196630478), FRAC_CONST(0.41746628284454) },
4a370c80fe5c update to the 2.0 release of faad, patch by adland
diego
parents: 10989
diff changeset
409 { FRAC_CONST(-0.74490106105804), FRAC_CONST(0.94725912809372) },
4a370c80fe5c update to the 2.0 release of faad, patch by adland
diego
parents: 10989
diff changeset
410 { FRAC_CONST(0.64880120754242), FRAC_CONST(0.41336661577225) },
4a370c80fe5c update to the 2.0 release of faad, patch by adland
diego
parents: 10989
diff changeset
411 { FRAC_CONST(0.62319535017014), FRAC_CONST(-0.93098312616348) },
4a370c80fe5c update to the 2.0 release of faad, patch by adland
diego
parents: 10989
diff changeset
412 { FRAC_CONST(0.42215818166733), FRAC_CONST(-0.07712787389755) },
4a370c80fe5c update to the 2.0 release of faad, patch by adland
diego
parents: 10989
diff changeset
413 { FRAC_CONST(0.02704554051161), FRAC_CONST(-0.05417517945170) },
4a370c80fe5c update to the 2.0 release of faad, patch by adland
diego
parents: 10989
diff changeset
414 { FRAC_CONST(0.80001771450043), FRAC_CONST(0.91542196273804) },
4a370c80fe5c update to the 2.0 release of faad, patch by adland
diego
parents: 10989
diff changeset
415 { FRAC_CONST(-0.79351830482483), FRAC_CONST(-0.36208897829056) },
4a370c80fe5c update to the 2.0 release of faad, patch by adland
diego
parents: 10989
diff changeset
416 { FRAC_CONST(0.63872361183167), FRAC_CONST(0.08128252625465) },
4a370c80fe5c update to the 2.0 release of faad, patch by adland
diego
parents: 10989
diff changeset
417 { FRAC_CONST(0.52890521287918), FRAC_CONST(0.60048872232437) },
4a370c80fe5c update to the 2.0 release of faad, patch by adland
diego
parents: 10989
diff changeset
418 { FRAC_CONST(0.74238550662994), FRAC_CONST(0.04491915181279) },
4a370c80fe5c update to the 2.0 release of faad, patch by adland
diego
parents: 10989
diff changeset
419 { FRAC_CONST(0.99096131324768), FRAC_CONST(-0.19451183080673) },
4a370c80fe5c update to the 2.0 release of faad, patch by adland
diego
parents: 10989
diff changeset
420 { FRAC_CONST(-0.80412328243256), FRAC_CONST(-0.88513815402985) },
4a370c80fe5c update to the 2.0 release of faad, patch by adland
diego
parents: 10989
diff changeset
421 { FRAC_CONST(-0.64612615108490), FRAC_CONST(0.72198677062988) },
4a370c80fe5c update to the 2.0 release of faad, patch by adland
diego
parents: 10989
diff changeset
422 { FRAC_CONST(0.11657770723104), FRAC_CONST(-0.83662831783295) },
4a370c80fe5c update to the 2.0 release of faad, patch by adland
diego
parents: 10989
diff changeset
423 { FRAC_CONST(-0.95053184032440), FRAC_CONST(-0.96939903497696) },
4a370c80fe5c update to the 2.0 release of faad, patch by adland
diego
parents: 10989
diff changeset
424 { FRAC_CONST(-0.62228870391846), FRAC_CONST(0.82767260074615) },
4a370c80fe5c update to the 2.0 release of faad, patch by adland
diego
parents: 10989
diff changeset
425 { FRAC_CONST(0.03004475869238), FRAC_CONST(-0.99738895893097) },
4a370c80fe5c update to the 2.0 release of faad, patch by adland
diego
parents: 10989
diff changeset
426 { FRAC_CONST(-0.97987216711044), FRAC_CONST(0.36526128649712) },
4a370c80fe5c update to the 2.0 release of faad, patch by adland
diego
parents: 10989
diff changeset
427 { FRAC_CONST(-0.99986982345581), FRAC_CONST(-0.36021611094475) },
4a370c80fe5c update to the 2.0 release of faad, patch by adland
diego
parents: 10989
diff changeset
428 { FRAC_CONST(0.89110648632050), FRAC_CONST(-0.97894251346588) },
4a370c80fe5c update to the 2.0 release of faad, patch by adland
diego
parents: 10989
diff changeset
429 { FRAC_CONST(0.10407960414886), FRAC_CONST(0.77357792854309) },
4a370c80fe5c update to the 2.0 release of faad, patch by adland
diego
parents: 10989
diff changeset
430 { FRAC_CONST(0.95964735746384), FRAC_CONST(-0.35435819625854) },
4a370c80fe5c update to the 2.0 release of faad, patch by adland
diego
parents: 10989
diff changeset
431 { FRAC_CONST(0.50843232870102), FRAC_CONST(0.96107691526413) },
4a370c80fe5c update to the 2.0 release of faad, patch by adland
diego
parents: 10989
diff changeset
432 { FRAC_CONST(0.17006334662437), FRAC_CONST(-0.76854026317596) },
4a370c80fe5c update to the 2.0 release of faad, patch by adland
diego
parents: 10989
diff changeset
433 { FRAC_CONST(0.25872674584389), FRAC_CONST(0.99893301725388) },
4a370c80fe5c update to the 2.0 release of faad, patch by adland
diego
parents: 10989
diff changeset
434 { FRAC_CONST(-0.01115998718888), FRAC_CONST(0.98496019840240) },
4a370c80fe5c update to the 2.0 release of faad, patch by adland
diego
parents: 10989
diff changeset
435 { FRAC_CONST(-0.79598701000214), FRAC_CONST(0.97138410806656) },
4a370c80fe5c update to the 2.0 release of faad, patch by adland
diego
parents: 10989
diff changeset
436 { FRAC_CONST(-0.99264711141586), FRAC_CONST(-0.99542820453644) },
4a370c80fe5c update to the 2.0 release of faad, patch by adland
diego
parents: 10989
diff changeset
437 { FRAC_CONST(-0.99829661846161), FRAC_CONST(0.01877138763666) },
4a370c80fe5c update to the 2.0 release of faad, patch by adland
diego
parents: 10989
diff changeset
438 { FRAC_CONST(-0.70801013708115), FRAC_CONST(0.33680686354637) },
4a370c80fe5c update to the 2.0 release of faad, patch by adland
diego
parents: 10989
diff changeset
439 { FRAC_CONST(-0.70467054843903), FRAC_CONST(0.93272775411606) },
4a370c80fe5c update to the 2.0 release of faad, patch by adland
diego
parents: 10989
diff changeset
440 { FRAC_CONST(0.99846023321152), FRAC_CONST(-0.98725748062134) },
4a370c80fe5c update to the 2.0 release of faad, patch by adland
diego
parents: 10989
diff changeset
441 { FRAC_CONST(-0.63364970684052), FRAC_CONST(-0.16473594307899) },
4a370c80fe5c update to the 2.0 release of faad, patch by adland
diego
parents: 10989
diff changeset
442 { FRAC_CONST(-0.16258217394352), FRAC_CONST(-0.95939123630524) },
4a370c80fe5c update to the 2.0 release of faad, patch by adland
diego
parents: 10989
diff changeset
443 { FRAC_CONST(-0.43645593523979), FRAC_CONST(-0.94805032014847) },
4a370c80fe5c update to the 2.0 release of faad, patch by adland
diego
parents: 10989
diff changeset
444 { FRAC_CONST(-0.99848473072052), FRAC_CONST(0.96245169639587) },
4a370c80fe5c update to the 2.0 release of faad, patch by adland
diego
parents: 10989
diff changeset
445 { FRAC_CONST(-0.16796459257603), FRAC_CONST(-0.98987513780594) },
4a370c80fe5c update to the 2.0 release of faad, patch by adland
diego
parents: 10989
diff changeset
446 { FRAC_CONST(-0.87979227304459), FRAC_CONST(-0.71725726127625) },
4a370c80fe5c update to the 2.0 release of faad, patch by adland
diego
parents: 10989
diff changeset
447 { FRAC_CONST(0.44183099269867), FRAC_CONST(-0.93568974733353) },
4a370c80fe5c update to the 2.0 release of faad, patch by adland
diego
parents: 10989
diff changeset
448 { FRAC_CONST(0.93310177326202), FRAC_CONST(-0.99913311004639) },
4a370c80fe5c update to the 2.0 release of faad, patch by adland
diego
parents: 10989
diff changeset
449 { FRAC_CONST(-0.93941932916641), FRAC_CONST(-0.56409376859665) },
4a370c80fe5c update to the 2.0 release of faad, patch by adland
diego
parents: 10989
diff changeset
450 { FRAC_CONST(-0.88590002059937), FRAC_CONST(0.47624599933624) },
4a370c80fe5c update to the 2.0 release of faad, patch by adland
diego
parents: 10989
diff changeset
451 { FRAC_CONST(0.99971461296082), FRAC_CONST(-0.83889955282211) },
4a370c80fe5c update to the 2.0 release of faad, patch by adland
diego
parents: 10989
diff changeset
452 { FRAC_CONST(-0.75376385450363), FRAC_CONST(0.00814643409103) },
4a370c80fe5c update to the 2.0 release of faad, patch by adland
diego
parents: 10989
diff changeset
453 { FRAC_CONST(0.93887686729431), FRAC_CONST(-0.11284527927637) },
4a370c80fe5c update to the 2.0 release of faad, patch by adland
diego
parents: 10989
diff changeset
454 { FRAC_CONST(0.85126435756683), FRAC_CONST(0.52349251508713) },
4a370c80fe5c update to the 2.0 release of faad, patch by adland
diego
parents: 10989
diff changeset
455 { FRAC_CONST(0.39701420068741), FRAC_CONST(0.81779634952545) },
4a370c80fe5c update to the 2.0 release of faad, patch by adland
diego
parents: 10989
diff changeset
456 { FRAC_CONST(-0.37024465203285), FRAC_CONST(-0.87071657180786) },
4a370c80fe5c update to the 2.0 release of faad, patch by adland
diego
parents: 10989
diff changeset
457 { FRAC_CONST(-0.36024826765060), FRAC_CONST(0.34655734896660) },
4a370c80fe5c update to the 2.0 release of faad, patch by adland
diego
parents: 10989
diff changeset
458 { FRAC_CONST(-0.93388813734055), FRAC_CONST(-0.84476542472839) },
4a370c80fe5c update to the 2.0 release of faad, patch by adland
diego
parents: 10989
diff changeset
459 { FRAC_CONST(-0.65298801660538), FRAC_CONST(-0.18439576029778) },
4a370c80fe5c update to the 2.0 release of faad, patch by adland
diego
parents: 10989
diff changeset
460 { FRAC_CONST(0.11960318684578), FRAC_CONST(0.99899345636368) },
4a370c80fe5c update to the 2.0 release of faad, patch by adland
diego
parents: 10989
diff changeset
461 { FRAC_CONST(0.94292563199997), FRAC_CONST(0.83163905143738) },
4a370c80fe5c update to the 2.0 release of faad, patch by adland
diego
parents: 10989
diff changeset
462 { FRAC_CONST(0.75081145763397), FRAC_CONST(-0.35533222556114) },
4a370c80fe5c update to the 2.0 release of faad, patch by adland
diego
parents: 10989
diff changeset
463 { FRAC_CONST(0.56721979379654), FRAC_CONST(-0.24076835811138) },
4a370c80fe5c update to the 2.0 release of faad, patch by adland
diego
parents: 10989
diff changeset
464 { FRAC_CONST(0.46857765316963), FRAC_CONST(-0.30140233039856) },
4a370c80fe5c update to the 2.0 release of faad, patch by adland
diego
parents: 10989
diff changeset
465 { FRAC_CONST(0.97312313318253), FRAC_CONST(-0.99548190832138) },
4a370c80fe5c update to the 2.0 release of faad, patch by adland
diego
parents: 10989
diff changeset
466 { FRAC_CONST(-0.38299977779388), FRAC_CONST(0.98516911268234) },
4a370c80fe5c update to the 2.0 release of faad, patch by adland
diego
parents: 10989
diff changeset
467 { FRAC_CONST(0.41025799512863), FRAC_CONST(0.02116736955941) },
4a370c80fe5c update to the 2.0 release of faad, patch by adland
diego
parents: 10989
diff changeset
468 { FRAC_CONST(0.09638062119484), FRAC_CONST(0.04411984235048) },
4a370c80fe5c update to the 2.0 release of faad, patch by adland
diego
parents: 10989
diff changeset
469 { FRAC_CONST(-0.85283249616623), FRAC_CONST(0.91475564241409) },
4a370c80fe5c update to the 2.0 release of faad, patch by adland
diego
parents: 10989
diff changeset
470 { FRAC_CONST(0.88866806030273), FRAC_CONST(-0.99735265970230) },
4a370c80fe5c update to the 2.0 release of faad, patch by adland
diego
parents: 10989
diff changeset
471 { FRAC_CONST(-0.48202428221703), FRAC_CONST(-0.96805608272552) },
4a370c80fe5c update to the 2.0 release of faad, patch by adland
diego
parents: 10989
diff changeset
472 { FRAC_CONST(0.27572581171989), FRAC_CONST(0.58634752035141) },
4a370c80fe5c update to the 2.0 release of faad, patch by adland
diego
parents: 10989
diff changeset
473 { FRAC_CONST(-0.65889132022858), FRAC_CONST(0.58835631608963) },
4a370c80fe5c update to the 2.0 release of faad, patch by adland
diego
parents: 10989
diff changeset
474 { FRAC_CONST(0.98838084936142), FRAC_CONST(0.99994349479675) },
4a370c80fe5c update to the 2.0 release of faad, patch by adland
diego
parents: 10989
diff changeset
475 { FRAC_CONST(-0.20651349425316), FRAC_CONST(0.54593044519424) },
4a370c80fe5c update to the 2.0 release of faad, patch by adland
diego
parents: 10989
diff changeset
476 { FRAC_CONST(-0.62126415967941), FRAC_CONST(-0.59893679618835) },
4a370c80fe5c update to the 2.0 release of faad, patch by adland
diego
parents: 10989
diff changeset
477 { FRAC_CONST(0.20320105552673), FRAC_CONST(-0.86879181861877) },
4a370c80fe5c update to the 2.0 release of faad, patch by adland
diego
parents: 10989
diff changeset
478 { FRAC_CONST(-0.97790551185608), FRAC_CONST(0.96290808916092) },
4a370c80fe5c update to the 2.0 release of faad, patch by adland
diego
parents: 10989
diff changeset
479 { FRAC_CONST(0.11112534999847), FRAC_CONST(0.21484763920307) },
4a370c80fe5c update to the 2.0 release of faad, patch by adland
diego
parents: 10989
diff changeset
480 { FRAC_CONST(-0.41368338465691), FRAC_CONST(0.28216838836670) },
4a370c80fe5c update to the 2.0 release of faad, patch by adland
diego
parents: 10989
diff changeset
481 { FRAC_CONST(0.24133038520813), FRAC_CONST(0.51294362545013) },
4a370c80fe5c update to the 2.0 release of faad, patch by adland
diego
parents: 10989
diff changeset
482 { FRAC_CONST(-0.66393411159515), FRAC_CONST(-0.08249679952860) },
4a370c80fe5c update to the 2.0 release of faad, patch by adland
diego
parents: 10989
diff changeset
483 { FRAC_CONST(-0.53697830438614), FRAC_CONST(-0.97649902105331) },
4a370c80fe5c update to the 2.0 release of faad, patch by adland
diego
parents: 10989
diff changeset
484 { FRAC_CONST(-0.97224736213684), FRAC_CONST(0.22081333398819) },
4a370c80fe5c update to the 2.0 release of faad, patch by adland
diego
parents: 10989
diff changeset
485 { FRAC_CONST(0.87392479181290), FRAC_CONST(-0.12796173989773) },
4a370c80fe5c update to the 2.0 release of faad, patch by adland
diego
parents: 10989
diff changeset
486 { FRAC_CONST(0.19050361216068), FRAC_CONST(0.01602615416050) },
4a370c80fe5c update to the 2.0 release of faad, patch by adland
diego
parents: 10989
diff changeset
487 { FRAC_CONST(-0.46353441476822), FRAC_CONST(-0.95249038934708) },
4a370c80fe5c update to the 2.0 release of faad, patch by adland
diego
parents: 10989
diff changeset
488 { FRAC_CONST(-0.07064096629620), FRAC_CONST(-0.94479805231094) },
4a370c80fe5c update to the 2.0 release of faad, patch by adland
diego
parents: 10989
diff changeset
489 { FRAC_CONST(-0.92444086074829), FRAC_CONST(-0.10457590222359) },
4a370c80fe5c update to the 2.0 release of faad, patch by adland
diego
parents: 10989
diff changeset
490 { FRAC_CONST(-0.83822596073151), FRAC_CONST(-0.01695043221116) },
4a370c80fe5c update to the 2.0 release of faad, patch by adland
diego
parents: 10989
diff changeset
491 { FRAC_CONST(0.75214684009552), FRAC_CONST(-0.99955683946609) },
4a370c80fe5c update to the 2.0 release of faad, patch by adland
diego
parents: 10989
diff changeset
492 { FRAC_CONST(-0.42102998495102), FRAC_CONST(0.99720942974091) },
4a370c80fe5c update to the 2.0 release of faad, patch by adland
diego
parents: 10989
diff changeset
493 { FRAC_CONST(-0.72094786167145), FRAC_CONST(-0.35008960962296) },
4a370c80fe5c update to the 2.0 release of faad, patch by adland
diego
parents: 10989
diff changeset
494 { FRAC_CONST(0.78843313455582), FRAC_CONST(0.52851396799088) },
4a370c80fe5c update to the 2.0 release of faad, patch by adland
diego
parents: 10989
diff changeset
495 { FRAC_CONST(0.97394025325775), FRAC_CONST(-0.26695942878723) },
4a370c80fe5c update to the 2.0 release of faad, patch by adland
diego
parents: 10989
diff changeset
496 { FRAC_CONST(0.99206465482712), FRAC_CONST(-0.57010120153427) },
4a370c80fe5c update to the 2.0 release of faad, patch by adland
diego
parents: 10989
diff changeset
497 { FRAC_CONST(0.76789611577988), FRAC_CONST(-0.76519358158112) },
4a370c80fe5c update to the 2.0 release of faad, patch by adland
diego
parents: 10989
diff changeset
498 { FRAC_CONST(-0.82002419233322), FRAC_CONST(-0.73530179262161) },
4a370c80fe5c update to the 2.0 release of faad, patch by adland
diego
parents: 10989
diff changeset
499 { FRAC_CONST(0.81924992799759), FRAC_CONST(0.99698424339294) },
4a370c80fe5c update to the 2.0 release of faad, patch by adland
diego
parents: 10989
diff changeset
500 { FRAC_CONST(-0.26719850301743), FRAC_CONST(0.68903368711472) },
4a370c80fe5c update to the 2.0 release of faad, patch by adland
diego
parents: 10989
diff changeset
501 { FRAC_CONST(-0.43311259150505), FRAC_CONST(0.85321813821793) },
4a370c80fe5c update to the 2.0 release of faad, patch by adland
diego
parents: 10989
diff changeset
502 { FRAC_CONST(0.99194979667664), FRAC_CONST(0.91876250505447) },
4a370c80fe5c update to the 2.0 release of faad, patch by adland
diego
parents: 10989
diff changeset
503 { FRAC_CONST(-0.80691999197006), FRAC_CONST(-0.32627540826797) },
4a370c80fe5c update to the 2.0 release of faad, patch by adland
diego
parents: 10989
diff changeset
504 { FRAC_CONST(0.43080005049706), FRAC_CONST(-0.21919095516205) },
4a370c80fe5c update to the 2.0 release of faad, patch by adland
diego
parents: 10989
diff changeset
505 { FRAC_CONST(0.67709493637085), FRAC_CONST(-0.95478075742722) },
4a370c80fe5c update to the 2.0 release of faad, patch by adland
diego
parents: 10989
diff changeset
506 { FRAC_CONST(0.56151771545410), FRAC_CONST(-0.70693808794022) },
4a370c80fe5c update to the 2.0 release of faad, patch by adland
diego
parents: 10989
diff changeset
507 { FRAC_CONST(0.10831862688065), FRAC_CONST(-0.08628837019205) },
4a370c80fe5c update to the 2.0 release of faad, patch by adland
diego
parents: 10989
diff changeset
508 { FRAC_CONST(0.91229414939880), FRAC_CONST(-0.65987348556519) },
4a370c80fe5c update to the 2.0 release of faad, patch by adland
diego
parents: 10989
diff changeset
509 { FRAC_CONST(-0.48972892761230), FRAC_CONST(0.56289243698120) },
4a370c80fe5c update to the 2.0 release of faad, patch by adland
diego
parents: 10989
diff changeset
510 { FRAC_CONST(-0.89033657312393), FRAC_CONST(-0.71656566858292) },
4a370c80fe5c update to the 2.0 release of faad, patch by adland
diego
parents: 10989
diff changeset
511 { FRAC_CONST(0.65269446372986), FRAC_CONST(0.65916007757187) },
4a370c80fe5c update to the 2.0 release of faad, patch by adland
diego
parents: 10989
diff changeset
512 { FRAC_CONST(0.67439478635788), FRAC_CONST(-0.81684380769730) },
4a370c80fe5c update to the 2.0 release of faad, patch by adland
diego
parents: 10989
diff changeset
513 { FRAC_CONST(-0.47770830988884), FRAC_CONST(-0.16789555549622) },
4a370c80fe5c update to the 2.0 release of faad, patch by adland
diego
parents: 10989
diff changeset
514 { FRAC_CONST(-0.99715977907181), FRAC_CONST(-0.93565785884857) },
4a370c80fe5c update to the 2.0 release of faad, patch by adland
diego
parents: 10989
diff changeset
515 { FRAC_CONST(-0.90889590978622), FRAC_CONST(0.62034398317337) },
4a370c80fe5c update to the 2.0 release of faad, patch by adland
diego
parents: 10989
diff changeset
516 { FRAC_CONST(-0.06618622690439), FRAC_CONST(-0.23812216520309) },
4a370c80fe5c update to the 2.0 release of faad, patch by adland
diego
parents: 10989
diff changeset
517 { FRAC_CONST(0.99430269002914), FRAC_CONST(0.18812555074692) },
4a370c80fe5c update to the 2.0 release of faad, patch by adland
diego
parents: 10989
diff changeset
518 { FRAC_CONST(0.97686403989792), FRAC_CONST(-0.28664535284042) },
4a370c80fe5c update to the 2.0 release of faad, patch by adland
diego
parents: 10989
diff changeset
519 { FRAC_CONST(0.94813650846481), FRAC_CONST(-0.97506642341614) },
4a370c80fe5c update to the 2.0 release of faad, patch by adland
diego
parents: 10989
diff changeset
520 { FRAC_CONST(-0.95434498786926), FRAC_CONST(-0.79607981443405) },
4a370c80fe5c update to the 2.0 release of faad, patch by adland
diego
parents: 10989
diff changeset
521 { FRAC_CONST(-0.49104782938957), FRAC_CONST(0.32895213365555) },
4a370c80fe5c update to the 2.0 release of faad, patch by adland
diego
parents: 10989
diff changeset
522 { FRAC_CONST(0.99881172180176), FRAC_CONST(0.88993984460831) },
4a370c80fe5c update to the 2.0 release of faad, patch by adland
diego
parents: 10989
diff changeset
523 { FRAC_CONST(0.50449168682098), FRAC_CONST(-0.85995072126389) },
4a370c80fe5c update to the 2.0 release of faad, patch by adland
diego
parents: 10989
diff changeset
524 { FRAC_CONST(0.47162890434265), FRAC_CONST(-0.18680204451084) },
4a370c80fe5c update to the 2.0 release of faad, patch by adland
diego
parents: 10989
diff changeset
525 { FRAC_CONST(-0.62081581354141), FRAC_CONST(0.75000673532486) },
4a370c80fe5c update to the 2.0 release of faad, patch by adland
diego
parents: 10989
diff changeset
526 { FRAC_CONST(-0.43867015838623), FRAC_CONST(0.99998068809509) },
4a370c80fe5c update to the 2.0 release of faad, patch by adland
diego
parents: 10989
diff changeset
527 { FRAC_CONST(0.98630565404892), FRAC_CONST(-0.53578901290894) },
4a370c80fe5c update to the 2.0 release of faad, patch by adland
diego
parents: 10989
diff changeset
528 { FRAC_CONST(-0.61510360240936), FRAC_CONST(-0.89515018463135) },
4a370c80fe5c update to the 2.0 release of faad, patch by adland
diego
parents: 10989
diff changeset
529 { FRAC_CONST(-0.03841517493129), FRAC_CONST(-0.69888818264008) },
4a370c80fe5c update to the 2.0 release of faad, patch by adland
diego
parents: 10989
diff changeset
530 { FRAC_CONST(-0.30102157592773), FRAC_CONST(-0.07667808979750) },
4a370c80fe5c update to the 2.0 release of faad, patch by adland
diego
parents: 10989
diff changeset
531 { FRAC_CONST(0.41881284117699), FRAC_CONST(0.02188098989427) },
4a370c80fe5c update to the 2.0 release of faad, patch by adland
diego
parents: 10989
diff changeset
532 { FRAC_CONST(-0.86135452985764), FRAC_CONST(0.98947483301163) },
4a370c80fe5c update to the 2.0 release of faad, patch by adland
diego
parents: 10989
diff changeset
533 { FRAC_CONST(0.67226862907410), FRAC_CONST(-0.13494388759136) },
4a370c80fe5c update to the 2.0 release of faad, patch by adland
diego
parents: 10989
diff changeset
534 { FRAC_CONST(-0.70737397670746), FRAC_CONST(-0.76547348499298) },
4a370c80fe5c update to the 2.0 release of faad, patch by adland
diego
parents: 10989
diff changeset
535 { FRAC_CONST(0.94044947624207), FRAC_CONST(0.09026201069355) },
4a370c80fe5c update to the 2.0 release of faad, patch by adland
diego
parents: 10989
diff changeset
536 { FRAC_CONST(-0.82386350631714), FRAC_CONST(0.08924768865108) },
4a370c80fe5c update to the 2.0 release of faad, patch by adland
diego
parents: 10989
diff changeset
537 { FRAC_CONST(-0.32070666551590), FRAC_CONST(0.50143420696259) },
4a370c80fe5c update to the 2.0 release of faad, patch by adland
diego
parents: 10989
diff changeset
538 { FRAC_CONST(0.57593160867691), FRAC_CONST(-0.98966425657272) },
4a370c80fe5c update to the 2.0 release of faad, patch by adland
diego
parents: 10989
diff changeset
539 { FRAC_CONST(-0.36326017975807), FRAC_CONST(0.07440242916346) },
4a370c80fe5c update to the 2.0 release of faad, patch by adland
diego
parents: 10989
diff changeset
540 { FRAC_CONST(0.99979043006897), FRAC_CONST(-0.14130286872387) },
4a370c80fe5c update to the 2.0 release of faad, patch by adland
diego
parents: 10989
diff changeset
541 { FRAC_CONST(-0.92366021871567), FRAC_CONST(-0.97979295253754) },
4a370c80fe5c update to the 2.0 release of faad, patch by adland
diego
parents: 10989
diff changeset
542 { FRAC_CONST(-0.44607177376747), FRAC_CONST(-0.54233253002167) },
4a370c80fe5c update to the 2.0 release of faad, patch by adland
diego
parents: 10989
diff changeset
543 { FRAC_CONST(0.44226801395416), FRAC_CONST(0.71326756477356) },
4a370c80fe5c update to the 2.0 release of faad, patch by adland
diego
parents: 10989
diff changeset
544 { FRAC_CONST(0.03671907261014), FRAC_CONST(0.63606387376785) },
4a370c80fe5c update to the 2.0 release of faad, patch by adland
diego
parents: 10989
diff changeset
545 { FRAC_CONST(0.52175426483154), FRAC_CONST(-0.85396826267242) },
4a370c80fe5c update to the 2.0 release of faad, patch by adland
diego
parents: 10989
diff changeset
546 { FRAC_CONST(-0.94701141119003), FRAC_CONST(-0.01826348155737) },
4a370c80fe5c update to the 2.0 release of faad, patch by adland
diego
parents: 10989
diff changeset
547 { FRAC_CONST(-0.98759609460831), FRAC_CONST(0.82288712263107) },
4a370c80fe5c update to the 2.0 release of faad, patch by adland
diego
parents: 10989
diff changeset
548 { FRAC_CONST(0.87434792518616), FRAC_CONST(0.89399492740631) },
4a370c80fe5c update to the 2.0 release of faad, patch by adland
diego
parents: 10989
diff changeset
549 { FRAC_CONST(-0.93412041664124), FRAC_CONST(0.41374051570892) },
4a370c80fe5c update to the 2.0 release of faad, patch by adland
diego
parents: 10989
diff changeset
550 { FRAC_CONST(0.96063941717148), FRAC_CONST(0.93116706609726) },
4a370c80fe5c update to the 2.0 release of faad, patch by adland
diego
parents: 10989
diff changeset
551 { FRAC_CONST(0.97534251213074), FRAC_CONST(0.86150932312012) },
4a370c80fe5c update to the 2.0 release of faad, patch by adland
diego
parents: 10989
diff changeset
552 { FRAC_CONST(0.99642467498779), FRAC_CONST(0.70190042257309) },
4a370c80fe5c update to the 2.0 release of faad, patch by adland
diego
parents: 10989
diff changeset
553 { FRAC_CONST(-0.94705086946487), FRAC_CONST(-0.29580041766167) },
4a370c80fe5c update to the 2.0 release of faad, patch by adland
diego
parents: 10989
diff changeset
554 { FRAC_CONST(0.91599804162979), FRAC_CONST(-0.98147833347321) }
10725
e989150f8216 libfaad2 v2.0rc1 imported
arpi
parents:
diff changeset
555 };
e989150f8216 libfaad2 v2.0rc1 imported
arpi
parents:
diff changeset
556
e989150f8216 libfaad2 v2.0rc1 imported
arpi
parents:
diff changeset
557 #ifdef __cplusplus
e989150f8216 libfaad2 v2.0rc1 imported
arpi
parents:
diff changeset
558
e989150f8216 libfaad2 v2.0rc1 imported
arpi
parents:
diff changeset
559 #endif
12527
4a370c80fe5c update to the 2.0 release of faad, patch by adland
diego
parents: 10989
diff changeset
560 #endif
4a370c80fe5c update to the 2.0 release of faad, patch by adland
diego
parents: 10989
diff changeset
561