WebRtcPlayer.h 1.42 KB
Newer Older
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15
/*
 * Copyright (c) 2016 The ZLMediaKit project authors. All Rights Reserved.
 *
 * This file is part of ZLMediaKit(https://github.com/xia-chu/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_WEBRTCPLAYER_H
#define ZLMEDIAKIT_WEBRTCPLAYER_H

#include "WebRtcTransport.h"

16 17
namespace mediakit {

18 19 20 21
class WebRtcPlayer : public WebRtcTransportImp {
public:
    using Ptr = std::shared_ptr<WebRtcPlayer>;
    ~WebRtcPlayer() override = default;
22
    static Ptr create(const EventPoller::Ptr &poller, const RtspMediaSource::Ptr &src, const MediaInfo &info);
23 24 25 26 27 28

protected:
    ///////WebRtcTransportImp override///////
    void onStartWebRTC() override;
    void onDestory() override;
    void onRtcConfigure(RtcConfigure &configure) const override;
29
    void onRecvRtp(MediaTrack &track, const std::string &rid, RtpPacket::Ptr rtp) override {};
30 31

private:
32
    WebRtcPlayer(const EventPoller::Ptr &poller, const RtspMediaSource::Ptr &src, const MediaInfo &info);
33 34 35

private:
    //媒体相关元数据
36
    MediaInfo _media_info;
37
    //播放的rtsp源
38
    RtspMediaSource::Ptr _play_src;
39
    //播放rtsp源的reader对象
40
    RtspMediaSource::RingType::RingReader::Ptr _reader;
41 42
};

43 44
}// namespace mediakit
#endif // ZLMEDIAKIT_WEBRTCPLAYER_H