mirror of
https://github.com/ZLMediaKit/ZLMediaKit.git
synced 2026-07-03 08:57:32 +08:00
初始提交
This commit is contained in:
39
src/Player/MediaPlayer.h
Normal file
39
src/Player/MediaPlayer.h
Normal file
@@ -0,0 +1,39 @@
|
||||
/*
|
||||
* MediaPlayer.h
|
||||
*
|
||||
* Created on: 2016年12月5日
|
||||
* Author: xzl
|
||||
*/
|
||||
|
||||
#ifndef SRC_PLAYER_MEDIAPLAYER_H_
|
||||
#define SRC_PLAYER_MEDIAPLAYER_H_
|
||||
|
||||
#include "Player.h"
|
||||
#include "PlayerBase.h"
|
||||
#include <string>
|
||||
#include <memory>
|
||||
using namespace std;
|
||||
|
||||
|
||||
namespace ZL {
|
||||
namespace Player {
|
||||
|
||||
class MediaPlayer : public PlayerImp<PlayerBase,PlayerBase> {
|
||||
public:
|
||||
typedef std::shared_ptr<MediaPlayer> Ptr;
|
||||
|
||||
MediaPlayer();
|
||||
virtual ~MediaPlayer();
|
||||
|
||||
void play(const char* strUrl, const char *strUser = "", const char *strPwd = "", eRtpType eType = RTP_TCP) override;
|
||||
void pause(bool bPause) override;
|
||||
void teardown() override;
|
||||
private:
|
||||
string m_strPrefix;
|
||||
|
||||
};
|
||||
|
||||
} /* namespace Player */
|
||||
} /* namespace ZL */
|
||||
|
||||
#endif /* SRC_PLAYER_MEDIAPLAYER_H_ */
|
||||
Reference in New Issue
Block a user