-
Notifications
You must be signed in to change notification settings - Fork 2
/
g729.gyp
110 lines (109 loc) · 2.54 KB
/
g729.gyp
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
# Copyright (c) 2015 The Sippet Authors. All rights reserved.
# Use of this source code is governed by a BSD-style license that can be
# found in the LICENSE file.
{
'targets': [
{
'target_name': 'g729',
'type': 'static_library',
'dependencies': [
'<(DEPTH)/third_party/webrtc/common_audio/common_audio.gyp:common_audio',
],
'include_dirs': [
'./include',
'./source',
'<(DEPTH)/third_party/webrtc',
],
'direct_dependent_settings': {
'include_dirs': [
'./source',
'<(DEPTH)/third_party/webrtc',
],
},
'sources': [
'src/acelp_ca.c',
'src/basic_op.h',
'src/bits.c',
'src/calcexc.c',
'src/cod_ld8a.c',
'src/cor_func.c',
'src/de_acelp.c',
'src/dec_gain.c',
'src/dec_lag3.c',
'src/dec_ld8a.c',
'src/dec_sid.c',
'src/dspfunc.c',
'src/dtx.c',
'src/dtx.h',
'src/filter.c',
'src/gainpred.c',
'src/ld8a.h',
'src/lpc.c',
'src/lpcfunc.c',
'src/lspdec.c',
'src/lspgetq.c',
'src/octet.h',
'src/oper_32b.c',
'src/oper_32b.h',
'src/pitch_a.c',
'src/postfilt.c',
'src/post_pro.c',
'src/p_parity.c',
'src/pred_lt3.c',
'src/pre_proc.c',
'src/qsidgain.c',
'src/qsidlsf.c',
'src/qua_gain.c',
'src/qua_lsp.c',
'src/sid.h',
'src/tab_dtx.c',
'src/tab_dtx.h',
'src/tab_ld8a.c',
'src/tab_ld8a.h',
'src/taming.c',
'src/vad.c',
'src/vad.h',
'src/util.c',
],
}, # target g729
{
'target_name': 'g729_coder',
'type': 'executable',
'include_dirs': [
'<(DEPTH)',
],
'dependencies': [
'g729',
],
'sources': [
'src/coder.c',
],
}, # target g729_coder
{
'target_name': 'g729_decoder',
'type': 'executable',
'include_dirs': [
'<(DEPTH)',
],
'dependencies': [
'g729',
],
'sources': [
'src/decoder.c',
],
}, # target g729_decoder
{
'target_name': 'autocorr',
'type': 'executable',
'include_dirs': [
'<(DEPTH)',
],
'dependencies': [
'g729',
],
'sources': [
'src/autocorr.c',
],
}, # target autocorr
],
}