RtpProcess.h 2.82 KB
Newer Older
Gemfield committed
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
 */
Gemfield committed
10

11 12 13 14
#ifndef ZLMEDIAKIT_RTPPROCESS_H
#define ZLMEDIAKIT_RTPPROCESS_H

#if defined(ENABLE_RTPPROXY)
xiongziliang committed
15 16
#include "ProcessInterface.h"
#include "Common/MultiMediaSourceMuxer.h"
Gemfield committed
17 18 19

using namespace mediakit;

xiongziliang committed
20
namespace mediakit {
21

22
class RtpProcess : public SockInfo, public MediaSinkInterface, public MediaSourceEventInterceptor, public std::enable_shared_from_this<RtpProcess>{
Gemfield committed
23 24
public:
    typedef std::shared_ptr<RtpProcess> Ptr;
25
    friend class RtpProcessHelper;
26
    RtpProcess(const string &stream_id);
Gemfield committed
27
    ~RtpProcess();
xiongziliang committed
28 29 30

    /**
     * 输入rtp
xiongziliang committed
31
     * @param is_udp 是否为udp模式
xiongziliang committed
32 33
     * @param sock 本地监听的socket
     * @param data rtp数据指针
xiongziliang committed
34
     * @param len rtp数据长度
xiongziliang committed
35 36 37 38
     * @param addr 数据源地址
     * @param dts_out 解析出最新的dts
     * @return 是否解析成功
     */
xiongziliang committed
39
    bool inputRtp(bool is_udp, const Socket::Ptr &sock, const char *data, int len, const struct sockaddr *addr , uint32_t *dts_out = nullptr);
xiongziliang committed
40 41 42 43

    /**
     * 是否超时,用于超时移除对象
     */
Gemfield committed
44
    bool alive();
45

46 47 48 49 50 51 52 53 54 55
    /**
     * 超时时被RtpSelector移除时触发
     */
    void onDetach();

    /**
     * 设置onDetach事件回调
     */
    void setOnDetach(const function<void()> &cb);

xiongziliang committed
56
    /// SockInfo override
xiongziliang committed
57
    string get_local_ip() override;
58
    uint16_t get_local_port() override;
xiongziliang committed
59
    string get_peer_ip() override;
60 61 62
    uint16_t get_peer_port() override;
    string getIdentifier() const override;

63 64
    int totalReaderCount();
    void setListener(const std::weak_ptr<MediaSourceEvent> &listener);
65

Gemfield committed
66
protected:
67 68
    void inputFrame(const Frame::Ptr &frame) override;
    void addTrack(const Track::Ptr & track) override;
69
    void addTrackCompleted() override;
70
    void resetTracks() override {};
71

72 73 74 75 76
    //// MediaSourceEvent override ////
    MediaOriginType getOriginType(MediaSource &sender) const override;
    string getOriginUrl(MediaSource &sender) const override;
    std::shared_ptr<SockInfo> getOriginSock(MediaSource &sender) const override;

77 78 79
private:
    void emitOnPublish();

Gemfield committed
80
private:
81
    uint32_t _dts = 0;
xiongziliang committed
82
    uint64_t _total_bytes = 0;
xiongziliang committed
83
    struct sockaddr *_addr = nullptr;
84
    Socket::Ptr _sock;
xiongziliang committed
85 86
    MediaInfo _media_info;
    Ticker _last_frame_time;
87
    function<void()> _on_detach;
xiongziliang committed
88 89 90 91
    std::shared_ptr<FILE> _save_file_rtp;
    std::shared_ptr<FILE> _save_file_video;
    ProcessInterface::Ptr _process;
    MultiMediaSourceMuxer::Ptr _muxer;
Gemfield committed
92 93
};

94 95 96
}//namespace mediakit
#endif//defined(ENABLE_RTPPROXY)
#endif //ZLMEDIAKIT_RTPPROCESS_H