H264RtpCodec.h 3.11 KB
Newer Older
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25
/*
 * MIT License
 *
 * Copyright (c) 2016 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.
 */
26 27 28 29 30

#ifndef ZLMEDIAKIT_H264RTPCODEC_H
#define ZLMEDIAKIT_H264RTPCODEC_H

#include "RtpCodec.h"
xiongziliang committed
31
#include "Util/ResourcePool.h"
32
#include "Extension/H264.h"
xiongziliang committed
33
using namespace toolkit;
34

xiongziliang committed
35
namespace mediakit{
xiongziliang committed
36

37 38 39
/**
 * h264 rtp解码类
 */
40
class H264RtpDecoder : public RtpCodec , public ResourcePoolHelper<H264Frame> {
41
public:
xiongziliang committed
42 43
    typedef std::shared_ptr<H264RtpDecoder> Ptr;

44
    H264RtpDecoder();
xiongziliang committed
45 46
    ~H264RtpDecoder() {}

47 48 49 50 51
    /**
     * 输入264 rtp包
     * @param rtp rtp包
     * @param key_pos 此参数忽略之
     */
xiongziliang committed
52
    bool inputRtp(const RtpPacket::Ptr &rtp, bool key_pos = true) override;
53 54 55 56 57 58 59 60

    TrackType getTrackType() const override{
        return TrackVideo;
    }

    CodecId getCodecId() const override{
        return CodecH264;
    }
61
private:
62
    bool decodeRtp(const RtpPacket::Ptr &rtp);
xiongziliang committed
63
    void onGetH264(const H264Frame::Ptr &frame);
64
    H264Frame::Ptr obtainFrame();
65
private:
66
    H264Frame::Ptr _h264frame;
67 68
};

69 70 71
/**
 * 264 rtp打包类
 */
72
class H264RtpEncoder : public H264RtpDecoder ,public RtpInfo{
xiongziliang committed
73
public:
xiongziliang committed
74
    typedef std::shared_ptr<H264RtpEncoder> Ptr;
75 76 77 78 79 80 81 82

    /**
     * @param ui32Ssrc ssrc
     * @param ui32MtuSize mtu大小
     * @param ui32SampleRate 采样率,强制为90000
     * @param ui8PlayloadType pt类型
     * @param ui8Interleaved rtsp interleaved
     */
xiongziliang committed
83 84 85 86 87 88 89
    H264RtpEncoder(uint32_t ui32Ssrc,
                   uint32_t ui32MtuSize = 1400,
                   uint32_t ui32SampleRate = 90000,
                   uint8_t ui8PlayloadType = 96,
                   uint8_t ui8Interleaved = TrackVideo * 2);
    ~H264RtpEncoder() {}

90 91 92 93
    /**
     * 输入264帧
     * @param frame 帧数据,必须
     */
94
    void inputFrame(const Frame::Ptr &frame) override;
xiongziliang committed
95
private:
96
    void makeH264Rtp(int nal_type,const void *pData, unsigned int uiLen, bool bMark,  bool first_packet, uint32_t uiStamp);
xiongziliang committed
97
private:
98
    unsigned char _aucSectionBuf[1600];
xiongziliang committed
99 100
};

xiongziliang committed
101
}//namespace mediakit{
102 103

#endif //ZLMEDIAKIT_H264RTPCODEC_H