2018-03-20 11:28:13 +08:00
|
|
|
|
/*
|
2020-04-04 20:30:09 +08:00
|
|
|
|
* Copyright (c) 2016 The ZLMediaKit project authors. All Rights Reserved.
|
2018-02-02 18:19:35 +08:00
|
|
|
|
*
|
|
|
|
|
* This file is part of ZLMediaKit(https://github.com/xiongziliang/ZLMediaKit).
|
|
|
|
|
*
|
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.
|
2018-02-02 18:19:35 +08:00
|
|
|
|
*/
|
|
|
|
|
|
|
|
|
|
#ifndef ZLMEDIAKIT_MEDIASOURCE_H
|
|
|
|
|
#define ZLMEDIAKIT_MEDIASOURCE_H
|
|
|
|
|
|
|
|
|
|
#include <mutex>
|
|
|
|
|
#include <string>
|
|
|
|
|
#include <memory>
|
|
|
|
|
#include <functional>
|
|
|
|
|
#include <unordered_map>
|
|
|
|
|
#include "Common/config.h"
|
2019-06-28 16:48:02 +08:00
|
|
|
|
#include "Common/Parser.h"
|
2018-02-02 18:19:35 +08:00
|
|
|
|
#include "Util/logger.h"
|
|
|
|
|
#include "Util/TimeTicker.h"
|
|
|
|
|
#include "Util/NoticeCenter.h"
|
2020-04-09 16:19:03 +08:00
|
|
|
|
#include "Util/List.h"
|
2020-09-27 11:32:49 +08:00
|
|
|
|
#include "Network/Socket.h"
|
2020-04-09 16:19:03 +08:00
|
|
|
|
#include "Rtsp/Rtsp.h"
|
|
|
|
|
#include "Rtmp/Rtmp.h"
|
2019-06-28 16:48:02 +08:00
|
|
|
|
#include "Extension/Track.h"
|
2020-04-05 09:26:29 +08:00
|
|
|
|
#include "Record/Recorder.h"
|
2018-02-02 18:19:35 +08:00
|
|
|
|
|
|
|
|
|
using namespace std;
|
2018-10-24 17:17:55 +08:00
|
|
|
|
using namespace toolkit;
|
2018-02-02 18:19:35 +08:00
|
|
|
|
|
2019-05-27 22:32:07 +08:00
|
|
|
|
namespace toolkit{
|
|
|
|
|
class TcpSession;
|
2019-12-03 16:10:02 +08:00
|
|
|
|
}// namespace toolkit
|
2019-05-27 22:32:07 +08:00
|
|
|
|
|
2018-10-24 17:17:55 +08:00
|
|
|
|
namespace mediakit {
|
2018-02-02 18:19:35 +08:00
|
|
|
|
|
2020-09-27 11:32:49 +08:00
|
|
|
|
enum class MediaOriginType : uint8_t {
|
|
|
|
|
unknown = 0,
|
|
|
|
|
rtmp_push ,
|
|
|
|
|
rtsp_push,
|
|
|
|
|
rtp_push,
|
|
|
|
|
pull,
|
|
|
|
|
ffmpeg_pull,
|
|
|
|
|
mp4_vod,
|
|
|
|
|
device_chn
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
string getOriginTypeString(MediaOriginType type);
|
|
|
|
|
|
2019-05-27 18:39:43 +08:00
|
|
|
|
class MediaSource;
|
|
|
|
|
class MediaSourceEvent{
|
2018-02-02 18:19:35 +08:00
|
|
|
|
public:
|
2020-03-23 10:21:17 +08:00
|
|
|
|
friend class MediaSource;
|
2018-02-02 18:19:35 +08:00
|
|
|
|
MediaSourceEvent(){};
|
|
|
|
|
virtual ~MediaSourceEvent(){};
|
2019-12-03 16:10:02 +08:00
|
|
|
|
|
2020-09-27 11:32:49 +08:00
|
|
|
|
// 获取媒体源类型
|
|
|
|
|
virtual MediaOriginType getOriginType(MediaSource &sender) const { return MediaOriginType::unknown; }
|
|
|
|
|
// 获取媒体源url或者文件路径
|
|
|
|
|
virtual string getOriginUrl(MediaSource &sender) const { return ""; }
|
|
|
|
|
// 获取媒体源客户端相关信息
|
|
|
|
|
virtual std::shared_ptr<SockInfo> getOriginSock(MediaSource &sender) const { return nullptr; }
|
|
|
|
|
|
2019-12-03 16:10:02 +08:00
|
|
|
|
// 通知拖动进度条
|
2020-09-06 17:52:07 +08:00
|
|
|
|
virtual bool seekTo(MediaSource &sender, uint32_t stamp) { return false; }
|
|
|
|
|
// 通知其停止产生流
|
|
|
|
|
virtual bool close(MediaSource &sender, bool force) { return false; }
|
|
|
|
|
// 获取观看总人数
|
2019-12-28 16:48:11 +08:00
|
|
|
|
virtual int totalReaderCount(MediaSource &sender) = 0;
|
2020-09-12 19:09:56 +08:00
|
|
|
|
// 通知观看人数变化
|
|
|
|
|
virtual void onReaderChanged(MediaSource &sender, int size);
|
2020-07-02 18:14:39 +08:00
|
|
|
|
//流注册或注销事件
|
|
|
|
|
virtual void onRegist(MediaSource &sender, bool regist) {};
|
2020-06-19 10:19:42 +08:00
|
|
|
|
|
2020-09-06 17:52:07 +08:00
|
|
|
|
////////////////////////仅供MultiMediaSourceMuxer对象继承////////////////////////
|
|
|
|
|
// 开启或关闭录制
|
|
|
|
|
virtual bool setupRecord(MediaSource &sender, Recorder::type type, bool start, const string &custom_path) { return false; };
|
|
|
|
|
// 获取录制状态
|
|
|
|
|
virtual bool isRecording(MediaSource &sender, Recorder::type type) { return false; };
|
2020-09-06 17:54:52 +08:00
|
|
|
|
// 获取所有track相关信息
|
|
|
|
|
virtual vector<Track::Ptr> getTracks(MediaSource &sender, bool trackReady = true) const { return vector<Track::Ptr>(); };
|
2020-09-06 17:56:05 +08:00
|
|
|
|
// 开始发送ps-rtp
|
2020-12-27 18:41:53 +08:00
|
|
|
|
virtual void startSendRtp(MediaSource &sender, const string &dst_url, uint16_t dst_port, const string &ssrc, bool is_udp, uint16_t src_port, const function<void(const SockException &ex)> &cb) { cb(SockException(Err_other, "not implemented"));};
|
2020-09-06 17:56:05 +08:00
|
|
|
|
// 停止发送ps-rtp
|
2020-12-27 18:41:53 +08:00
|
|
|
|
virtual bool stopSendRtp(MediaSource &sender, const string &ssrc) {return false; }
|
2020-09-06 17:52:07 +08:00
|
|
|
|
|
2020-03-23 10:21:17 +08:00
|
|
|
|
private:
|
|
|
|
|
Timer::Ptr _async_close_timer;
|
2018-02-02 18:19:35 +08:00
|
|
|
|
};
|
2019-05-27 18:39:43 +08:00
|
|
|
|
|
2020-09-06 17:52:07 +08:00
|
|
|
|
//该对象用于拦截感兴趣的MediaSourceEvent事件
|
|
|
|
|
class MediaSourceEventInterceptor : public MediaSourceEvent{
|
|
|
|
|
public:
|
|
|
|
|
MediaSourceEventInterceptor(){}
|
|
|
|
|
~MediaSourceEventInterceptor() override {}
|
|
|
|
|
|
2020-10-24 23:31:58 +08:00
|
|
|
|
void setDelegate(const std::weak_ptr<MediaSourceEvent> &listener);
|
|
|
|
|
std::shared_ptr<MediaSourceEvent> getDelegate() const;
|
|
|
|
|
|
2020-09-27 11:32:49 +08:00
|
|
|
|
MediaOriginType getOriginType(MediaSource &sender) const override;
|
|
|
|
|
string getOriginUrl(MediaSource &sender) const override;
|
|
|
|
|
std::shared_ptr<SockInfo> getOriginSock(MediaSource &sender) const override;
|
|
|
|
|
|
2020-09-06 17:52:07 +08:00
|
|
|
|
bool seekTo(MediaSource &sender, uint32_t stamp) override;
|
|
|
|
|
bool close(MediaSource &sender, bool force) override;
|
|
|
|
|
int totalReaderCount(MediaSource &sender) override;
|
2020-09-12 19:09:56 +08:00
|
|
|
|
void onReaderChanged(MediaSource &sender, int size) override;
|
2020-09-06 17:54:52 +08:00
|
|
|
|
void onRegist(MediaSource &sender, bool regist) override;
|
2020-09-06 17:52:07 +08:00
|
|
|
|
bool setupRecord(MediaSource &sender, Recorder::type type, bool start, const string &custom_path) override;
|
|
|
|
|
bool isRecording(MediaSource &sender, Recorder::type type) override;
|
2020-09-06 17:54:52 +08:00
|
|
|
|
vector<Track::Ptr> getTracks(MediaSource &sender, bool trackReady = true) const override;
|
2020-12-27 18:41:53 +08:00
|
|
|
|
void startSendRtp(MediaSource &sender, const string &dst_url, uint16_t dst_port, const string &ssrc, bool is_udp, uint16_t src_port, const function<void(const SockException &ex)> &cb) override;
|
|
|
|
|
bool stopSendRtp(MediaSource &sender, const string &ssrc) override;
|
2020-09-06 17:52:07 +08:00
|
|
|
|
|
2020-10-24 23:31:58 +08:00
|
|
|
|
private:
|
2020-09-06 17:52:07 +08:00
|
|
|
|
std::weak_ptr<MediaSourceEvent> _listener;
|
|
|
|
|
};
|
|
|
|
|
|
2019-12-29 10:49:04 +08:00
|
|
|
|
/**
|
|
|
|
|
* 解析url获取媒体相关信息
|
|
|
|
|
*/
|
2019-05-27 18:39:43 +08:00
|
|
|
|
class MediaInfo{
|
2018-02-02 18:19:35 +08:00
|
|
|
|
public:
|
2020-09-06 17:52:07 +08:00
|
|
|
|
~MediaInfo() {}
|
|
|
|
|
MediaInfo() {}
|
|
|
|
|
MediaInfo(const string &url) { parse(url); }
|
2018-02-02 18:19:35 +08:00
|
|
|
|
void parse(const string &url);
|
2020-09-06 17:52:07 +08:00
|
|
|
|
|
2018-02-02 18:19:35 +08:00
|
|
|
|
public:
|
2020-09-27 11:32:49 +08:00
|
|
|
|
string _full_url;
|
2018-10-24 15:43:52 +08:00
|
|
|
|
string _schema;
|
|
|
|
|
string _host;
|
|
|
|
|
string _port;
|
|
|
|
|
string _vhost;
|
|
|
|
|
string _app;
|
|
|
|
|
string _streamid;
|
2018-10-25 17:39:19 +08:00
|
|
|
|
string _param_strs;
|
2018-02-02 18:19:35 +08:00
|
|
|
|
};
|
|
|
|
|
|
2020-10-01 11:02:00 +08:00
|
|
|
|
class BytesSpeed {
|
|
|
|
|
public:
|
|
|
|
|
BytesSpeed() = default;
|
|
|
|
|
~BytesSpeed() = default;
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* 添加统计字节
|
|
|
|
|
*/
|
|
|
|
|
BytesSpeed& operator += (uint64_t bytes) {
|
|
|
|
|
_bytes += bytes;
|
|
|
|
|
if (_bytes > 1024 * 1024) {
|
|
|
|
|
//数据大于1MB就计算一次网速
|
|
|
|
|
computeSpeed();
|
|
|
|
|
}
|
|
|
|
|
return *this;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* 获取速度,单位bytes/s
|
|
|
|
|
*/
|
|
|
|
|
int getSpeed() {
|
|
|
|
|
if (_ticker.elapsedTime() < 1000) {
|
|
|
|
|
//获取频率小于1秒,那么返回上次计算结果
|
|
|
|
|
return _speed;
|
|
|
|
|
}
|
|
|
|
|
return computeSpeed();
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
private:
|
|
|
|
|
uint64_t computeSpeed() {
|
|
|
|
|
auto elapsed = _ticker.elapsedTime();
|
|
|
|
|
if (!elapsed) {
|
|
|
|
|
return _speed;
|
|
|
|
|
}
|
|
|
|
|
_speed = _bytes * 1000 / elapsed;
|
|
|
|
|
_ticker.resetTime();
|
|
|
|
|
_bytes = 0;
|
|
|
|
|
return _speed;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
private:
|
|
|
|
|
int _speed = 0;
|
|
|
|
|
uint64_t _bytes = 0;
|
|
|
|
|
Ticker _ticker;
|
|
|
|
|
};
|
|
|
|
|
|
2019-12-03 16:10:02 +08:00
|
|
|
|
/**
|
|
|
|
|
* 媒体源,任何rtsp/rtmp的直播流都源自该对象
|
|
|
|
|
*/
|
2019-12-03 12:32:57 +08:00
|
|
|
|
class MediaSource: public TrackSource, public enable_shared_from_this<MediaSource> {
|
2018-02-02 18:19:35 +08:00
|
|
|
|
public:
|
|
|
|
|
typedef std::shared_ptr<MediaSource> Ptr;
|
|
|
|
|
typedef unordered_map<string, weak_ptr<MediaSource> > StreamMap;
|
|
|
|
|
typedef unordered_map<string, StreamMap > AppStreamMap;
|
|
|
|
|
typedef unordered_map<string, AppStreamMap > VhostAppStreamMap;
|
|
|
|
|
typedef unordered_map<string, VhostAppStreamMap > SchemaVhostAppStreamMap;
|
|
|
|
|
|
2020-09-06 17:52:07 +08:00
|
|
|
|
MediaSource(const string &schema, const string &vhost, const string &app, const string &stream_id) ;
|
2019-12-03 16:10:02 +08:00
|
|
|
|
virtual ~MediaSource() ;
|
|
|
|
|
|
2020-09-06 17:54:52 +08:00
|
|
|
|
////////////////获取MediaSource相关信息////////////////
|
|
|
|
|
|
2019-12-03 16:10:02 +08:00
|
|
|
|
// 获取协议类型
|
|
|
|
|
const string& getSchema() const;
|
|
|
|
|
// 虚拟主机
|
|
|
|
|
const string& getVhost() const;
|
|
|
|
|
// 应用名
|
|
|
|
|
const string& getApp() const;
|
|
|
|
|
// 流id
|
|
|
|
|
const string& getId() const;
|
|
|
|
|
|
2019-12-29 10:49:04 +08:00
|
|
|
|
// 获取所有Track
|
2020-09-06 17:52:07 +08:00
|
|
|
|
vector<Track::Ptr> getTracks(bool ready = true) const override;
|
2019-12-29 10:49:04 +08:00
|
|
|
|
|
2020-09-06 17:54:52 +08:00
|
|
|
|
// 获取流当前时间戳
|
|
|
|
|
virtual uint32_t getTimeStamp(TrackType type) { return 0; };
|
|
|
|
|
// 设置时间戳
|
|
|
|
|
virtual void setTimeStamp(uint32_t stamp) {};
|
|
|
|
|
|
2020-10-01 11:02:00 +08:00
|
|
|
|
// 获取数据速率,单位bytes/s
|
2020-12-05 12:22:17 +08:00
|
|
|
|
int getBytesSpeed(TrackType type = TrackInvalid);
|
2020-10-01 18:57:15 +08:00
|
|
|
|
// 获取流创建GMT unix时间戳,单位秒
|
|
|
|
|
uint64_t getCreateStamp() const;
|
|
|
|
|
// 获取流上线时间,单位秒
|
|
|
|
|
uint64_t getAliveSecond() const;
|
2020-10-01 11:02:00 +08:00
|
|
|
|
|
2020-09-06 17:54:52 +08:00
|
|
|
|
////////////////MediaSourceEvent相关接口实现////////////////
|
|
|
|
|
|
2019-12-03 16:10:02 +08:00
|
|
|
|
// 设置监听者
|
2020-10-24 23:31:58 +08:00
|
|
|
|
virtual void setListener(const std::weak_ptr<MediaSourceEvent> &listener);
|
2019-12-29 10:49:04 +08:00
|
|
|
|
// 获取监听者
|
2020-10-24 23:31:58 +08:00
|
|
|
|
std::weak_ptr<MediaSourceEvent> getListener(bool next = false) const;
|
2019-12-29 10:49:04 +08:00
|
|
|
|
|
2019-12-28 16:48:11 +08:00
|
|
|
|
// 本协议获取观看者个数,可能返回本协议的观看人数,也可能返回总人数
|
2019-12-03 16:10:02 +08:00
|
|
|
|
virtual int readerCount() = 0;
|
2019-12-28 16:48:11 +08:00
|
|
|
|
// 观看者个数,包括(hls/rtsp/rtmp)
|
|
|
|
|
virtual int totalReaderCount();
|
2019-12-29 10:49:04 +08:00
|
|
|
|
|
2020-09-27 11:32:49 +08:00
|
|
|
|
// 获取媒体源类型
|
|
|
|
|
MediaOriginType getOriginType() const;
|
|
|
|
|
// 获取媒体源url或者文件路径
|
|
|
|
|
string getOriginUrl() const;
|
|
|
|
|
// 获取媒体源客户端相关信息
|
|
|
|
|
std::shared_ptr<SockInfo> getOriginSock() const;
|
|
|
|
|
|
2019-12-03 16:10:02 +08:00
|
|
|
|
// 拖动进度条
|
2020-09-06 17:52:07 +08:00
|
|
|
|
bool seekTo(uint32_t stamp);
|
2019-12-03 16:10:02 +08:00
|
|
|
|
// 关闭该流
|
|
|
|
|
bool close(bool force);
|
2020-09-12 19:09:56 +08:00
|
|
|
|
// 该流观看人数变化
|
|
|
|
|
void onReaderChanged(int size);
|
2020-04-05 09:26:29 +08:00
|
|
|
|
// 开启或关闭录制
|
2020-09-06 17:52:33 +08:00
|
|
|
|
bool setupRecord(Recorder::type type, bool start, const string &custom_path);
|
2020-04-05 09:26:29 +08:00
|
|
|
|
// 获取录制状态
|
2020-09-06 17:52:33 +08:00
|
|
|
|
bool isRecording(Recorder::type type);
|
2020-09-06 17:56:05 +08:00
|
|
|
|
// 开始发送ps-rtp
|
2020-12-27 18:41:53 +08:00
|
|
|
|
void startSendRtp(const string &dst_url, uint16_t dst_port, const string &ssrc, bool is_udp, uint16_t src_port, const function<void(const SockException &ex)> &cb);
|
2020-09-06 17:56:05 +08:00
|
|
|
|
// 停止发送ps-rtp
|
2020-12-27 18:41:53 +08:00
|
|
|
|
bool stopSendRtp(const string &ssrc);
|
2019-11-18 12:07:11 +08:00
|
|
|
|
|
2020-09-06 17:54:52 +08:00
|
|
|
|
////////////////static方法,查找或生成MediaSource////////////////
|
|
|
|
|
|
2019-12-03 16:10:02 +08:00
|
|
|
|
// 同步查找流
|
2020-05-26 10:11:58 +08:00
|
|
|
|
static Ptr find(const string &schema, const string &vhost, const string &app, const string &id);
|
2020-09-06 18:19:54 +08:00
|
|
|
|
|
|
|
|
|
// 忽略类型,同步查找流,可能返回rtmp/rtsp/hls类型
|
|
|
|
|
static Ptr find(const string &vhost, const string &app, const string &stream_id);
|
|
|
|
|
|
2019-12-03 16:10:02 +08:00
|
|
|
|
// 异步查找流
|
|
|
|
|
static void findAsync(const MediaInfo &info, const std::shared_ptr<TcpSession> &session, const function<void(const Ptr &src)> &cb);
|
|
|
|
|
// 遍历所有流
|
|
|
|
|
static void for_each_media(const function<void(const Ptr &src)> &cb);
|
2020-04-03 23:27:16 +08:00
|
|
|
|
// 从mp4文件生成MediaSource
|
2020-09-06 17:52:07 +08:00
|
|
|
|
static MediaSource::Ptr createFromMP4(const string &schema, const string &vhost, const string &app, const string &stream, const string &file_path = "", bool check_app = true);
|
2020-05-26 10:11:58 +08:00
|
|
|
|
|
2018-08-31 14:13:00 +08:00
|
|
|
|
protected:
|
2020-09-06 17:52:07 +08:00
|
|
|
|
//媒体注册
|
|
|
|
|
void regist();
|
2020-05-26 10:11:58 +08:00
|
|
|
|
|
|
|
|
|
private:
|
2020-09-06 17:52:07 +08:00
|
|
|
|
//媒体注销
|
|
|
|
|
bool unregist();
|
|
|
|
|
//触发媒体事件
|
|
|
|
|
void emitEvent(bool regist);
|
|
|
|
|
|
2020-10-01 11:02:00 +08:00
|
|
|
|
protected:
|
2020-12-05 12:22:17 +08:00
|
|
|
|
BytesSpeed _speed[TrackMax];
|
2020-10-01 11:02:00 +08:00
|
|
|
|
|
2018-02-02 18:19:35 +08:00
|
|
|
|
private:
|
2020-10-01 18:57:15 +08:00
|
|
|
|
time_t _create_stamp;
|
|
|
|
|
Ticker _ticker;
|
2020-09-06 17:52:07 +08:00
|
|
|
|
string _schema;
|
|
|
|
|
string _vhost;
|
|
|
|
|
string _app;
|
|
|
|
|
string _stream_id;
|
|
|
|
|
std::weak_ptr<MediaSourceEvent> _listener;
|
2018-02-02 18:19:35 +08:00
|
|
|
|
};
|
|
|
|
|
|
2020-04-09 16:19:03 +08:00
|
|
|
|
///缓存刷新策略类
|
|
|
|
|
class FlushPolicy {
|
|
|
|
|
public:
|
2020-05-27 11:09:02 +08:00
|
|
|
|
FlushPolicy() = default;
|
2020-04-09 16:19:03 +08:00
|
|
|
|
~FlushPolicy() = default;
|
|
|
|
|
|
2020-10-24 23:28:25 +08:00
|
|
|
|
bool isFlushAble(bool is_video, bool is_key, uint64_t new_stamp, int cache_size);
|
2020-05-27 11:09:02 +08:00
|
|
|
|
|
2020-04-09 16:19:03 +08:00
|
|
|
|
private:
|
2020-10-24 23:28:25 +08:00
|
|
|
|
uint64_t _last_stamp[2] = {0, 0};
|
2020-04-09 16:19:03 +08:00
|
|
|
|
};
|
|
|
|
|
|
2020-05-27 11:09:02 +08:00
|
|
|
|
/// 合并写缓存模板
|
2020-04-09 16:19:03 +08:00
|
|
|
|
/// \tparam packet 包类型
|
|
|
|
|
/// \tparam policy 刷新缓存策略
|
|
|
|
|
/// \tparam packet_list 包缓存类型
|
|
|
|
|
template<typename packet, typename policy = FlushPolicy, typename packet_list = List<std::shared_ptr<packet> > >
|
2020-05-27 11:09:02 +08:00
|
|
|
|
class PacketCache {
|
2020-04-09 16:19:03 +08:00
|
|
|
|
public:
|
2020-05-27 11:09:02 +08:00
|
|
|
|
PacketCache(){
|
2020-04-09 16:19:03 +08:00
|
|
|
|
_cache = std::make_shared<packet_list>();
|
|
|
|
|
}
|
|
|
|
|
|
2020-05-27 11:09:02 +08:00
|
|
|
|
virtual ~PacketCache() = default;
|
2020-04-09 16:19:03 +08:00
|
|
|
|
|
2020-10-24 23:28:25 +08:00
|
|
|
|
void inputPacket(uint64_t stamp, bool is_video, std::shared_ptr<packet> pkt, bool key_pos) {
|
|
|
|
|
if (_policy.isFlushAble(is_video, key_pos, stamp, _cache->size())) {
|
2020-04-09 16:19:03 +08:00
|
|
|
|
flushAll();
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
//追加数据到最后
|
2020-10-10 18:23:25 +08:00
|
|
|
|
_cache->emplace_back(std::move(pkt));
|
2020-04-09 16:19:03 +08:00
|
|
|
|
if (key_pos) {
|
|
|
|
|
_key_pos = key_pos;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
2020-09-12 19:09:56 +08:00
|
|
|
|
virtual void clearCache() {
|
|
|
|
|
_cache->clear();
|
|
|
|
|
}
|
|
|
|
|
|
2020-10-10 18:23:25 +08:00
|
|
|
|
virtual void onFlush(std::shared_ptr<packet_list>, bool key_pos) = 0;
|
2020-04-09 16:19:03 +08:00
|
|
|
|
|
|
|
|
|
private:
|
|
|
|
|
void flushAll() {
|
|
|
|
|
if (_cache->empty()) {
|
|
|
|
|
return;
|
|
|
|
|
}
|
2020-10-10 18:23:25 +08:00
|
|
|
|
onFlush(std::move(_cache), _key_pos);
|
2020-04-09 16:19:03 +08:00
|
|
|
|
_cache = std::make_shared<packet_list>();
|
|
|
|
|
_key_pos = false;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
private:
|
2020-09-06 17:52:07 +08:00
|
|
|
|
bool _key_pos = false;
|
2020-04-09 16:19:03 +08:00
|
|
|
|
policy _policy;
|
|
|
|
|
std::shared_ptr<packet_list> _cache;
|
|
|
|
|
};
|
|
|
|
|
|
2018-10-24 17:17:55 +08:00
|
|
|
|
} /* namespace mediakit */
|
2020-05-27 11:09:02 +08:00
|
|
|
|
#endif //ZLMEDIAKIT_MEDIASOURCE_H
|