HlsMaker.h 2.42 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 12
#ifndef HLSMAKER_H
#define HLSMAKER_H
xzl committed
13

14
#include <deque>
15 16
#include <tuple>
#include "Common/config.h"
xzl committed
17 18 19 20
#include "Util/TimeTicker.h"
#include "Util/File.h"
#include "Util/util.h"
#include "Util/logger.h"
xiongziliang committed
21
using namespace toolkit;
xiongzilaing committed
22

xiongziliang committed
23
namespace mediakit {
xzl committed
24

25
class HlsMaker {
xzl committed
26
public:
27 28 29 30 31 32
    /**
     * @param seg_duration 切片文件长度
     * @param seg_number 切片个数
     */
    HlsMaker(float seg_duration = 5, uint32_t seg_number = 3);
    virtual ~HlsMaker();
xzl committed
33

34 35 36 37 38
    /**
     * 写入ts数据
     * @param data 数据
     * @param len 数据长度
     * @param timestamp 毫秒时间戳
39
     * @param is_idr_fast_packet 是否为关键帧第一个包
40
     */
41
    void inputData(void *data, uint32_t len, uint32_t timestamp, bool is_idr_fast_packet);
42
protected:
43 44 45 46
    /**
     * 创建ts切片文件回调
     * @param index
     * @return
47
     */
xiongziliang committed
48
    virtual string onOpenSegment(int index) = 0;
49

50 51 52 53
    /**
     * 删除ts切片文件回调
     * @param index
     */
xiongziliang committed
54
    virtual void onDelSegment(int index) = 0;
xzl committed
55

56 57 58 59 60
    /**
     * 写ts切片文件回调
     * @param data
     * @param len
     */
xiongziliang committed
61
    virtual void onWriteSegment(const char *data, int len) = 0;
62

63 64 65 66 67 68
    /**
     * 写m3u8文件回调
     * @param data
     * @param len
     */
    virtual void onWriteHls(const char *data, int len) = 0;
xiongziliang committed
69 70

    /**
xiongziliang committed
71 72 73 74
     * 关闭上个ts切片并且写入m3u8索引
     * @param eof
     */
    void flushLastSegment(bool eof = false);
xiongziliang committed
75 76 77 78 79

    /**
     * 是否为直播
     */
    bool isLive();
xiongziliang committed
80 81
private:
    /**
xiongziliang committed
82 83 84 85
     * 生成m3u8文件
     * @param eof true代表点播
     */
    void makeIndexFile(bool eof = false);
xiongziliang committed
86 87 88 89 90 91 92 93 94 95 96

    /**
     * 删除旧的ts切片
     */
    void delOldSegment();

    /**
     * 添加新的ts切片
     * @param timestamp
     */
    void addNewSegment(uint32_t timestamp);
97
private:
xiongziliang committed
98
    uint32_t _seg_number = 0;
99 100
    float _seg_duration = 0;
    uint64_t _file_index = 0;
101
    Ticker _ticker;
xiongziliang committed
102
    Ticker _ticker_last_data;
103 104
    string _last_file_name;
    std::deque<tuple<int,string> > _seg_dur_list;
xzl committed
105 106
};

107 108
}//namespace mediakit
#endif //HLSMAKER_H