-
Notifications
You must be signed in to change notification settings - Fork 6
Expand file tree
/
Copy pathKconfig
More file actions
140 lines (99 loc) · 2.43 KB
/
Kconfig
File metadata and controls
140 lines (99 loc) · 2.43 KB
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
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
#
# For a description of the syntax of this configuration file,
# see the file kconfig-language.txt in the NuttX tools repository.
#
config MEDIA
tristate "Enable media"
default n
if MEDIA
choice
prompt "MEDIA log level"
default MEDIA_LOG_INFO
config MEDIA_LOG_DEBUG
bool "MEDIA_LOG_DEBUG"
config MEDIA_LOG_INFO
bool "MEDIA_LOG_INFO"
config MEDIA_LOG_WARN
bool "MEDIA_LOG_WARN"
config MEDIA_LOG_ERR
bool "MEDIA_LOG_ERR"
config MEDIA_LOG_SLIENT
bool "MEDIA_LOG_SLIENT"
endchoice
config MEDIA_SERVER
bool "Enable media server"
default n
depends on EVENT_FD
if MEDIA_SERVER
config MEDIA_SERVER_CONFIG_PATH
string "Media server configure file path"
default "/etc/media/"
config MEDIA_SERVER_PROGNAME
string "Media server name"
default "mediad"
config MEDIA_SERVER_STACKSIZE
int "Media server stack size"
default 81920
config MEDIA_SERVER_PRIORITY
int "Media server priority"
default 245
config MEDIA_FOCUS
bool "Enable media focus"
default n
config MEDIA_TRACE
bool "Enable media trace"
default n
config MEDIA_SERVER_MAXCONN
int "Max socket connections"
default 16
config MEDIA_SERVER_MAX_POLLFDS
int "Max poll fd counts"
default 64
config MEDIA_SERVER_PORT
int "Media server AF_INET listening port"
default -1
if MEDIA_FOCUS
config MEDIA_FOCUS_STACK_DEPTH
int "Media focus configurable stack size"
default 8
config MEDIA_FOCUS_SUGGESTION_TIME_OUT
int "Media focus configurable suggestion time out with ms"
default 1000
endif # MEDIA_FOCUS
endif # MEDIA_SERVER
config MEDIA_SERVER_CPUNAME
string "Media server CPU name, for distributed server, use list like 'ap,audio'"
default "local"
config MEDIA_TOOL
bool "Media tool"
default n
if MEDIA_TOOL
config MEDIA_TOOL_STACKSIZE
int "Media tool stack size"
default 16384
config MEDIA_TOOL_PRIORITY
int "Media tool priority"
default 100
endif # MEDIA_TOOL
config MEDIA_PROXY_LISTEN_STACKSIZE
int "Media proxy listen thread stack size"
default 4096
config MEDIA_PROXY_LISTEN_PRIORITY
int "Media proxy listen thread priority"
default 100
endif # MEDIA
config MEDIA_TRIGGER
bool "Enable media trigger server"
default n
if MEDIA_TRIGGER
config MEDIA_TRIGGER_PRIORITY
int "Media trigger priority"
default 100
config MEDIA_TRIGGER_STACKSIZE
int "Media trigger stack size"
default 10240
config MEDIA_TRIGGER_MAX_MODEL_NUM
int "Media trigger max model num support"
default 10
endif # MEDIA TRIGGER
osource "$APPSDIR/frameworks/multimedia/media/pfw/Kconfig"