• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
1 /*
2  * Copyright (C) 2013 - 2016 Sony Corporation
3  *
4  * Licensed under the Apache License, Version 2.0 (the "License");
5  * you may not use this file except in compliance with the License.
6  * You may obtain a copy of the License at
7  *
8  *      http://www.apache.org/licenses/LICENSE-2.0
9  *
10  * Unless required by applicable law or agreed to in writing, software
11  * distributed under the License is distributed on an "AS IS" BASIS,
12  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13  * See the License for the specific language governing permissions and
14  * limitations under the License.
15  */
16 
17 
18 #include "ldac.h"
19 
20 /* Common Files */
21 #include "tables_ldac.c"
22 #ifndef _32BIT_FIXED_POINT
23 #include "tables_sigproc_ldac.c"
24 #include "setpcm_ldac.c"
25 #else /* _32BIT_FIXED_POINT */
26 #include "tables_sigproc_fixp_ldac.c"
27 #include "setpcm_fixp_ldac.c"
28 #include "func_fixp_ldac.c"
29 #endif /* _32BIT_FIXED_POINT */
30 #include "bitalloc_sub_ldac.c"
31 #include "memory_ldac.c"
32 #include "ldaclib_api.c"
33 
34 /* Encoder Files */
35 #ifndef _32BIT_FIXED_POINT
36 #include "mdct_ldac.c"
37 #include "sigana_ldac.c"
38 #include "quant_ldac.c"
39 #else /* _32BIT_FIXED_POINT */
40 #include "mdct_fixp_ldac.c"
41 #include "sigana_fixp_ldac.c"
42 #include "quant_fixp_ldac.c"
43 #endif /* _32BIT_FIXED_POINT */
44 #include "bitalloc_ldac.c"
45 #include "pack_ldac.c"
46 #include "encode_ldac.c"
47 
48 
49