mirror of
https://github.com/ZLMediaKit/ZLMediaKit.git
synced 2024-11-01 09:01:33 +08:00
133 lines
4.3 KiB
C++
133 lines
4.3 KiB
C++
/*
|
||
* MIT License
|
||
*
|
||
* Copyright (c) 2016-2019 xiongziliang <771730766@qq.com>
|
||
*
|
||
* This file is part of ZLMediaKit(https://github.com/xiongziliang/ZLMediaKit).
|
||
*
|
||
* Permission is hereby granted, free of charge, to any person obtaining a copy
|
||
* of this software and associated documentation files (the "Software"), to deal
|
||
* in the Software without restriction, including without limitation the rights
|
||
* to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
||
* copies of the Software, and to permit persons to whom the Software is
|
||
* furnished to do so, subject to the following conditions:
|
||
*
|
||
* The above copyright notice and this permission notice shall be included in all
|
||
* copies or substantial portions of the Software.
|
||
*
|
||
* THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
||
* IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
||
* FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
||
* AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
||
* LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
||
* OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
|
||
* SOFTWARE.
|
||
*/
|
||
|
||
#include "HlsMaker.h"
|
||
namespace mediakit {
|
||
|
||
HlsMaker::HlsMaker(float seg_duration, uint32_t seg_number) {
|
||
//最小允许设置为0,0个切片代表点播
|
||
seg_number = MAX(0,seg_number);
|
||
seg_duration = MAX(1,seg_duration);
|
||
_seg_number = seg_number;
|
||
_seg_duration = seg_duration;
|
||
}
|
||
|
||
HlsMaker::~HlsMaker() {
|
||
}
|
||
|
||
|
||
void HlsMaker::makeIndexFile(bool eof) {
|
||
char file_content[1024];
|
||
int maxSegmentDuration = 0;
|
||
|
||
//停止写之后将最后的片段也写进m3u8文件中
|
||
if (eof && _stampInc > 0) {
|
||
_seg_dur_list.push_back(std::make_tuple(_stampInc, _last_file_name));
|
||
}
|
||
|
||
for (auto &tp : _seg_dur_list) {
|
||
int dur = std::get<0>(tp);
|
||
if (dur > maxSegmentDuration) {
|
||
maxSegmentDuration = dur;
|
||
}
|
||
}
|
||
|
||
string m3u8;
|
||
snprintf(file_content,sizeof(file_content),
|
||
"#EXTM3U\n"
|
||
"#EXT-X-VERSION:3\n"
|
||
"#EXT-X-ALLOW-CACHE:NO\n"
|
||
"#EXT-X-TARGETDURATION:%u\n"
|
||
"#EXT-X-MEDIA-SEQUENCE:%llu\n",
|
||
(maxSegmentDuration + 999) / 1000,
|
||
_seg_number ? _file_index : 0);
|
||
|
||
m3u8.assign(file_content);
|
||
|
||
for (auto &tp : _seg_dur_list) {
|
||
snprintf(file_content,sizeof(file_content), "#EXTINF:%.3f,\n%s\n", std::get<0>(tp) / 1000.0, std::get<1>(tp).data());
|
||
m3u8.append(file_content);
|
||
}
|
||
|
||
if (eof) {
|
||
snprintf(file_content,sizeof(file_content),"#EXT-X-ENDLIST\n");
|
||
m3u8.append(file_content);
|
||
}
|
||
onWriteHls(m3u8.data(), m3u8.size());
|
||
}
|
||
|
||
|
||
void HlsMaker::inputData(void *data, uint32_t len, uint32_t timestamp) {
|
||
//分片数据中断结束
|
||
if (data && len) {
|
||
addNewFile(timestamp);
|
||
onWriteFile((char *) data, len);
|
||
} else {
|
||
_noData = true;
|
||
_stampInc = _ticker.elapsedTime();
|
||
_seg_dur_list.push_back(std::make_tuple(_stampInc, _last_file_name));
|
||
delOldFile();
|
||
makeIndexFile();
|
||
}
|
||
}
|
||
|
||
void HlsMaker::delOldFile() {
|
||
if(_seg_number == 0){
|
||
//如果设置为保留0个切片,则认为是保存为点播
|
||
return;
|
||
}
|
||
//在hls m3u8索引文件中,我们保存的切片个数跟_seg_number相关设置一致
|
||
if (_file_index >= _seg_number + 2) {
|
||
_seg_dur_list.pop_front();
|
||
}
|
||
|
||
//但是实际保存的切片个数比m3u8所述多两个,这样做的目的是防止播放器在切片删除前能下载完毕
|
||
if (_file_index >= _seg_number + 4) {
|
||
onDelFile(_file_index - _seg_number - 4);
|
||
}
|
||
}
|
||
|
||
void HlsMaker::addNewFile(uint32_t) {
|
||
//上次分片数据中断结束,重置时间避免中途的等待
|
||
if (_noData) {
|
||
_ticker.resetTime();
|
||
_last_file_name = onOpenFile(_file_index++);
|
||
_noData = false;
|
||
}
|
||
_stampInc = _ticker.elapsedTime();
|
||
if (_file_index == 0 || _stampInc >= _seg_duration * 1000) {
|
||
_ticker.resetTime();
|
||
auto file_name = onOpenFile(_file_index);
|
||
if (_file_index++ > 0) {
|
||
_seg_dur_list.push_back(std::make_tuple(_stampInc, _last_file_name));
|
||
delOldFile();
|
||
makeIndexFile();
|
||
}
|
||
_last_file_name = file_name;
|
||
}
|
||
}
|
||
|
||
}//namespace mediakit
|