44 lines
953 B
C++
44 lines
953 B
C++
|
/**
|
||
|
* 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"
|
||
|
|
||
|
#if RTC_ENABLE_WEBSOCKET
|
||
|
|
||
|
// WebSocket
|
||
|
#include "websocket.hpp"
|
||
|
#include "websocketserver.hpp"
|
||
|
|
||
|
#endif // RTC_ENABLE_WEBSOCKET
|
||
|
|
||
|
#if RTC_ENABLE_MEDIA
|
||
|
|
||
|
// Media
|
||
|
#include "av1rtppacketizer.hpp"
|
||
|
#include "h264rtppacketizer.hpp"
|
||
|
#include "h264rtpdepacketizer.hpp"
|
||
|
#include "h265rtppacketizer.hpp"
|
||
|
#include "mediahandler.hpp"
|
||
|
#include "plihandler.hpp"
|
||
|
#include "rtcpnackresponder.hpp"
|
||
|
#include "rtcpreceivingsession.hpp"
|
||
|
#include "rtcpsrreporter.hpp"
|
||
|
#include "rtppacketizer.hpp"
|
||
|
#include "rtpdepacketizer.hpp"
|
||
|
|
||
|
#endif // RTC_ENABLE_MEDIA
|