Home
last modified time | relevance | path

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

/ohos5.0/foundation/multimedia/audio_framework/frameworks/native/audioadapter/src/
H A Dpulse_audio_service_adapter_impl.cpp853 SourceOutput sourceOutput = {}; in PaGetAllSourceOutputsCb() local
854 sourceOutput.streamId = sessionID; in PaGetAllSourceOutputsCb()
855 sourceOutput.streamType = audioStreamType; in PaGetAllSourceOutputsCb()
857 sourceOutput.paStreamId = i->index; in PaGetAllSourceOutputsCb()
858 sourceOutput.deviceSourceId = i->source; in PaGetAllSourceOutputsCb()
859 CastValue<int32_t>(sourceOutput.uid, pa_proplist_gets(i->proplist, "stream.client.uid")); in PaGetAllSourceOutputsCb()
860 CastValue<int32_t>(sourceOutput.pid, pa_proplist_gets(i->proplist, "stream.client.pid")); in PaGetAllSourceOutputsCb()
861 CastValue<uint64_t>(sourceOutput.startTime, pa_proplist_gets(i->proplist, "stream.startTime")); in PaGetAllSourceOutputsCb()
862 userData->sourceOutputList.push_back(sourceOutput); in PaGetAllSourceOutputsCb()
/ohos5.0/foundation/multimedia/audio_framework/frameworks/native/pulseaudio/modules/hdi/
H A Dhdi_source.c280 pa_source_output *sourceOutput; in PaRtpollSetTimerFunc() local
281 while ((sourceOutput = pa_hashmap_iterate(u->source->thread_info.outputs, &state, NULL))) { in PaRtpollSetTimerFunc()
282 … const char *cstringClientUid = pa_proplist_gets(sourceOutput->proplist, "stream.client.uid"); in PaRtpollSetTimerFunc()
283 if (cstringClientUid && (sourceOutput->thread_info.state == PA_SOURCE_OUTPUT_RUNNING)) { in PaRtpollSetTimerFunc()
/ohos5.0/foundation/multimedia/audio_framework/services/audio_policy/server/src/service/
H A Daudio_policy_service.cpp986 inline std::string PrintSourceOutput(SourceOutput sourceOutput) in PrintSourceOutput() argument
989 value << "streamId:[" << sourceOutput.streamId << "] "; in PrintSourceOutput()
990 value << "streamType:[" << sourceOutput.streamType << "] "; in PrintSourceOutput()
991 value << "uid:[" << sourceOutput.uid << "] "; in PrintSourceOutput()
992 value << "pid:[" << sourceOutput.pid << "] "; in PrintSourceOutput()
993 value << "statusMark:[" << sourceOutput.statusMark << "] "; in PrintSourceOutput()
995 value << "startTime:[" << sourceOutput.startTime << "]"; in PrintSourceOutput()
5599 for (SourceOutput sourceOutput : sourceOutputs) { in WriteDeviceChangedSysEvents() local
5625 const SourceOutput &sourceOutput) in WriteInDeviceChangedSysEvents() argument
5631 bean->Add("STREAMID", sourceOutput.streamId); in WriteInDeviceChangedSysEvents()
[all …]
/ohos5.0/foundation/multimedia/audio_framework/services/audio_policy/server/include/service/
H A Daudio_policy_service.h670 const SourceOutput &sourceOutput);