ZLMediaKit/src/Rtp/RtpSession.h

56 lines
1.6 KiB
C++
Raw Normal View History

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
*
* 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)
2019-12-05 19:20:12 +08:00
#include "Network/TcpSession.h"
#include "RtpSplitter.h"
#include "RtpProcess.h"
#include "Util/TimeTicker.h"
using namespace toolkit;
2019-12-06 11:54:10 +08:00
namespace mediakit{
2020-02-28 16:25:14 +08:00
class RtpSession : public TcpSession , public RtpSplitter , public MediaSourceEvent{
2019-12-05 19:20:12 +08:00
public:
static const string kStreamID;
2019-12-05 19:20:12 +08:00
RtpSession(const Socket::Ptr &sock);
~RtpSession() override;
void onRecv(const Buffer::Ptr &) override;
void onError(const SockException &err) override;
void onManager() override;
2021-06-08 11:29:32 +08:00
void attachServer(const Server &server) override;
2020-02-28 16:25:14 +08:00
protected:
// 通知其停止推流
bool close(MediaSource &sender,bool force) override;
// 观看总人数
int totalReaderCount(MediaSource &sender) override;
2020-10-24 23:33:13 +08:00
// 收到rtp回调
void onRtpPacket(const char *data, size_t len) override;
const char *onSearchPacketTail(const char *data, size_t len) override;
2019-12-05 19:20:12 +08:00
private:
bool _search_rtp = false;
bool _search_rtp_finished = false;
uint32_t _ssrc = 0;
2019-12-05 19:20:12 +08:00
Ticker _ticker;
string _stream_id;
2020-10-24 23:33:13 +08:00
struct sockaddr addr;
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