Home
last modified time | relevance | path

Searched refs:PlayerImpl (Results 1 – 7 of 7) sorted by relevance

/ohos5.0/foundation/multimedia/player_framework/frameworks/native/player/
H A Dplayer_impl.cpp32 std::shared_ptr<PlayerImpl> impl = std::make_shared<PlayerImpl>(); in CreatePlayer()
41 int32_t PlayerImpl::Init() in Init()
50 PlayerImpl::PlayerImpl() in PlayerImpl() function in OHOS::Media::PlayerImpl
57 PlayerImpl::~PlayerImpl() in ~PlayerImpl()
121 int32_t PlayerImpl::Play() in Play()
142 int32_t PlayerImpl::Prepare() in Prepare()
164 int32_t PlayerImpl::Pause() in Pause()
171 int32_t PlayerImpl::Stop() in Stop()
179 int32_t PlayerImpl::Reset() in Reset()
187 int32_t PlayerImpl::Release() in Release()
[all …]
H A Dplayer_impl.h28 class PlayerImpl : public Player, public NoCopyable, public std::enable_shared_from_this<PlayerImpl
30 PlayerImpl();
31 ~PlayerImpl();
104 …PlayerImplCallback(const std::shared_ptr<PlayerCallback> playerCb, std::shared_ptr<PlayerImpl> pla…
111 std::weak_ptr<PlayerImpl> player_;
/ohos5.0/foundation/multimedia/media_lite/services/player_lite/impl/
H A Dplayer_impl.cpp67 PlayerImpl::PlayerImpl() in PlayerImpl() function in OHOS::Media::PlayerImpl
129 PlayerImpl::~PlayerImpl() in ~PlayerImpl()
186 void PlayerImpl::UpdateState(PlayerImpl *curPlayer, PlayerStatus state) in UpdateState()
199 PlayerImpl *curPlayer = (PlayerImpl *)pPlayer; in PlayerControlEventCb()
346 int32_t PlayerImpl::Play() in Play()
390 int32_t PlayerImpl::Pause() in Pause()
423 int32_t PlayerImpl::Stop() in Stop()
902 void PlayerImpl::NotifyPlaybackComplete(PlayerImpl *curPlayer) in NotifyPlaybackComplete()
925 void PlayerImpl::NotifySeekComplete(PlayerImpl *curPlayer, int64_t seekToMs) in NotifySeekComplete()
1115 const PlayerImpl *playImpl = (const PlayerImpl*)handle; in GetReadableSize()
[all …]
H A Dplayer_impl.h67 class PlayerImpl : public PlayerInterface {
72 PlayerImpl();
73 ~PlayerImpl();
102 void NotifySeekComplete(PlayerImpl *curPlayer, int64_t seekToMs);
103 void NotifyPlaybackComplete(PlayerImpl *curPlayer);
108 void UpdateState(PlayerImpl *curPlayer, PlayerStatus state);
/ohos5.0/foundation/multimedia/media_lite/services/player_lite/factory/src/
H A Dplayer_factory.cpp34 player = std::shared_ptr<PlayerInterface>(new (std::nothrow) PlayerImpl()); in CreatePlayer()
51 return std::shared_ptr<PlayerInterface>(new (std::nothrow) PlayerImpl()); in CreatePlayer()
/ohos5.0/foundation/multimedia/media_lite/frameworks/player_lite/passthrough/liteplayer/
H A Dplayer_client.h28 class PlayerImpl; variable
69 std::unique_ptr<PlayerImpl> impl_;
H A Dplayer_client.cpp21 : impl_(new (std::nothrow) PlayerImpl()) in PlayerClient()