|
Name |
|
Date |
Size |
#Lines |
LOC |
| .. | | - | - |
| Framework/ | | 23-Nov-2023 | - | 977 | 107 |
| api/ | | 23-Nov-2023 | - | 10,411 | 6,744 |
| base/ | | 23-Nov-2023 | - | 1,160 | 642 |
| components/ | | 23-Nov-2023 | - | 8,625 | 6,675 |
| helpers/ | | 23-Nov-2023 | - | 785 | 571 |
| native/ | | 23-Nov-2023 | - | 4,360 | 3,291 |
| unittests/ | | 23-Nov-2023 | - | 5,895 | 4,811 |
| DEPS | D | 23-Nov-2023 | 375 | 19 | 18 |
| Info.plist | D | 23-Nov-2023 | 751 | 27 | 26 |
| OWNERS.webrtc | D | 23-Nov-2023 | 201 | 10 | 8 |
| README.md | D | 23-Nov-2023 | 1,018 | 38 | 23 |
README.md
1# WebRTC Obj-C SDK
2
3This directory contains the Obj-C SDK for WebRTC. This includes wrappers for the
4C++ PeerConnection API and some platform specific components for iOS and macOS.
5
6## Organization
7
8- api/
9
10 Wrappers around classes and functions in the C++ API for creating and
11 configuring peer connections, etc.
12
13- base/
14
15 This directory contains some base protocols and classes that are used by both
16 the platform specific components and the SDK wrappers.
17
18- components/
19
20 These are the platform specific components. Contains components for handling
21 audio, capturing and rendering video, encoding and decoding using the
22 platform's hardware codec implementation and for representing video frames
23 in the platform's native format.
24
25- helpers/
26
27 These files are not WebRTC specific, but are general helper classes and
28 utilities for the Cocoa platforms.
29
30- native/
31
32 APIs for wrapping the platform specific components and using them with the
33 C++ API.
34
35- unittests/
36
37 This directory contains the tests.
38