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
| {
| "Cameras" : [
| {
| "name": "ISP",
| "width": 1920,
| "height": 1080,
| "format": "NV12",
| "fps": 30,
| "buffer_count": 5,
| "process_unit": [
| {
| "name": "NrProcess",
| "parent": "ISP",
| "buffer_count": 3,
| "parameter": {
| "width": 1920,
| "height": 1080
| }
| },
| {
| "name": "H264EncodeProcess",
| "parent": "NrProcess",
| "buffer_count": 3
| },
| {
| "name": "Mp4MuxerProcess",
| "parent": "H264EncodeProcess",
| "buffer_count": 0,
| "parameter": {
| "duration": 60
| }
| },
| {
| "name": "PhotoProcess",
| "parent": "NrProcess",
| "buffer_count": 0
| },
| {
| "name": "DisplayProcess",
| "parent": "NrProcess",
| "buffer_count": 0
| }
| ]
| }
| ]
| }
|
|