123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181 |
- /*======================================================================*/
- /* Enhanced Variable Rate Codec - Bit-Exact C Specification */
- /* Copyright (C) 1997-1998 Telecommunications Industry Association. */
- /* All rights reserved. */
- /*----------------------------------------------------------------------*/
- /* Note: Reproduction and use of this software for the design and */
- /* development of North American Wideband CDMA Digital */
- /* Cellular Telephony Standards is authorized by the TIA. */
- /* The TIA does not authorize the use of this software for any */
- /* other purpose. */
- /* */
- /* The availability of this software does not provide any license */
- /* by implication, estoppel, or otherwise under any patent rights */
- /* of TIA member companies or others covering any use of the */
- /* contents herein. */
- /* */
- /* Any copies of this software or derivative works must include */
- /* this and all other proprietary notices. */
- /*======================================================================*/
- short hamm_table[160]={
- 2621,
- 2633,
- 2668,
- 2726,
- 2807,
- 2911,
- 3038,
- 3187,
- 3359,
- 3553,
- 3769,
- 4006,
- 4264,
- 4543,
- 4843,
- 5162,
- 5500,
- 5857,
- 6233,
- 6626,
- 7036,
- 7463,
- 7905,
- 8363,
- 8835,
- 9320,
- 9819,
- 10330,
- 10852,
- 11384,
- 11926,
- 12478,
- 13037,
- 13603,
- 14176,
- 14754,
- 15337,
- 15923,
- 16512,
- 17103,
- 17695,
- 18286,
- 18877,
- 19466,
- 20053,
- 20635,
- 21214,
- 21786,
- 22353,
- 22912,
- 23463,
- 24005,
- 24538,
- 25060,
- 25570,
- 26069,
- 26555,
- 27026,
- 27484,
- 27926,
- 28353,
- 28763,
- 29157,
- 29532,
- 29889,
- 30228,
- 30547,
- 30846,
- 31125,
- 31383,
- 31621,
- 31836,
- 32030,
- 32202,
- 32352,
- 32478,
- 32582,
- 32664,
- 32722,
- 32756,
- 32767,
- 32756,
- 32722,
- 32664,
- 32582,
- 32478,
- 32352,
- 32202,
- 32030,
- 31836,
- 31621,
- 31383,
- 31125,
- 30846,
- 30547,
- 30228,
- 29889,
- 29532,
- 29157,
- 28763,
- 28353,
- 27926,
- 27484,
- 27026,
- 26555,
- 26069,
- 25570,
- 25060,
- 24538,
- 24005,
- 23463,
- 22912,
- 22353,
- 21786,
- 21214,
- 20635,
- 20053,
- 19466,
- 18877,
- 18286,
- 17695,
- 17103,
- 16512,
- 15923,
- 15337,
- 14754,
- 14176,
- 13603,
- 13037,
- 12478,
- 11926,
- 11384,
- 10852,
- 10330,
- 9819,
- 9320,
- 8835,
- 8363,
- 7905,
- 7463,
- 7036,
- 6626,
- 6233,
- 5857,
- 5500,
- 5162,
- 4843,
- 4543,
- 4264,
- 4006,
- 3769,
- 3553,
- 3359,
- 3187,
- 3038,
- 2911,
- 2807,
- 2726,
- 2668,
- 2633
- };
|