Frame.h 6.72 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

#ifndef ZLMEDIAKIT_FRAME_H
#define ZLMEDIAKIT_FRAME_H

30
#include <mutex>
31
#include <functional>
32
#include "Util/RingBuffer.h"
33
#include "Network/Socket.h"
34 35

using namespace std;
xiongziliang committed
36
using namespace toolkit;
37

xiongziliang committed
38
namespace mediakit{
39

40 41 42
typedef enum {
    CodecInvalid = -1,
    CodecH264 = 0,
43
    CodecH265,
44 45
    CodecAAC,
    CodecMax = 0x7FFF
46 47 48 49 50 51
} CodecId;

typedef enum {
    TrackInvalid = -1,
    TrackVideo = 0,
    TrackAudio,
52
    TrackTitle,
53
    TrackMax = 0x7FFF
54 55
} TrackType;

xiongziliang committed
56 57 58
/**
 * 编码信息的抽象接口
 */
59 60
class CodecInfo {
public:
xiongziliang committed
61 62
    typedef std::shared_ptr<CodecInfo> Ptr;

63 64 65 66 67 68 69 70 71 72 73 74 75 76
    CodecInfo(){}
    virtual ~CodecInfo(){}

    /**
     * 获取音视频类型
     */
    virtual TrackType getTrackType() const  = 0;

    /**
     * 获取编解码器类型
     */
    virtual CodecId getCodecId() const = 0;
};

xiongziliang committed
77 78 79
/**
 * 帧类型的抽象接口
 */
80
class Frame : public Buffer, public CodecInfo{
81 82 83
public:
    typedef std::shared_ptr<Frame> Ptr;
    virtual ~Frame(){}
84
    /**
xiongziliang committed
85
     * 时间戳,已经废弃,请使用dts() 、pts()接口
86
     */
xiongziliang committed
87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106
    inline uint32_t stamp() const {
        return dts();
    };


    /**
     * 返回解码时间戳,单位毫秒
     * @return
     */
    virtual uint32_t dts() const = 0;



    /**
     * 返回显示时间戳,单位毫秒
     * @return
     */
    virtual uint32_t pts() const {
        return dts();
    }
107 108 109 110 111

    /**
     * 前缀长度,譬如264前缀为0x00 00 00 01,那么前缀长度就是4
     * aac前缀则为7个字节
     */
112 113 114 115 116 117 118
    virtual uint32_t prefixSize() const = 0;

    /**
     * 返回是否为关键帧
     * @return
     */
    virtual bool keyFrame() const = 0;
119 120
};

xiongziliang committed
121 122 123 124
/**
 * 循环池辅助类
 * @tparam T
 */
125 126 127 128 129 130 131 132 133 134 135 136 137 138 139
template <typename T>
class ResourcePoolHelper{
public:
    ResourcePoolHelper(int size = 8){
        _pool.setSize(size);
    }
    virtual ~ResourcePoolHelper(){}

    std::shared_ptr<T> obtainObj(){
        return _pool.obtain();
    }
private:
    ResourcePool<T> _pool;
};

xiongziliang committed
140 141 142
/**
 * 写帧接口的抽闲接口
 */
143
class FrameWriterInterface {
144
public:
145
    typedef std::shared_ptr<FrameWriterInterface> Ptr;
146

147 148
    FrameWriterInterface(){}
    virtual ~FrameWriterInterface(){}
149 150 151 152 153 154 155
    /**
    * 写入帧数据
    * @param frame 帧
    */
    virtual void inputFrame(const Frame::Ptr &frame) = 0;
};

xiongziliang committed
156 157 158
/**
 * 写帧接口转function,辅助类
 */
159 160 161 162 163
class FrameWriterInterfaceHelper : public FrameWriterInterface {
public:
    typedef std::shared_ptr<FrameWriterInterfaceHelper> Ptr;
    typedef std::function<void(const Frame::Ptr &frame)> onWriteFrame;

xiongziliang committed
164 165 166 167
    /**
     * inputFrame后触发onWriteFrame回调
     * @param cb
     */
168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183
    FrameWriterInterfaceHelper(const onWriteFrame& cb){
        _writeCallback = cb;
    }
    virtual ~FrameWriterInterfaceHelper(){}
    /**
    * 写入帧数据
    * @param frame 帧
    */
    void inputFrame(const Frame::Ptr &frame) override {
        _writeCallback(frame);
    }
private:
    onWriteFrame _writeCallback;
};


184 185 186
/**
 * 帧环形缓存接口类
 */
187
class FrameRingInterface : public FrameWriterInterface{
188 189
public:
    typedef RingBuffer<Frame::Ptr> RingType;
xiongziliang committed
190
    typedef std::shared_ptr<FrameRingInterface> Ptr;
191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207

    FrameRingInterface(){}
    virtual ~FrameRingInterface(){}

    /**
     * 获取帧环形缓存
     * @return
     */
    virtual RingType::Ptr getFrameRing() const = 0;

    /**
     * 设置帧环形缓存
     * @param ring
     */
    virtual void setFrameRing(const RingType::Ptr &ring)  = 0;
};

xiongziliang committed
208 209 210
/**
 * 帧环形缓存
 */
211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238
class FrameRing : public FrameRingInterface{
public:
    typedef std::shared_ptr<FrameRing> Ptr;

    FrameRing(){
    }
    virtual ~FrameRing(){}

    /**
     * 获取帧环形缓存
     * @return
     */
    RingType::Ptr getFrameRing() const override {
        return _frameRing;
    }

    /**
     * 设置帧环形缓存
     * @param ring
     */
    void setFrameRing(const RingType::Ptr &ring) override {
        _frameRing = ring;
    }

    /**
     * 输入数据帧
     * @param frame
     */
239
    void inputFrame(const Frame::Ptr &frame) override{
xiongziliang committed
240 241 242
        if(_frameRing){
            _frameRing->write(frame,frame->keyFrame());
        }
243 244 245 246 247
    }
protected:
    RingType::Ptr _frameRing;
};

xiongziliang committed
248 249 250
/**
 * 支持代理转发的帧环形缓存
 */
251
class FrameRingInterfaceDelegate : public FrameRing {
252 253 254
public:
    typedef std::shared_ptr<FrameRingInterfaceDelegate> Ptr;

255
    FrameRingInterfaceDelegate(){}
256 257
    virtual ~FrameRingInterfaceDelegate(){}

258
    void addDelegate(const FrameWriterInterface::Ptr &delegate){
259 260
        lock_guard<mutex> lck(_mtx);
        _delegateMap.emplace(delegate.get(),delegate);
261 262
    }

263 264 265
    void delDelegate(void *ptr){
        lock_guard<mutex> lck(_mtx);
        _delegateMap.erase(ptr);
266 267 268 269 270 271 272
    }

    /**
     * 写入帧数据
     * @param frame 帧
     */
    void inputFrame(const Frame::Ptr &frame) override{
273 274 275 276
        FrameRing::inputFrame(frame);
        lock_guard<mutex> lck(_mtx);
        for(auto &pr : _delegateMap){
            pr.second->inputFrame(frame);
277 278 279
        }
    }
private:
280
    mutex _mtx;
281
    map<void *,FrameWriterInterface::Ptr>  _delegateMap;
282 283
};

284 285 286 287 288 289 290 291 292
class FrameNoCopyAble : public Frame{
public:
    typedef std::shared_ptr<FrameNoCopyAble> Ptr;
    char *data() const override{
        return buffer_ptr;
    }
    uint32_t size() const override {
        return buffer_size;
    }
xiongziliang committed
293
    uint32_t dts() const override {
294 295 296 297 298 299 300 301 302 303 304 305 306 307
        return timeStamp;
    }
    uint32_t prefixSize() const override{
        return iPrefixSize;
    }
public:
    char *buffer_ptr;
    uint32_t buffer_size;
    uint32_t timeStamp;
    uint32_t iPrefixSize;
};



308 309


xiongziliang committed
310
}//namespace mediakit
311 312

#endif //ZLMEDIAKIT_FRAME_H