comparison Plugins/Input/aac/libfaad2/sbr_e_nf.h @ 1021:1e6c0a3f2d15 trunk

[svn] - 2.1 beta
author nenolod
date Wed, 10 May 2006 14:44:20 -0700
parents 29feaace84d0
children f12d7e208b43
comparison
equal deleted inserted replaced
1020:d70514b3b436 1021:1e6c0a3f2d15
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_e_nf.h,v 1.9 2004/01/05 14:05:12 menno Exp $ 25 ** $Id: sbr_e_nf.h,v 1.14 2004/09/04 14:56:28 menno Exp $
26 **/ 26 **/
27 27
28 #ifndef __SBR_E_NF_H__ 28 #ifndef __SBR_E_NF_H__
29 #define __SBR_E_NF_H__ 29 #define __SBR_E_NF_H__
30 30
31 #ifdef __cplusplus 31 #ifdef __cplusplus
32 extern "C" { 32 extern "C" {
33 #endif 33 #endif
34 34
35 35
36 #ifndef FIXED_POINT
37 #define P2_TABLE_OFFSET 35
38 #define P2_TABLE_MAX 91
39 #else
40 #define P2Q_TABLE_OFFSET 24
41 #define P2Q_TABLE_MAX 7
42 #define P2_TABLE_OFFSET 0
43 #define P2_TABLE_MAX 31
44 #endif
45 #define P2_TABLE_RCP_OFFSET 12
46 #define P2_TABLE_RCP_MAX 21
47
48
49 void extract_envelope_data(sbr_info *sbr, uint8_t ch); 36 void extract_envelope_data(sbr_info *sbr, uint8_t ch);
50 void extract_noise_floor_data(sbr_info *sbr, uint8_t ch); 37 void extract_noise_floor_data(sbr_info *sbr, uint8_t ch);
38 #ifndef FIXED_POINT
51 void envelope_noise_dequantisation(sbr_info *sbr, uint8_t ch); 39 void envelope_noise_dequantisation(sbr_info *sbr, uint8_t ch);
52 void unmap_envelope_noise(sbr_info *sbr); 40 void unmap_envelope_noise(sbr_info *sbr);
41 #endif
53 42
54 #ifdef __cplusplus 43 #ifdef __cplusplus
55 } 44 }
56 #endif 45 #endif
57 #endif 46 #endif