comparison libfaad2/sbr_huff.h @ 10989:3185f64f6350

synced with current cvs
author alex
date Fri, 03 Oct 2003 22:23:26 +0000
parents e989150f8216
children 4a370c80fe5c
comparison
equal deleted inserted replaced
10988:c2bff70784d5 10989:3185f64f6350
20 ** forbidden. 20 ** forbidden.
21 ** 21 **
22 ** Commercial non-GPL licensing of this software is possible. 22 ** Commercial non-GPL licensing of this software is possible.
23 ** For more info contact Ahead Software through Mpeg4AAClicense@nero.com. 23 ** For more info contact Ahead Software through Mpeg4AAClicense@nero.com.
24 ** 24 **
25 ** $Id: sbr_huff.h,v 1.5 2003/07/29 08:20:13 menno Exp $ 25 ** $Id: sbr_huff.h,v 1.6 2003/09/09 18:09:52 menno Exp $
26 **/ 26 **/
27 27
28 #ifndef __SBR_HUFF_H__ 28 #ifndef __SBR_HUFF_H__
29 #define __SBR_HUFF_H__ 29 #define __SBR_HUFF_H__
30 30
31 #ifdef __cplusplus 31 #ifdef __cplusplus
32 extern "C" { 32 extern "C" {
33 #endif 33 #endif
34 34
35 typedef const int8_t (*sbr_huff_tab)[2];
36 35
37 int16_t sbr_huff_dec(bitfile *ld, sbr_huff_tab t_huff); 36 void sbr_envelope(bitfile *ld, sbr_info *sbr, uint8_t ch);
38 37 void sbr_noise(bitfile *ld, sbr_info *sbr, uint8_t ch);
39 const int8_t t_huffman_env_1_5dB[120][2];
40 const int8_t f_huffman_env_1_5dB[120][2];
41 const int8_t t_huffman_env_bal_1_5dB[48][2];
42 const int8_t f_huffman_env_bal_1_5dB[48][2];
43 const int8_t t_huffman_env_3_0dB[62][2];
44 const int8_t f_huffman_env_3_0dB[62][2];
45 const int8_t t_huffman_env_bal_3_0dB[24][2];
46 const int8_t f_huffman_env_bal_3_0dB[24][2];
47 const int8_t t_huffman_noise_3_0dB[62][2];
48 const int8_t t_huffman_noise_bal_3_0dB[24][2];
49 38
50 #ifdef __cplusplus 39 #ifdef __cplusplus
51 } 40 }
52 #endif 41 #endif
53 #endif 42 #endif