RtpSelector.h 1.97 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
#ifndef ZLMEDIAKIT_RTPSELECTOR_H
#define ZLMEDIAKIT_RTPSELECTOR_H
Gemfield committed
13

14 15
#if defined(ENABLE_RTPPROXY)
#include <stdint.h>
Gemfield committed
16 17 18
#include <mutex>
#include <unordered_map>
#include "RtpProcess.h"
19
#include "Common/MediaSource.h"
Gemfield committed
20

21
namespace mediakit{
Gemfield committed
22

23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41
class RtpSelector;
class RtpProcessHelper : public MediaSourceEvent , public std::enable_shared_from_this<RtpProcessHelper> {
public:
    typedef std::shared_ptr<RtpProcessHelper> Ptr;
    RtpProcessHelper(uint32_t ssrc,const weak_ptr<RtpSelector > &parent);
    ~RtpProcessHelper();
    void attachEvent();
    RtpProcess::Ptr & getProcess();
protected:
    // 通知其停止推流
    bool close(MediaSource &sender,bool force) override;
    // 观看总人数
    int totalReaderCount(MediaSource &sender) override;
private:
    weak_ptr<RtpSelector > _parent;
    RtpProcess::Ptr _process;
    uint32_t _ssrc = 0;
};

Gemfield committed
42 43 44 45 46 47
class RtpSelector : public std::enable_shared_from_this<RtpSelector>{
public:
    RtpSelector();
    ~RtpSelector();

    static RtpSelector &Instance();
48
    bool inputRtp(const Socket::Ptr &sock, const char *data,int data_len,const struct sockaddr *addr ,uint32_t *dts_out = nullptr );
49
    static bool getSSRC(const char *data,int data_len, uint32_t &ssrc);
Gemfield committed
50 51 52 53
    RtpProcess::Ptr getProcess(uint32_t ssrc,bool makeNew);
    void delProcess(uint32_t ssrc,const RtpProcess *ptr);
private:
    void onManager();
54
    void createTimer();
Gemfield committed
55
private:
56
    unordered_map<uint32_t,RtpProcessHelper::Ptr> _map_rtp_process;
Gemfield committed
57
    recursive_mutex _mtx_map;
58
    Timer::Ptr _timer;
Gemfield committed
59 60
};

61 62 63
}//namespace mediakit
#endif//defined(ENABLE_RTPPROXY)
#endif //ZLMEDIAKIT_RTPSELECTOR_H