2019-12-05 19:20:12 +08:00
|
|
|
|
/*
|
2020-04-04 20:30:09 +08:00
|
|
|
|
* Copyright (c) 2016 The ZLMediaKit project authors. All Rights Reserved.
|
2019-12-06 11:54:10 +08:00
|
|
|
|
*
|
2021-01-17 18:31:50 +08:00
|
|
|
|
* This file is part of ZLMediaKit(https://github.com/xia-chu/ZLMediaKit).
|
2019-12-06 11:54:10 +08:00
|
|
|
|
*
|
2020-04-04 20:30:09 +08:00
|
|
|
|
* Use of this source code is governed by MIT 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.
|
2019-12-06 11:54:10 +08:00
|
|
|
|
*/
|
2019-12-05 19:20:12 +08:00
|
|
|
|
|
2019-12-06 11:54:10 +08:00
|
|
|
|
#ifndef ZLMEDIAKIT_RTPSESSION_H
|
|
|
|
|
|
#define ZLMEDIAKIT_RTPSESSION_H
|
2019-12-05 19:20:12 +08:00
|
|
|
|
|
2019-12-06 11:54:10 +08:00
|
|
|
|
#if defined(ENABLE_RTPPROXY)
|
2022-02-02 20:34:50 +08:00
|
|
|
|
|
2019-12-05 19:20:12 +08:00
|
|
|
|
#include "Network/TcpSession.h"
|
|
|
|
|
|
#include "RtpSplitter.h"
|
|
|
|
|
|
#include "RtpProcess.h"
|
|
|
|
|
|
#include "Util/TimeTicker.h"
|
|
|
|
|
|
|
2019-12-06 11:54:10 +08:00
|
|
|
|
namespace mediakit{
|
|
|
|
|
|
|
2022-02-02 20:34:50 +08:00
|
|
|
|
class RtpSession : public toolkit::Session, public RtpSplitter, public MediaSourceEvent {
|
2019-12-05 19:20:12 +08:00
|
|
|
|
public:
|
2022-02-02 20:34:50 +08:00
|
|
|
|
static const std::string kStreamID;
|
|
|
|
|
|
static const std::string kIsUDP;
|
2022-04-16 15:12:49 +08:00
|
|
|
|
static const std::string kSSRC;
|
2021-06-08 14:03:25 +08:00
|
|
|
|
|
2022-02-02 20:34:50 +08:00
|
|
|
|
RtpSession(const toolkit::Socket::Ptr &sock);
|
2019-12-05 19:20:12 +08:00
|
|
|
|
~RtpSession() override;
|
2022-02-02 20:34:50 +08:00
|
|
|
|
void onRecv(const toolkit::Buffer::Ptr &) override;
|
|
|
|
|
|
void onError(const toolkit::SockException &err) override;
|
2019-12-05 19:20:12 +08:00
|
|
|
|
void onManager() override;
|
2022-02-02 20:34:50 +08:00
|
|
|
|
void attachServer(const toolkit::Server &server) override;
|
2020-07-07 10:01:12 +08:00
|
|
|
|
|
2020-02-28 16:25:14 +08:00
|
|
|
|
protected:
|
|
|
|
|
|
// 通知其停止推流
|
2022-09-18 20:36:47 +08:00
|
|
|
|
bool close(MediaSource &sender) override;
|
2020-10-24 23:33:13 +08:00
|
|
|
|
// 收到rtp回调
|
2021-01-17 18:31:50 +08:00
|
|
|
|
void onRtpPacket(const char *data, size_t len) override;
|
2022-08-28 17:25:56 +08:00
|
|
|
|
// RtpSplitter override
|
2021-04-22 22:02:21 +08:00
|
|
|
|
const char *onSearchPacketTail(const char *data, size_t len) override;
|
|
|
|
|
|
|
2019-12-05 19:20:12 +08:00
|
|
|
|
private:
|
2021-06-08 14:03:25 +08:00
|
|
|
|
bool _is_udp = false;
|
2021-04-22 22:02:21 +08:00
|
|
|
|
bool _search_rtp = false;
|
|
|
|
|
|
bool _search_rtp_finished = false;
|
|
|
|
|
|
uint32_t _ssrc = 0;
|
2022-02-02 20:34:50 +08:00
|
|
|
|
toolkit::Ticker _ticker;
|
|
|
|
|
|
std::string _stream_id;
|
2022-05-08 00:26:01 +08:00
|
|
|
|
struct sockaddr_storage _addr;
|
2020-10-24 23:33:13 +08:00
|
|
|
|
RtpProcess::Ptr _process;
|
2022-02-02 20:34:50 +08:00
|
|
|
|
std::shared_ptr<toolkit::ObjectStatistic<toolkit::TcpSession> > _statistic_tcp;
|
|
|
|
|
|
std::shared_ptr<toolkit::ObjectStatistic<toolkit::UdpSession> > _statistic_udp;
|
2019-12-05 19:20:12 +08:00
|
|
|
|
};
|
|
|
|
|
|
|
2019-12-06 11:54:10 +08:00
|
|
|
|
}//namespace mediakit
|
|
|
|
|
|
#endif//defined(ENABLE_RTPPROXY)
|
|
|
|
|
|
#endif //ZLMEDIAKIT_RTPSESSION_H
|