Home
last modified time | relevance | path

Searched refs:channelCnt (Results 1 – 13 of 13) sorted by relevance

/ohos5.0/foundation/ai/intelligent_voice_framework/services/intell_voice_engine/server/wakeup/
H A Dwakeup_source_process.cpp36 void WakeupSourceProcess::Init(uint32_t channelCnt) in Init() argument
42 for (uint32_t i = 0; i < channelCnt; i++) { in Init()
51 channelCnt_ = channelCnt; in Init()
52 InitDebugFile(channelCnt); in Init()
144 void WakeupSourceProcess::InitDebugFile(uint32_t channelCnt) in InitDebugFile() argument
146 for (uint32_t i = 0; i < channelCnt; i++) { in InitDebugFile()
H A Dwakeup_source_process.h34 void Init(uint32_t channelCnt);
42 void InitDebugFile(uint32_t channelCnt);
/ohos5.0/foundation/ai/intelligent_voice_framework/utils/
H A Dintell_voice_util.cpp41 …ol IntellVoiceUtil::DeinterleaveAudioData(const int16_t *buffer, uint32_t size, int32_t channelCnt, in DeinterleaveAudioData() argument
44 if (channelCnt == 0) { in DeinterleaveAudioData()
48 uint32_t channelLen = size / channelCnt; in DeinterleaveAudioData()
54 for (int32_t i = 0; i < channelCnt; i++) { in DeinterleaveAudioData()
56 channelData[j] = buffer[i + j * channelCnt]; in DeinterleaveAudioData()
H A Dintell_voice_util.h28 static bool DeinterleaveAudioData(const int16_t *buffer, uint32_t size, int32_t channelCnt,
/ohos5.0/foundation/multimedia/media_foundation/engine/plugin/plugins/ffmpeg_adapter/utils/
H A Daac_audio_config_parser.cpp229 bool AACAudioConfigParser::CalculateProfile(int channelCnt, int pcu, int rcu) in CalculateProfile() argument
232channelCnt <= (maxChannelCnt) && audioConfig_.sampleRate <= (maxSampleRate) && pcu <= (maxPcu) && … in CalculateProfile()
309 int channelCnt = sceCnt + (2 * cpeCnt); // 2 in ParseLevel() local
310 return CalculateProfile(channelCnt, pcu, rcu); in ParseLevel()
H A Daac_audio_config_parser.h63 bool CalculateProfile(int channelCnt, int pcu, int rcu);
/ohos5.0/foundation/multimedia/media_lite/services/player_lite/impl/player_control/decoder/
H A Ddecoder.h43 int32_t channelCnt; /* for pcm frame */ member
H A Ddecoder.cpp64 param[index].val = (void *)&attr.adecAttr.channelCnt; in ConvertAdecAttributToParams()
/ohos5.0/drivers/peripheral/codec/test/demo/heif/src/
H A Dcodec_heif_helper.cpp99 tmapMeta.channelCnt = MULTI_CHANNEL; in AddPropOnlyForTmap()
/ohos5.0/drivers/interface/codec/image/v2_0/
H A DCodecImageType.idl333 unsigned short channelCnt; /**< The number of channels, it is either 1 or 3. */
/ohos5.0/drivers/peripheral/codec/test/unittest/hdi_image/
H A Dcodec_hdi_heif_encode_test.cpp237 tmapMeta.channelCnt = MULTI_CHANNEL; in SetPropeForTmap()
/ohos5.0/foundation/multimedia/image_framework/plugins/common/libs/image/libextplugin/src/
H A Dext_encoder.cpp1998 …toneMapMetadata.channelCnt = (isoMeta.gainmapChannelNum == 0) ? GAINMAP_CHANNEL_SINGLE : GAINMAP_C… in GetToneMapMetadata()
2012 if (toneMapMetadata.channelCnt == GAINMAP_CHANNEL_MULTI) { in GetToneMapMetadata()
/ohos5.0/foundation/multimedia/media_lite/services/player_lite/impl/player_control/player/
H A Dliteplayer.cpp724 …attr.adecAttr.channelCnt = (mime == MEDIA_MIMETYPE_AUDIO_PCM) ? fmtFileInfo_.u32AudioChannelCnt : … in AudioDecoderStart()