Searched refs:SoundParser (Results 1 - 7 of 7) sorted by relevance
/foundation/multimedia/player_framework/frameworks/native/soundpool/ |
H A D | sound_parser.cpp | 23 constexpr OHOS::HiviewDFX::HiLogLabel LABEL = {LOG_CORE, LOG_DOMAIN_SOUNDPOOL, "SoundParser"}; 31 SoundParser::SoundParser(int32_t soundID, std::string url) in SoundParser() function in OHOS::Media::SoundParser 42 SoundParser::SoundParser(int32_t soundID, int32_t fd, int64_t offset, int64_t length) in SoundParser() function in OHOS::Media::SoundParser 47 MEDIA_LOGI("SoundParser::SoundParser fd:%{public}d, fdSource_:%{public}d,", fd, fdSource_); in SoundParser() 59 SoundParser::~SoundParser() in ~SoundParser() 61 MEDIA_LOGI("SoundParser Destructio in ~SoundParser() [all...] |
H A D | sound_parser.h | 104 class SoundParser : public std::enable_shared_from_this<SoundParser> { class 106 SoundParser(int32_t soundID, std::string url); 107 SoundParser(int32_t soundID, int32_t fd, int64_t offset, int64_t length); 108 ~SoundParser(); 128 explicit SoundParserListener(const std::weak_ptr<SoundParser> soundParser) : soundParserInner_(soundParser) {} in SoundParserListener() 174 std::weak_ptr<SoundParser> soundParserInner_;
|
H A D | sound_id_manager.h | 43 std::shared_ptr<SoundParser> FindSoundParser(int32_t soundID) const; 51 std::map<int32_t, std::shared_ptr<SoundParser>> soundParsers_;
|
H A D | sound_id_manager.cpp | 99 auto soundParser = std::make_shared<SoundParser>(soundID, url); in Load() 121 auto soundParser = std::make_shared<SoundParser>(soundID, fd, offset, length); in Load() 169 std::shared_ptr<SoundParser> soundParser = FindSoundParser(soundID); in DoParser() 180 std::shared_ptr<SoundParser> SoundIDManager::FindSoundParser(int32_t soundID) const in FindSoundParser()
|
H A D | stream_id_manager.h | 35 int32_t Play(std::shared_ptr<SoundParser> soundParser, PlayParams playParameters);
|
H A D | soundpool.cpp | 109 std::shared_ptr<SoundParser> soundParser = soundIDManager_->FindSoundParser(soundID); in Play()
|
H A D | stream_id_manager.cpp | 89 int32_t StreamIDManager::Play(std::shared_ptr<SoundParser> soundParser, PlayParams playParameters) in Play()
|
Completed in 4 milliseconds