Name Date Size #Lines LOC

..--

Framework/H25-Apr-2025-15713

api/H25-Apr-2025-11,0507,179

base/H25-Apr-2025-1,164638

components/H25-Apr-2025-9,1776,920

helpers/H25-Apr-2025-859635

native/H25-Apr-2025-6,0284,486

unittests/H25-Apr-2025-5,8824,802

DEPSH A D25-Apr-2025375 1918

Info.plistH A D25-Apr-2025751 2726

OWNERS.webrtcH A D25-Apr-2025201 108

README.mdH A D25-Apr-20251,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