123456789101112131415161718192021222324252627282930313233343536373839404142434445464748 |
- /**
- * Copyright (c) 2019 Paul-Louis Ageneau
- *
- * This Source Code Form is subject to the terms of the Mozilla Public
- * License, v. 2.0. If a copy of the MPL was not distributed with this
- * file, You can obtain one at https://mozilla.org/MPL/2.0/.
- */
- // C API
- #include "rtc.h"
- // C++ API
- #include "common.hpp"
- #include "global.hpp"
- //
- #include "datachannel.hpp"
- #include "peerconnection.hpp"
- #include "track.hpp"
- #include "iceudpmuxlistener.hpp"
- #if RTC_ENABLE_WEBSOCKET
- // WebSocket
- #include "websocket.hpp"
- #include "websocketserver.hpp"
- #endif // RTC_ENABLE_WEBSOCKET
- #if RTC_ENABLE_MEDIA
- // Media
- #include "av1rtppacketizer.hpp"
- #include "dependencydescriptor.hpp"
- #include "h264rtppacketizer.hpp"
- #include "h264rtpdepacketizer.hpp"
- #include "h265rtppacketizer.hpp"
- #include "h265rtpdepacketizer.hpp"
- #include "mediahandler.hpp"
- #include "plihandler.hpp"
- #include "rembhandler.hpp"
- #include "pacinghandler.hpp"
- #include "rtcpnackresponder.hpp"
- #include "rtcpreceivingsession.hpp"
- #include "rtcpsrreporter.hpp"
- #include "rtppacketizer.hpp"
- #include "rtpdepacketizer.hpp"
- #endif // RTC_ENABLE_MEDIA
|