Searched refs:soundParserListener_ (Results 1 – 2 of 2) sorted by relevance
159 soundParserListener_ = std::make_shared<SoundParserListener>(weak_from_this()); in DoDecode()160 …CHECK_AND_RETURN_RET_LOG(soundParserListener_ != nullptr, MSERR_INVALID_VAL, "Invalid sound parser… in DoDecode()161 audioDecCb_->SetDecodeCallback(soundParserListener_); in DoDecode()172 …CHECK_AND_RETURN_RET_LOG(soundParserListener_ != nullptr, MSERR_INVALID_VAL, "Invalid sound parser… in GetSoundData()173 return soundParserListener_->GetSoundData(soundData); in GetSoundData()178 CHECK_AND_RETURN_RET_LOG(soundParserListener_ != nullptr, 0, "Invalid sound parser listener"); in GetSoundDataTotalSize()179 return soundParserListener_->GetSoundDataTotalSize(); in GetSoundDataTotalSize()184 … CHECK_AND_RETURN_RET_LOG(soundParserListener_ != nullptr, false, "Invalid sound parser listener"); in IsSoundParserCompleted()185 return soundParserListener_->IsSoundParserCompleted(); in IsSoundParserCompleted()202 if (soundParserListener_ != nullptr) soundParserListener_.reset(); in Release()
151 std::shared_ptr<SoundParserListener> soundParserListener_; variable