TsMuxer.h 1.86 KB
Newer Older
xiongziliang committed
1
/*
xiongziliang committed
2
 * Copyright (c) 2016 The ZLMediaKit project authors. All Rights Reserved.
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.
9 10 11 12 13 14 15 16 17
 */

#ifndef TSMUXER_H
#define TSMUXER_H

#include <unordered_map>
#include "Extension/Frame.h"
#include "Extension/Track.h"
#include "Util/File.h"
xiongziliang committed
18
#include "Common/MediaSink.h"
xiongziliang committed
19
#include "Common/Stamp.h"
20 21 22
using namespace toolkit;
namespace mediakit {

xiongziliang committed
23
//该类用于产生MPEG-TS
xiongziliang committed
24
class TsMuxer : public MediaSinkInterface {
25 26 27
public:
    TsMuxer();
    virtual ~TsMuxer();
xiongziliang committed
28 29 30 31

    /**
     * 添加音视频轨道
     */
32
    void addTrack(const Track::Ptr &track) override;
xiongziliang committed
33 34 35 36

    /**
     * 重置音视频轨道
     */
37
    void resetTracks() override;
xiongziliang committed
38 39 40 41

    /**
     * 输入帧数据
     */
42
    void inputFrame(const Frame::Ptr &frame) override;
xiongziliang committed
43

44
protected:
xiongziliang committed
45 46 47 48 49 50 51
    /**
     * 输出mpegts数据回调
     * @param packet mpegts数据
     * @param bytes mpegts数据长度
     * @param timestamp 时间戳,单位毫秒
     * @param is_idr_fast_packet 是否为关键帧的第一个TS包,用于确保ts切片第一帧为关键帧
     */
52
    virtual void onTs(const void *packet, int bytes,uint32_t timestamp,bool is_idr_fast_packet) = 0;
xiongziliang committed
53

54 55 56
private:
    void init();
    void uninit();
xiongziliang committed
57 58 59
    //音视频时间戳同步用
    void stampSync();

60
private:
xiongziliang committed
61 62
    void *_context = nullptr;
    char _tsbuf[188];
63
    uint32_t _timestamp = 0;
xiongziliang committed
64
    struct track_info {
65 66 67
        int track_id = -1;
        Stamp stamp;
    };
xiongziliang committed
68
    unordered_map<int, track_info> _codec_to_trackid;
69
    List<Frame::Ptr> _frameCached;
70 71
    bool _is_idr_fast_packet = false;
    bool _have_video = false;
72 73 74
};

}//namespace mediakit
xiongziliang committed
75
#endif //TSMUXER_H