comparison als_data.h @ 10530:d428e57f14c6 libavcodec

Add long-term prediction to the ALS decoder.
author thilo.borgmann
date Sat, 14 Nov 2009 06:29:19 +0000
parents 9b56cd1e37b7
children
comparison
equal deleted inserted replaced
10529:f8fc0a56745e 10530:d428e57f14c6
90 810016 / 32, 840992 / 32, 872224 / 32, 903712 / 32, 90 810016 / 32, 840992 / 32, 872224 / 32, 903712 / 32,
91 935456 / 32, 967456 / 32, 999712 / 32, 1032224 / 32 91 935456 / 32, 967456 / 32, 999712 / 32, 1032224 / 32
92 }; 92 };
93 93
94 94
95 /** Gain values of p(0) for long-term prediction.
96 * To be indexed by the Rice coded indices.
97 */
98 static const uint8_t ltp_gain_values [4][4] = {
99 { 0, 8, 16, 24},
100 {32, 40, 48, 56},
101 {64, 70, 76, 82},
102 {88, 92, 96, 100}
103 };
104
95 #endif /* AVCODEC_ALS_DATA_H */ 105 #endif /* AVCODEC_ALS_DATA_H */