2019-12-05 19:20:12 +08:00
|
|
|
|
/*
|
2023-12-09 16:23:51 +08:00
|
|
|
|
* Copyright (c) 2016-present The ZLMediaKit project authors. All Rights Reserved.
|
2019-12-06 11:54:10 +08:00
|
|
|
|
*
|
2023-12-09 16:23:51 +08:00
|
|
|
|
* This file is part of ZLMediaKit(https://github.com/ZLMediaKit/ZLMediaKit).
|
2019-12-06 11:54:10 +08:00
|
|
|
|
*
|
2023-12-09 16:23:51 +08:00
|
|
|
|
* Use of this source code is governed by MIT-like license that can be found in the
|
2020-04-04 20:30:09 +08:00
|
|
|
|
* 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
|
|
|
|
|
2022-11-19 09:33:10 +08:00
|
|
|
|
#include "Network/Session.h"
|
2019-12-05 19:20:12 +08:00
|
|
|
|
#include "RtpSplitter.h"
|
|
|
|
|
|
#include "RtpProcess.h"
|
|
|
|
|
|
#include "Util/TimeTicker.h"
|
|
|
|
|
|
|
2019-12-06 11:54:10 +08:00
|
|
|
|
namespace mediakit{
|
|
|
|
|
|
|
2024-06-09 10:52:10 +08:00
|
|
|
|
class RtpSession : public toolkit::Session, public RtpSplitter {
|
2019-12-05 19:20:12 +08:00
|
|
|
|
public:
|
2024-07-09 10:42:10 +08:00
|
|
|
|
static const std::string kVhost;
|
|
|
|
|
|
static const std::string kApp;
|
2022-02-02 20:34:50 +08:00
|
|
|
|
static const std::string kStreamID;
|
2022-04-16 15:12:49 +08:00
|
|
|
|
static const std::string kSSRC;
|
2024-03-05 17:06:31 +08:00
|
|
|
|
static const std::string kOnlyTrack;
|
2024-03-05 10:42:22 +08:00
|
|
|
|
static const std::string kUdpRecvBuffer;
|
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;
|
2023-01-07 22:36:30 +08:00
|
|
|
|
void setParams(toolkit::mINI &ini);
|
2022-02-02 20:34:50 +08:00
|
|
|
|
void attachServer(const toolkit::Server &server) override;
|
2024-06-09 10:52:10 +08:00
|
|
|
|
void setRtpProcess(RtpProcess::Ptr process);
|
2020-07-07 10:01:12 +08:00
|
|
|
|
|
2020-02-28 16:25:14 +08:00
|
|
|
|
protected:
|
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;
|
2023-11-10 21:53:43 +08:00
|
|
|
|
// 搜寻SSRC
|
|
|
|
|
|
const char *searchBySSRC(const char *data, size_t len);
|
|
|
|
|
|
// 搜寻PS包里的关键帧标头
|
|
|
|
|
|
const char *searchByPsHeaderFlag(const char *data, size_t len);
|
2021-04-22 22:02:21 +08:00
|
|
|
|
|
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;
|
2024-06-09 10:52:10 +08:00
|
|
|
|
bool _emit_detach = false;
|
2024-03-05 17:06:31 +08:00
|
|
|
|
int _only_track = 0;
|
2021-04-22 22:02:21 +08:00
|
|
|
|
uint32_t _ssrc = 0;
|
2022-02-02 20:34:50 +08:00
|
|
|
|
toolkit::Ticker _ticker;
|
2024-07-09 10:42:10 +08:00
|
|
|
|
MediaTuple _tuple;
|
2022-05-08 00:26:01 +08:00
|
|
|
|
struct sockaddr_storage _addr;
|
2020-10-24 23:33:13 +08:00
|
|
|
|
RtpProcess::Ptr _process;
|
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
|