2017-10-09 22:11:01 +08:00
|
|
|
|
/*
|
2020-04-04 20:30:09 +08:00
|
|
|
|
* Copyright (c) 2016 The ZLMediaKit project authors. All Rights Reserved.
|
2017-09-27 16:20:30 +08:00
|
|
|
|
*
|
2021-01-17 18:31:50 +08:00
|
|
|
|
* This file is part of ZLMediaKit(https://github.com/xia-chu/ZLMediaKit).
|
2017-09-27 16:20:30 +08:00
|
|
|
|
*
|
2020-04-04 20:30:09 +08:00
|
|
|
|
* 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.
|
2017-04-01 16:35:56 +08:00
|
|
|
|
*/
|
|
|
|
|
|
|
|
|
|
#ifndef SRC_RTP_RTPPARSERTESTER_H_
|
|
|
|
|
#define SRC_RTP_RTPPARSERTESTER_H_
|
|
|
|
|
|
|
|
|
|
#include <memory>
|
2017-04-25 11:35:41 +08:00
|
|
|
|
#include <algorithm>
|
|
|
|
|
#include <functional>
|
|
|
|
|
#include "RtspPlayer.h"
|
2017-04-01 16:35:56 +08:00
|
|
|
|
|
2018-10-24 17:17:55 +08:00
|
|
|
|
namespace mediakit {
|
2022-11-29 11:07:13 +08:00
|
|
|
|
class RtspDemuxer;
|
|
|
|
|
class RtspMediaSource;
|
2021-11-10 10:58:43 +08:00
|
|
|
|
class RtspPlayerImp : public PlayerImp<RtspPlayer, PlayerBase> ,private TrackListener {
|
2017-04-01 16:35:56 +08:00
|
|
|
|
public:
|
2021-11-10 10:58:43 +08:00
|
|
|
|
using Ptr = std::shared_ptr<RtspPlayerImp>;
|
|
|
|
|
using Super = PlayerImp<RtspPlayer, PlayerBase>;
|
2020-08-30 11:40:03 +08:00
|
|
|
|
|
2022-02-02 20:34:50 +08:00
|
|
|
|
RtspPlayerImp(const toolkit::EventPoller::Ptr &poller) : Super(poller) {}
|
2021-11-10 10:58:43 +08:00
|
|
|
|
|
|
|
|
|
~RtspPlayerImp() override {
|
2022-02-02 20:34:50 +08:00
|
|
|
|
DebugL << std::endl;
|
2020-08-30 11:40:03 +08:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
float getProgress() const override {
|
|
|
|
|
if (getDuration() > 0) {
|
2018-10-26 14:12:16 +08:00
|
|
|
|
return getProgressMilliSecond() / (getDuration() * 1000);
|
2017-04-01 16:35:56 +08:00
|
|
|
|
}
|
2017-08-14 22:20:53 +08:00
|
|
|
|
return PlayerBase::getProgress();
|
2020-08-30 11:40:03 +08:00
|
|
|
|
}
|
|
|
|
|
|
2021-08-09 18:28:43 +08:00
|
|
|
|
uint32_t getProgressPos() const override {
|
|
|
|
|
if (getDuration() > 0) {
|
|
|
|
|
return getProgressMilliSecond();
|
|
|
|
|
}
|
|
|
|
|
return PlayerBase::getProgressPos();
|
2021-08-12 16:07:31 +08:00
|
|
|
|
}
|
2021-08-09 18:28:43 +08:00
|
|
|
|
|
2021-08-12 16:07:31 +08:00
|
|
|
|
void seekTo(float fProgress) override {
|
|
|
|
|
fProgress = MAX(float(0), MIN(fProgress, float(1.0)));
|
|
|
|
|
seekToMilliSecond((uint32_t) (fProgress * getDuration() * 1000));
|
2021-08-09 18:28:43 +08:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
void seekTo(uint32_t seekPos) override {
|
2021-11-10 10:58:43 +08:00
|
|
|
|
uint32_t pos = MAX(float(0), MIN(seekPos, getDuration())) * 1000;
|
2021-08-09 18:28:43 +08:00
|
|
|
|
seekToMilliSecond(pos);
|
2020-08-30 11:40:03 +08:00
|
|
|
|
}
|
|
|
|
|
|
2022-11-29 11:07:13 +08:00
|
|
|
|
float getDuration() const override;
|
2021-11-10 10:58:43 +08:00
|
|
|
|
|
2022-11-29 11:07:13 +08:00
|
|
|
|
std::vector<Track::Ptr> getTracks(bool ready = true) const override;
|
2021-11-10 10:58:43 +08:00
|
|
|
|
|
2017-04-01 16:35:56 +08:00
|
|
|
|
private:
|
2020-03-20 11:51:24 +08:00
|
|
|
|
//派生类回调函数
|
2022-11-29 11:07:13 +08:00
|
|
|
|
bool onCheckSDP(const std::string &sdp) override;
|
2020-08-30 11:40:03 +08:00
|
|
|
|
|
2022-11-29 11:07:13 +08:00
|
|
|
|
void onRecvRTP(RtpPacket::Ptr rtp, const SdpTrack::Ptr &track) override;
|
2018-09-18 21:40:26 +08:00
|
|
|
|
|
2022-11-29 11:07:13 +08:00
|
|
|
|
void onPlayResult(const toolkit::SockException &ex) override;
|
2020-08-30 11:40:03 +08:00
|
|
|
|
|
2021-11-10 10:58:43 +08:00
|
|
|
|
bool addTrack(const Track::Ptr &track) override { return true; }
|
|
|
|
|
|
2022-11-29 11:07:13 +08:00
|
|
|
|
void addTrackCompleted() override;
|
2021-11-10 10:58:43 +08:00
|
|
|
|
|
2018-09-18 21:40:26 +08:00
|
|
|
|
private:
|
2022-11-29 11:07:13 +08:00
|
|
|
|
std::shared_ptr<RtspDemuxer> _demuxer;
|
|
|
|
|
std::shared_ptr<RtspMediaSource> _rtsp_media_src;
|
2017-04-01 16:35:56 +08:00
|
|
|
|
};
|
|
|
|
|
|
2018-10-24 17:17:55 +08:00
|
|
|
|
} /* namespace mediakit */
|
2017-04-01 16:35:56 +08:00
|
|
|
|
|
|
|
|
|
#endif /* SRC_RTP_RTPPARSERTESTER_H_ */
|