RtmpCodec.h 1.56 KB
Newer Older
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

#ifndef ZLMEDIAKIT_RTMPCODEC_H
#define ZLMEDIAKIT_RTMPCODEC_H

#include "Rtmp/Rtmp.h"
15
#include "Extension/Frame.h"
16
#include "Util/RingBuffer.h"
xiongziliang committed
17
using namespace toolkit;
18

xiongziliang committed
19
namespace mediakit{
20

xiongziliang committed
21
class RtmpRing{
22
public:
xiongziliang committed
23
    typedef std::shared_ptr<RtmpRing> Ptr;
24 25
    typedef RingBuffer<RtmpPacket::Ptr> RingType;

xiongziliang committed
26 27
    RtmpRing() {}
    virtual ~RtmpRing() {}
28 29 30 31 32

    /**
     * 获取rtmp环形缓存
     * @return
     */
xiongziliang committed
33
    virtual RingType::Ptr getRtmpRing() const {
xiongziliang committed
34 35
        return _rtmpRing;
    }
36 37 38 39 40

    /**
     * 设置rtmp环形缓存
     * @param ring
     */
xiongziliang committed
41
    virtual void setRtmpRing(const RingType::Ptr &ring) {
xiongziliang committed
42 43
        _rtmpRing = ring;
    }
44 45 46 47 48

    /**
     * 输入rtmp包
     * @param rtmp rtmp包
     */
49
    virtual void inputRtmp(const RtmpPacket::Ptr &rtmp) {
xiongziliang committed
50
        if (_rtmpRing) {
51
            _rtmpRing->write(rtmp, rtmp->isVideoKeyFrame());
52
        }
53
    }
xiongziliang committed
54

55 56 57 58
protected:
    RingType::Ptr _rtmpRing;
};

xiongziliang committed
59
class RtmpCodec : public RtmpRing, public FrameDispatcher , public CodecInfo{
60 61 62 63
public:
    typedef std::shared_ptr<RtmpCodec> Ptr;
    RtmpCodec(){}
    virtual ~RtmpCodec(){}
64
    virtual void makeConfigPacket() {};
65 66 67
};


xiongziliang committed
68
}//namespace mediakit
69
#endif //ZLMEDIAKIT_RTMPCODEC_H