HlsMaker.cpp 3.71 KB
Newer Older
xiongziliang committed
1
/*
xiongziliang committed
2
 * Copyright (c) 2016 The ZLMediaKit project authors. All Rights Reserved.
xiongziliang committed
3 4 5
 *
 * This file is part of ZLMediaKit(https://github.com/xiongziliang/ZLMediaKit).
 *
xiongziliang committed
6 7 8
 * 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.
xzl committed
9 10
 */

11
#include "HlsMaker.h"
xiongziliang committed
12
namespace mediakit {
xzl committed
13

14
HlsMaker::HlsMaker(float seg_duration, uint32_t seg_number) {
xiongziliang committed
15 16
    //最小允许设置为0,0个切片代表点播
    seg_number = MAX(0,seg_number);
17 18 19
    seg_duration = MAX(1,seg_duration);
    _seg_number = seg_number;
    _seg_duration = seg_duration;
xzl committed
20 21
}

22
HlsMaker::~HlsMaker() {
xzl committed
23 24
}

25 26

void HlsMaker::makeIndexFile(bool eof) {
xiongziliang committed
27
    char file_content[1024];
xiongziliang committed
28
    int maxSegmentDuration = 0;
29

30 31 32
    for (auto &tp : _seg_dur_list) {
        int dur = std::get<0>(tp);
        if (dur > maxSegmentDuration) {
xiongziliang committed
33 34 35
            maxSegmentDuration = dur;
        }
    }
xiongziliang committed
36 37 38 39

    string m3u8;
    snprintf(file_content,sizeof(file_content),
          "#EXTM3U\n"
40 41 42 43 44
          "#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,
45
          _seg_number ? _file_index : 0);
46

xiongziliang committed
47 48
    m3u8.assign(file_content);

49
    for (auto &tp : _seg_dur_list) {
xiongziliang committed
50 51
        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);
xiongziliang committed
52
    }
53

54
    if (eof) {
xiongziliang committed
55 56
        snprintf(file_content,sizeof(file_content),"#EXT-X-ENDLIST\n");
        m3u8.append(file_content);
57
    }
xiongziliang committed
58
    onWriteHls(m3u8.data(), m3u8.size());
xzl committed
59 60 61
}


62
void HlsMaker::inputData(void *data, uint32_t len, uint32_t timestamp, bool is_idr_fast_packet) {
63
    if (data && len) {
64 65 66
        if(is_idr_fast_packet){
            addNewSegment(timestamp);
        }
xiongziliang committed
67 68 69
        onWriteSegment((char *) data, len);
        //记录上次写入数据时间
        _ticker_last_data.resetTime();
xiongziliang committed
70
    } else {
71
        //resetTracks时触发此逻辑
xiongziliang committed
72
        flushLastSegment(true);
73
    }
xzl committed
74 75
}

xiongziliang committed
76
void HlsMaker::delOldSegment() {
xiongziliang committed
77 78 79 80
    if(_seg_number == 0){
        //如果设置为保留0个切片,则认为是保存为点播
        return;
    }
81
    //在hls m3u8索引文件中,我们保存的切片个数跟_seg_number相关设置一致
82
    if (_file_index > _seg_number) {
83 84
        _seg_dur_list.pop_front();
    }
85

86 87 88 89
    GET_CONFIG(uint32_t,segRetain,Hls::kSegmentRetain);
    //但是实际保存的切片个数比m3u8所述多若干个,这样做的目的是防止播放器在切片删除前能下载完毕
    if (_file_index > _seg_number + segRetain) {
        onDelSegment(_file_index - _seg_number - segRetain - 1);
90
    }
91 92
}

xiongziliang committed
93 94 95 96
void HlsMaker::addNewSegment(uint32_t) {
    if(!_last_file_name.empty() && _ticker.elapsedTime() < _seg_duration * 1000){
        //存在上个切片,并且未到分片时间
        return;
97
    }
xiongziliang committed
98

99 100
    //关闭并保存上一个切片,如果_seg_number==0,那么是点播。
    flushLastSegment(_seg_number == 0);
xiongziliang committed
101 102 103 104 105 106 107 108 109 110 111 112 113 114 115
    //新增切片
    _last_file_name = onOpenSegment(_file_index++);
    //重置切片计时器
    _ticker.resetTime();
}

void HlsMaker::flushLastSegment(bool eof){
    if(_last_file_name.empty()){
        //不存在上个切片
        return;
    }
    //文件创建到最后一次数据写入的时间即为切片长度
    auto seg_dur = _ticker.elapsedTime() - _ticker_last_data.elapsedTime();
    if(seg_dur <= 0){
        seg_dur = 100;
116
    }
xiongziliang committed
117 118 119 120
    _seg_dur_list.push_back(std::make_tuple(seg_dur, _last_file_name));
    delOldSegment();
    makeIndexFile(eof);
    _last_file_name.clear();
121
}
xzl committed
122

xiongziliang committed
123 124 125 126
bool HlsMaker::isLive() {
    return _seg_number != 0;
}

127
}//namespace mediakit