FMP4MediaSourceMuxer.h 2.84 KB
Newer Older
xiongziliang committed
1
/*
2 3 4 5 6 7 8 9 10 11 12 13
 * Copyright (c) 2016 The ZLMediaKit project authors. All Rights Reserved.
 *
 * This file is part of ZLMediaKit(https://github.com/xiongziliang/ZLMediaKit).
 *
 * 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_FMP4MEDIASOURCEMUXER_H
#define ZLMEDIAKIT_FMP4MEDIASOURCEMUXER_H

14 15
#if defined(ENABLE_MP4)

16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34
#include "FMP4MediaSource.h"
#include "Record/MP4Muxer.h"

namespace mediakit {

class FMP4MediaSourceMuxer : public MP4MuxerMemory, public MediaSourceEventInterceptor,
                             public std::enable_shared_from_this<FMP4MediaSourceMuxer> {
public:
    using Ptr = std::shared_ptr<FMP4MediaSourceMuxer>;

    FMP4MediaSourceMuxer(const string &vhost,
                         const string &app,
                         const string &stream_id) {
        _media_src = std::make_shared<FMP4MediaSource>(vhost, app, stream_id);
    }

    ~FMP4MediaSourceMuxer() override = default;

    void setListener(const std::weak_ptr<MediaSourceEvent> &listener){
35
        setDelegate(listener);
36 37 38 39 40 41 42 43
        _media_src->setListener(shared_from_this());
    }

    int readerCount() const{
        return _media_src->readerCount();
    }

    void onReaderChanged(MediaSource &sender, int size) override {
44 45 46
        GET_CONFIG(bool, fmp4_demand, General::kFMP4Demand);
        _enabled = fmp4_demand ? size : true;
        if (!size && fmp4_demand) {
47 48 49 50 51 52
            _clear_cache = true;
        }
        MediaSourceEventInterceptor::onReaderChanged(sender, size);
    }

    void inputFrame(const Frame::Ptr &frame) override {
53 54
        GET_CONFIG(bool, fmp4_demand, General::kFMP4Demand);
        if (_clear_cache && fmp4_demand) {
55 56 57
            _clear_cache = false;
            _media_src->clearCache();
        }
58
        if (_enabled || !fmp4_demand) {
59 60 61 62 63
            MP4MuxerMemory::inputFrame(frame);
        }
    }

    bool isEnabled() {
64
        GET_CONFIG(bool, fmp4_demand, General::kFMP4Demand);
65
        //缓存尚未清空时,还允许触发inputFrame函数,以便及时清空缓存
66
        return fmp4_demand ? (_clear_cache ? true : _enabled) : true;
67 68 69 70 71 72 73 74 75 76 77 78 79
    }

    void onAllTrackReady() {
        _media_src->setInitSegment(getInitSegment());
    }

protected:
    void onSegmentData(const string &string, uint32_t stamp, bool key_frame) override {
        if (string.empty()) {
            return;
        }
        FMP4Packet::Ptr packet = std::make_shared<FMP4Packet>(std::move(string));
        packet->time_stamp = stamp;
80
        _media_src->onWrite(std::move(packet), key_frame);
81 82 83 84 85 86 87 88 89
    }

private:
    bool _enabled = true;
    bool _clear_cache = false;
    FMP4MediaSource::Ptr _media_src;
};

}//namespace mediakit
90 91

#endif// defined(ENABLE_MP4)
92
#endif //ZLMEDIAKIT_FMP4MEDIASOURCEMUXER_H