PSEncoder.h 2.07 KB
Newer Older
xiongziliang committed
1
/*
2 3
 * Copyright (c) 2016 The ZLMediaKit project authors. All Rights Reserved.
 *
4
 * This file is part of ZLMediaKit(https://github.com/xia-chu/ZLMediaKit).
5 6 7 8 9 10 11 12 13 14 15 16
 *
 * 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 ZLMEDIAKIT_PSENCODER_H
#define ZLMEDIAKIT_PSENCODER_H
#if defined(ENABLE_RTPPROXY)
#include "mpeg-ps.h"
#include "Common/MediaSink.h"
#include "Common/Stamp.h"
xiongziliang committed
17
#include "Extension/CommonRtp.h"
18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65
namespace mediakit{

//该类实现mpeg-ps容器格式的打包
class PSEncoder : public MediaSinkInterface {
public:
    PSEncoder();
    ~PSEncoder() override;

    /**
     * 添加音视频轨道
     */
    void addTrack(const Track::Ptr &track) override;

    /**
     * 重置音视频轨道
     */
    void resetTracks() override;

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

protected:
    /**
     * 输出mpeg-ps的回调函数
     * @param stamp 时间戳,毫秒
     * @param packet 数据指针
     * @param bytes 数据长度
     */
    virtual void onPS(uint32_t stamp, void *packet, size_t bytes) = 0;

private:
    void init();
    //音视频时间戳同步用
    void stampSync();

private:
    struct track_info {
        int track_id = -1;
        Stamp stamp;
    };

private:
    uint32_t _timestamp = 0;
    BufferRaw::Ptr _buffer;
    std::shared_ptr<struct ps_muxer_t> _muxer;
    unordered_map<int, track_info> _codec_to_trackid;
xia-chu committed
66
    FrameMerger _frame_merger{FrameMerger::h264_prefix};
67 68
};

xiongziliang committed
69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84
class PSEncoderImp : public PSEncoder{
public:
    PSEncoderImp(uint32_t ssrc, uint8_t payload_type = 96);
    ~PSEncoderImp() override;

protected:
    //rtp打包后回调
    virtual void onRTP(Buffer::Ptr rtp) = 0;

protected:
    void onPS(uint32_t stamp, void *packet, size_t bytes) override;

private:
    std::shared_ptr<CommonRtpEncoder> _rtp_encoder;
};

85 86 87
}//namespace mediakit
#endif //ENABLE_RTPPROXY
#endif //ZLMEDIAKIT_PSENCODER_H