mirror of
https://github.com/ZLMediaKit/ZLMediaKit.git
synced 2024-11-30 07:10:54 +08:00
754073918a
* 优化MultiMediaSourceMuxer头文件包含 * 将MediaSinkDelegate和Demux移到MediaSink中 * MediaSource头文件重构, 独立出PacketCache.h 精简Frame和Track的头文件 * Rtmp头文件重构 * Rtsp头文件重构 * webrtc头文件重构 * 规范.h头文件包含,并将其移到.cpp中: - 尽量不包含Common\config.h - Util\File.h - Rtsp/RtspPlayer.h - Rtmp/RtmpPlayer.h * 删除多余的Stamp.h和Base64包含
123 lines
2.7 KiB
C++
123 lines
2.7 KiB
C++
/*
|
|
* Copyright (c) 2016 The ZLMediaKit project authors. All Rights Reserved.
|
|
*
|
|
* This file is part of ZLMediaKit(https://github.com/xia-chu/ZLMediaKit).
|
|
*
|
|
* 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.
|
|
*/
|
|
|
|
#ifndef HLSMAKER_H
|
|
#define HLSMAKER_H
|
|
|
|
#include <string>
|
|
#include <deque>
|
|
#include <tuple>
|
|
|
|
namespace mediakit {
|
|
|
|
class HlsMaker {
|
|
public:
|
|
/**
|
|
* @param seg_duration 切片文件长度
|
|
* @param seg_number 切片个数
|
|
* @param seg_keep 是否保留切片文件
|
|
*/
|
|
HlsMaker(float seg_duration = 5, uint32_t seg_number = 3, bool seg_keep = false);
|
|
virtual ~HlsMaker();
|
|
|
|
/**
|
|
* 写入ts数据
|
|
* @param data 数据
|
|
* @param len 数据长度
|
|
* @param timestamp 毫秒时间戳
|
|
* @param is_idr_fast_packet 是否为关键帧第一个包
|
|
*/
|
|
void inputData(void *data, size_t len, uint64_t timestamp, bool is_idr_fast_packet);
|
|
|
|
/**
|
|
* 是否为直播
|
|
*/
|
|
bool isLive();
|
|
|
|
/**
|
|
* 是否保留切片文件
|
|
*/
|
|
bool isKeep();
|
|
|
|
/**
|
|
* 清空记录
|
|
*/
|
|
void clear();
|
|
|
|
protected:
|
|
/**
|
|
* 创建ts切片文件回调
|
|
* @param index
|
|
* @return
|
|
*/
|
|
virtual std::string onOpenSegment(uint64_t index) = 0;
|
|
|
|
/**
|
|
* 删除ts切片文件回调
|
|
* @param index
|
|
*/
|
|
virtual void onDelSegment(uint64_t index) = 0;
|
|
|
|
/**
|
|
* 写ts切片文件回调
|
|
* @param data
|
|
* @param len
|
|
*/
|
|
virtual void onWriteSegment(const char *data, size_t len) = 0;
|
|
|
|
/**
|
|
* 写m3u8文件回调
|
|
*/
|
|
virtual void onWriteHls(const std::string &data) = 0;
|
|
|
|
/**
|
|
* 上一个 ts 切片写入完成, 可在这里进行通知处理
|
|
* @param duration_ms 上一个 ts 切片的时长, 单位为毫秒
|
|
*/
|
|
virtual void onFlushLastSegment(uint64_t duration_ms) {};
|
|
|
|
/**
|
|
* 关闭上个ts切片并且写入m3u8索引
|
|
* @param eof HLS直播是否已结束
|
|
*/
|
|
void flushLastSegment(bool eof);
|
|
|
|
private:
|
|
/**
|
|
* 生成m3u8文件
|
|
* @param eof true代表点播
|
|
*/
|
|
void makeIndexFile(bool eof = false);
|
|
|
|
/**
|
|
* 删除旧的ts切片
|
|
*/
|
|
void delOldSegment();
|
|
|
|
/**
|
|
* 添加新的ts切片
|
|
* @param timestamp
|
|
*/
|
|
void addNewSegment(uint64_t timestamp);
|
|
|
|
private:
|
|
float _seg_duration = 0;
|
|
uint32_t _seg_number = 0;
|
|
bool _seg_keep = false;
|
|
uint64_t _last_timestamp = 0;
|
|
uint64_t _last_seg_timestamp = 0;
|
|
uint64_t _file_index = 0;
|
|
std::string _last_file_name;
|
|
std::deque<std::tuple<int,std::string> > _seg_dur_list;
|
|
};
|
|
|
|
}//namespace mediakit
|
|
#endif //HLSMAKER_H
|