datachannel-sys 0.10.2

Native bindings to libdatachannel.
Documentation
/**
 * Copyright (c) 2020 Staz Modrzynski
 * Copyright (c) 2020 Paul-Louis Ageneau
 *
 * This library is free software; you can redistribute it and/or
 * modify it under the terms of the GNU Lesser General Public
 * License as published by the Free Software Foundation; either
 * version 2.1 of the License, or (at your option) any later version.
 *
 * This library is distributed in the hope that it will be useful,
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
 * Lesser General Public License for more details.
 *
 * You should have received a copy of the GNU Lesser General Public
 * License along with this library; if not, write to the Free Software
 * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
 */

#ifndef RTC_RTCP_H
#define RTC_RTCP_H

#include <utility>

#include "include.hpp"
#include "log.hpp"
#include "message.hpp"
#include "rtp.hpp"

namespace rtc {

class RtcpHandler {
protected:
	/**
	 * Use this callback when trying to send custom data (such as RTCP) to the client.
	 */
	synchronized_callback<rtc::message_ptr> outgoingCallback;

public:
	/**
	 * Called when there is traffic coming from the peer
	 * @param ptr
	 * @return
	 */
	virtual rtc::message_ptr incoming(rtc::message_ptr ptr) = 0;

	/**
	 * Called when there is traffic that needs to be sent to the peer
	 * @param ptr
	 * @return
	 */
	virtual rtc::message_ptr outgoing(rtc::message_ptr ptr) = 0;

	/**
	 * This callback is used to send traffic back to the peer.
	 * This callback skips calling the track's methods.
	 * @param cb
	 */
	void onOutgoing(const std::function<void(rtc::message_ptr)> &cb);

	virtual bool requestKeyframe() { return false; }
};

class Track;

// An RtcpSession can be plugged into a Track to handle the whole RTCP session
class RtcpReceivingSession : public RtcpHandler {
public:
	rtc::message_ptr incoming(rtc::message_ptr ptr) override;
	rtc::message_ptr outgoing(rtc::message_ptr ptr) override;
	bool send(rtc::message_ptr ptr);

	void requestBitrate(unsigned int newBitrate);

	bool requestKeyframe() override;

protected:
	void pushREMB(unsigned int bitrate);
	void pushRR(unsigned int lastSR_delay);

	void pushPLI();

	unsigned int mRequestedBitrate = 0;
	SSRC mSsrc = 0;
	uint32_t mGreatestSeqNo = 0;
	uint64_t mSyncRTPTS, mSyncNTPTS;
};

} // namespace rtc

#endif // RTC_RTCP_H