webrtc-streamer 0.8.7-9-gd4f4839 → 0.8.8
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "webrtc-streamer",
|
|
3
|
-
"image": "ghcr.io/mpromonet/webrtc-streamer:dev",
|
|
3
|
+
"image": "ghcr.io/mpromonet/webrtc-streamer:master-dev",
|
|
4
4
|
"runArgs": [ "--cap-add=SYS_PTRACE", "--security-opt", "seccomp=unconfined", "--privileged"],
|
|
5
5
|
|
|
6
6
|
"customizations": {
|
|
@@ -12,11 +12,10 @@
|
|
|
12
12
|
},
|
|
13
13
|
"mounts": [
|
|
14
14
|
"source=profile,target=/home/dev,type=volume",
|
|
15
|
-
"source=webrtc,target=/webrtc/src/out,type=volume",
|
|
15
|
+
"source=webrtc,target=/build/webrtc/src/out,type=volume",
|
|
16
16
|
"target=/home/dev/.vscode-server,type=volume"
|
|
17
17
|
],
|
|
18
|
-
"
|
|
19
|
-
"
|
|
20
|
-
"workspaceMount": "source=${localWorkspaceFolder},target=/webrtc-streamer,type=bind",
|
|
18
|
+
"workspaceFolder": "/build/webrtc-streamer",
|
|
19
|
+
"workspaceMount": "source=${localWorkspaceFolder},target=/build/webrtc-streamer,type=bind",
|
|
21
20
|
"forwardPorts": [8000]
|
|
22
21
|
}
|
|
@@ -4,7 +4,8 @@
|
|
|
4
4
|
"name": "default",
|
|
5
5
|
"includePath": [
|
|
6
6
|
"${workspaceFolder}/**",
|
|
7
|
-
"${workspaceFolder}/../webrtc/src",
|
|
7
|
+
"${workspaceFolder}/../webrtc/src/api",
|
|
8
|
+
"${workspaceFolder}/../webrtc/src/media",
|
|
8
9
|
"${workspaceFolder}/../webrtc/src/third_party/abseil-cpp",
|
|
9
10
|
"${workspaceFolder}/../webrtc/src/third_party/jsoncpp/source/include",
|
|
10
11
|
"${workspaceFolder}/../webrtc/src/third_party/jsoncpp/generated"
|
package/.vscode/settings.json
CHANGED
|
@@ -5,6 +5,79 @@
|
|
|
5
5
|
"string_view": "cpp",
|
|
6
6
|
"ranges": "cpp",
|
|
7
7
|
"span": "cpp",
|
|
8
|
-
"vector": "cpp"
|
|
8
|
+
"vector": "cpp",
|
|
9
|
+
"cstdint": "cpp",
|
|
10
|
+
"bitset": "cpp",
|
|
11
|
+
"format": "cpp",
|
|
12
|
+
"initializer_list": "cpp",
|
|
13
|
+
"regex": "cpp",
|
|
14
|
+
"valarray": "cpp",
|
|
15
|
+
"chrono": "cpp",
|
|
16
|
+
"any": "cpp",
|
|
17
|
+
"atomic": "cpp",
|
|
18
|
+
"strstream": "cpp",
|
|
19
|
+
"bit": "cpp",
|
|
20
|
+
"*.tcc": "cpp",
|
|
21
|
+
"cctype": "cpp",
|
|
22
|
+
"cfenv": "cpp",
|
|
23
|
+
"charconv": "cpp",
|
|
24
|
+
"cinttypes": "cpp",
|
|
25
|
+
"clocale": "cpp",
|
|
26
|
+
"cmath": "cpp",
|
|
27
|
+
"codecvt": "cpp",
|
|
28
|
+
"compare": "cpp",
|
|
29
|
+
"concepts": "cpp",
|
|
30
|
+
"condition_variable": "cpp",
|
|
31
|
+
"csignal": "cpp",
|
|
32
|
+
"cstdarg": "cpp",
|
|
33
|
+
"cstddef": "cpp",
|
|
34
|
+
"cstdio": "cpp",
|
|
35
|
+
"cstdlib": "cpp",
|
|
36
|
+
"cstring": "cpp",
|
|
37
|
+
"ctime": "cpp",
|
|
38
|
+
"cwchar": "cpp",
|
|
39
|
+
"cwctype": "cpp",
|
|
40
|
+
"deque": "cpp",
|
|
41
|
+
"forward_list": "cpp",
|
|
42
|
+
"list": "cpp",
|
|
43
|
+
"map": "cpp",
|
|
44
|
+
"set": "cpp",
|
|
45
|
+
"unordered_map": "cpp",
|
|
46
|
+
"unordered_set": "cpp",
|
|
47
|
+
"exception": "cpp",
|
|
48
|
+
"algorithm": "cpp",
|
|
49
|
+
"functional": "cpp",
|
|
50
|
+
"iterator": "cpp",
|
|
51
|
+
"memory": "cpp",
|
|
52
|
+
"memory_resource": "cpp",
|
|
53
|
+
"numeric": "cpp",
|
|
54
|
+
"optional": "cpp",
|
|
55
|
+
"random": "cpp",
|
|
56
|
+
"ratio": "cpp",
|
|
57
|
+
"system_error": "cpp",
|
|
58
|
+
"tuple": "cpp",
|
|
59
|
+
"type_traits": "cpp",
|
|
60
|
+
"utility": "cpp",
|
|
61
|
+
"fstream": "cpp",
|
|
62
|
+
"future": "cpp",
|
|
63
|
+
"iomanip": "cpp",
|
|
64
|
+
"iosfwd": "cpp",
|
|
65
|
+
"iostream": "cpp",
|
|
66
|
+
"istream": "cpp",
|
|
67
|
+
"limits": "cpp",
|
|
68
|
+
"mutex": "cpp",
|
|
69
|
+
"new": "cpp",
|
|
70
|
+
"numbers": "cpp",
|
|
71
|
+
"ostream": "cpp",
|
|
72
|
+
"scoped_allocator": "cpp",
|
|
73
|
+
"semaphore": "cpp",
|
|
74
|
+
"sstream": "cpp",
|
|
75
|
+
"stdexcept": "cpp",
|
|
76
|
+
"stop_token": "cpp",
|
|
77
|
+
"streambuf": "cpp",
|
|
78
|
+
"thread": "cpp",
|
|
79
|
+
"typeindex": "cpp",
|
|
80
|
+
"typeinfo": "cpp",
|
|
81
|
+
"variant": "cpp"
|
|
9
82
|
}
|
|
10
83
|
}
|
package/README.md
CHANGED