mirror of
https://github.com/ZLMediaKit/ZLMediaKit.git
synced 2026-06-14 03:55:58 +08:00
初始提交
This commit is contained in:
57
src/Player/MediaPlayer.cpp
Normal file
57
src/Player/MediaPlayer.cpp
Normal file
@@ -0,0 +1,57 @@
|
||||
/*
|
||||
* MediaPlayer.cpp
|
||||
*
|
||||
* Created on: 2016年12月5日
|
||||
* Author: xzl
|
||||
*/
|
||||
|
||||
#include "Rtmp/RtmpPlayerImp.h"
|
||||
#include "Rtsp/RtspPlayerImp.h"
|
||||
#include "MediaPlayer.h"
|
||||
#include <algorithm>
|
||||
|
||||
using namespace ZL::Rtmp;
|
||||
using namespace ZL::Rtsp;
|
||||
|
||||
namespace ZL {
|
||||
namespace Player {
|
||||
|
||||
MediaPlayer::MediaPlayer() {
|
||||
}
|
||||
|
||||
MediaPlayer::~MediaPlayer() {
|
||||
if(!EventPoller::Instance().isMainThread()){
|
||||
FatalL << "未在主线程释放";
|
||||
}
|
||||
teardown();
|
||||
}
|
||||
|
||||
void MediaPlayer::play(const char* strUrl, const char* strUser, const char* strPwd, eRtpType eType) {
|
||||
string strPrefix = FindField(strUrl, NULL, "://");
|
||||
if ((strcasecmp(m_strPrefix.data(),strPrefix.data()) != 0) || strPrefix.empty()) {
|
||||
//协议切换
|
||||
m_strPrefix = strPrefix;
|
||||
m_parser = PlayerBase::createPlayer(strUrl);
|
||||
m_parser->setOnShutdown(m_shutdownCB);
|
||||
m_parser->setOnVideoCB(m_onGetVideoCB);
|
||||
m_parser->setOnAudioCB(m_onGetAudioCB);
|
||||
}
|
||||
m_parser->setOnPlayResult(m_playResultCB);
|
||||
m_parser->play(strUrl, strUser, strPwd, eType);
|
||||
}
|
||||
|
||||
void MediaPlayer::pause(bool bPause) {
|
||||
if (m_parser) {
|
||||
m_parser->pause(bPause);
|
||||
}
|
||||
}
|
||||
|
||||
void MediaPlayer::teardown() {
|
||||
if (m_parser) {
|
||||
m_parser->teardown();
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
} /* namespace Player */
|
||||
} /* namespace ZL */
|
||||
Reference in New Issue
Block a user