Home
last modified time | relevance | path

Searched refs:DfxAgent (Results 1 – 4 of 4) sorted by relevance

/ohos5.0/foundation/multimedia/player_framework/services/engine/histreamer/player/
H A Ddfx_agent.cpp39 DfxAgent::DfxAgent(const std::string& groupId, const std::string& appName) : groupId_(groupId), app… in DfxAgent() function in OHOS::Media::DfxAgent
45 DfxAgent::~DfxAgent() in ~DfxAgent()
50 void DfxAgent::SetSourceType(PlayerDfxSourceType type) in SetSourceType()
53 std::weak_ptr<DfxAgent> agent = shared_from_this(); in SetSourceType()
72 void DfxAgent::OnDfxEvent(const DfxEvent &event) in OnDfxEvent()
108 void DfxAgent::ReportEosSeek0Event(int32_t appUid) in ReportEosSeek0Event()
122 void DfxAgent::ResetAgent() in ResetAgent()
133 void DfxAgent::ProcessVideoLagEvent(std::weak_ptr<DfxAgent> ptr, const DfxEvent &event) in ProcessVideoLagEvent()
143 void DfxAgent::ProcessAudioLagEvent(std::weak_ptr<DfxAgent> ptr, const DfxEvent &event) in ProcessAudioLagEvent()
153 void DfxAgent::ProcessStreamLagEvent(std::weak_ptr<DfxAgent> ptr, const DfxEvent &event) in ProcessStreamLagEvent()
[all …]
H A Ddfx_agent.h37 class DfxAgent; variable
38 using DfxEventHandleFunc = std::function<void(std::weak_ptr<DfxAgent> ptr, const DfxEvent&)>;
40 class DfxAgent : public std::enable_shared_from_this<DfxAgent> {
42 DfxAgent(const std::string& groupId, const std::string& appName);
43 ~DfxAgent();
51 static void ProcessVideoLagEvent(std::weak_ptr<DfxAgent> ptr, const DfxEvent &event);
52 static void ProcessAudioLagEvent(std::weak_ptr<DfxAgent> ptr, const DfxEvent &event);
53 static void ProcessStreamLagEvent(std::weak_ptr<DfxAgent> ptr, const DfxEvent &event);
54 static void ProcessEosSeekEvent(std::weak_ptr<DfxAgent> ptr, const DfxEvent &event);
H A Dhiplayer_impl.h369 std::shared_ptr<DfxAgent> dfxAgent_{};
H A Dhiplayer_impl.cpp150 dfxAgent_ = std::make_shared<DfxAgent>(playerId_, bundleName_); in HiPlayerImpl()