mirror of
https://github.com/ZLMediaKit/ZLMediaKit.git
synced 2026-03-22 14:00:54 +08:00
- 增加客户端模式,支持主动拉流、推流: - addStreamProxy接口新增支持whep主动拉流,拉流地址目前只兼容zlm的whep url。 - addStreamPusherProxy接口新增支持whip主动推流,推流地址目前只兼容zlm的whip url。 - 以上推流url格式为webrtc[s]://server_host:server_port/app/stream_id?key=value, 内部会自动转换为http[s]://server_host:server_port/index/api/[whip/whep]?app=app&stream=stream_id&key=value。 - 增加WebRtc p2p 模式: - 增加 ICE FULL模式。 - 增加STUN/TURN 服务器。 - 增加websocket 信令。 - 增加P2P代理拉流。 --------- Co-authored-by: xia-chu <771730766@qq.com> Co-authored-by: mtdxc <mtdxc@126.com> Co-authored-by: cqm <cqm@97kid.com>
39 lines
1.3 KiB
C++
39 lines
1.3 KiB
C++
/*
|
|
* Copyright (c) 2016-present The ZLMediaKit project authors. All Rights Reserved.
|
|
*
|
|
* This file is part of ZLMediaKit(https://github.com/ZLMediaKit/ZLMediaKit).
|
|
*
|
|
* Use of this source code is governed by MIT-like license that can be found in the
|
|
* LICENSE file in the root of the source tree. All contributing project authors
|
|
* may be found in the AUTHORS file in the root of the source tree.
|
|
*/
|
|
|
|
#ifndef ZLMEDIAKIT_WEBRTCECHOTEST_H
|
|
#define ZLMEDIAKIT_WEBRTCECHOTEST_H
|
|
|
|
#include "WebRtcTransport.h"
|
|
|
|
namespace mediakit {
|
|
|
|
class WebRtcEchoTest : public WebRtcTransportImp {
|
|
public:
|
|
using Ptr = std::shared_ptr<WebRtcEchoTest>;
|
|
static Ptr create(const toolkit::EventPoller::Ptr &poller);
|
|
|
|
protected:
|
|
///////WebRtcTransportImp override///////
|
|
void onRtcConfigure(RtcConfigure &configure) const override;
|
|
void onCheckSdp(SdpType type, RtcSession &sdp) override;
|
|
void onRtp(const char *buf, size_t len, uint64_t stamp_ms) override;
|
|
void onRtcp(const char *buf, size_t len) override;
|
|
|
|
void onBeforeEncryptRtp(const char *buf, int &len, void *ctx) override {};
|
|
void onBeforeEncryptRtcp(const char *buf, int &len, void *ctx) override {};
|
|
|
|
private:
|
|
WebRtcEchoTest(const toolkit::EventPoller::Ptr &poller);
|
|
};
|
|
|
|
}// namespace mediakit
|
|
#endif //ZLMEDIAKIT_WEBRTCECHOTEST_H
|