Searched refs:PlayerImpl (Results 1 – 7 of 7) sorted by relevance
32 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::PlayerImpl57 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 …]
28 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_;
67 PlayerImpl::PlayerImpl() in PlayerImpl() function in OHOS::Media::PlayerImpl129 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 …]
67 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);
34 player = std::shared_ptr<PlayerInterface>(new (std::nothrow) PlayerImpl()); in CreatePlayer()51 return std::shared_ptr<PlayerInterface>(new (std::nothrow) PlayerImpl()); in CreatePlayer()
28 class PlayerImpl; variable69 std::unique_ptr<PlayerImpl> impl_;
21 : impl_(new (std::nothrow) PlayerImpl()) in PlayerClient()