WebRtcPlayer.h 1.5 KB
Newer Older
1 2 3 4 5 6 7 8 9 10 11 12 13 14
/*
 * 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"
mtdxc committed
15
#include "Rtsp/RtspMediaSource.h"
16

17 18
namespace mediakit {

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

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

private:
monktan89 committed
33
    WebRtcPlayer(const EventPoller::Ptr &poller, const RtspMediaSource::Ptr &src, const MediaInfo &info, bool preferred_tcp);
34 35 36

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

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