comparison siprdata.h @ 10890:36587d8c1201 libavcodec

Allow a SIPR table to be used by the upcoming SIPR16k decoder
author vitor
date Sat, 16 Jan 2010 03:44:17 +0000
parents f20f9b76f4c8
children
comparison
equal deleted inserted replaced
10889:de32bff741ea 10890:36587d8c1201
21 * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA 21 * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
22 */ 22 */
23 23
24 #ifndef AVCODEC_SIPRDATA_H 24 #ifndef AVCODEC_SIPRDATA_H
25 #define AVCODEC_SIPRDATA_H 25 #define AVCODEC_SIPRDATA_H
26
27 static const float pow_0_5[] = {
28 1.0/(1 << 1), 1.0/(1 << 2), 1.0/(1 << 3), 1.0/(1 << 4),
29 1.0/(1 << 5), 1.0/(1 << 6), 1.0/(1 << 7), 1.0/(1 << 8),
30 1.0/(1 << 9), 1.0/(1 << 10), 1.0/(1 << 11), 1.0/(1 << 12),
31 1.0/(1 << 13), 1.0/(1 << 14), 1.0/(1 << 15), 1.0/(1 << 16)
32 };
33 26
34 static const float mean_lsf[10] = { 27 static const float mean_lsf[10] = {
35 0.297151, 0.452308, 0.765443, 1.134803, 1.421125, 28 0.297151, 0.452308, 0.765443, 1.134803, 1.421125,
36 1.773822, 2.049173, 2.375914, 2.585097, 0.075756 29 1.773822, 2.049173, 2.375914, 2.585097, 0.075756
37 }; 30 };