Searched refs:PlayerImpl (Results 1 - 7 of 7) sorted by relevance
/foundation/multimedia/player_framework/frameworks/native/player/ |
H A D | player_impl.cpp | 25 constexpr OHOS::HiviewDFX::HiLogLabel LABEL = {LOG_CORE, LOG_DOMAIN_PLAYER, "PlayerImpl"}; 32 MEDIA_LOGD("PlayerImpl: CreatePlayer in"); in CreatePlayer() 33 std::shared_ptr<PlayerImpl> impl = std::make_shared<PlayerImpl>(); in CreatePlayer() 34 CHECK_AND_RETURN_RET_LOG(impl != nullptr, nullptr, "failed to new PlayerImpl"); in CreatePlayer() 37 CHECK_AND_RETURN_RET_LOG(ret == MSERR_OK, nullptr, "failed to init PlayerImpl"); in CreatePlayer() 42 int32_t PlayerImpl::Init() in Init() 44 MEDIA_LOGD("PlayerImpl:0x%{public}06" PRIXPTR " Init in", FAKE_POINTER(this)); in Init() 51 PlayerImpl::PlayerImpl() in PlayerImpl() function in OHOS::Media::PlayerImpl [all...] |
H A D | player_impl.h | 28 class PlayerImpl : public Player, public NoCopyable, public std::enable_shared_from_this<PlayerImpl> { class 30 PlayerImpl(); 31 ~PlayerImpl(); 102 PlayerImplCallback(const std::shared_ptr<PlayerCallback> playerCb, std::shared_ptr<PlayerImpl> player); 109 std::weak_ptr<PlayerImpl> player_;
|
/foundation/multimedia/media_lite/services/player_lite/impl/ |
H A D | player_impl.cpp | 67 PlayerImpl::PlayerImpl() in PlayerImpl() function in OHOS::Media::PlayerImpl 98 int32_t PlayerImpl::Init(void) in Init() 105 MEDIA_ERR_LOG("PlayerImpl::Init CodecInit err\n"); in Init() 109 MEDIA_ERR_LOG("PlayerImpl::Init memset err\n"); in Init() 117 int32_t PlayerImpl::DeInit(void) in DeInit() 129 PlayerImpl::~PlayerImpl() in ~PlayerImpl() 133 MEDIA_INFO_LOG("~PlayerImpl process"); in ~PlayerImpl() 136 int32_t PlayerImpl [all...] |
H A D | player_impl.h | 67 class PlayerImpl : public PlayerInterface { class 72 PlayerImpl(); 73 ~PlayerImpl(); 102 void NotifySeekComplete(PlayerImpl *curPlayer, int64_t seekToMs); 103 void NotifyPlaybackComplete(PlayerImpl *curPlayer); 108 void UpdateState(PlayerImpl *curPlayer, PlayerStatus state);
|
/foundation/multimedia/media_lite/services/player_lite/factory/src/ |
H A D | player_factory.cpp | 34 player = std::shared_ptr<PlayerInterface>(new (std::nothrow) PlayerImpl()); in CreatePlayer() 51 return std::shared_ptr<PlayerInterface>(new (std::nothrow) PlayerImpl()); in CreatePlayer()
|
/foundation/multimedia/media_lite/frameworks/player_lite/passthrough/liteplayer/ |
H A D | player_client.h | 28 class PlayerImpl; 69 std::unique_ptr<PlayerImpl> impl_;
|
H A D | player_client.cpp | 21 : impl_(new (std::nothrow) PlayerImpl()) in PlayerClient()
|
Completed in 3 milliseconds