• Home
  • History
  • Annotate
Name Date Size #Lines LOC

..30-Mar-2022-

base/H30-Mar-2022-1,160642

helpers/H30-Mar-2022-785571

DEPSH A D30-Mar-2022375 1918

Info.plistH A D30-Mar-2022751 2726

OWNERSH A D30-Mar-2022201 108

README.mdH A D30-Mar-20221,018 3823

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