Home
last modified time | relevance | path

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

/packages/modules/Bluetooth/system/stack/mmc/codec_server/
Dhfp_lc3_mmc_decoder.h29 class HfpLc3Decoder : public MmcInterface {
31 explicit HfpLc3Decoder();
32 ~HfpLc3Decoder();
35 HfpLc3Decoder(const HfpLc3Decoder&) = delete;
36 HfpLc3Decoder& operator=(const HfpLc3Decoder&) = delete;
Dhfp_lc3_mmc_decoder.cc30 HfpLc3Decoder::HfpLc3Decoder() : hfp_lc3_decoder_mem_(nullptr) {} in HfpLc3Decoder() function in mmc::HfpLc3Decoder
32 HfpLc3Decoder::~HfpLc3Decoder() { cleanup(); } in ~HfpLc3Decoder()
34 int HfpLc3Decoder::init(ConfigParam config) { in init()
61 void HfpLc3Decoder::cleanup() { in cleanup()
68 int HfpLc3Decoder::transcode(uint8_t* i_buf, int i_len, uint8_t* o_buf, in transcode()
/packages/modules/Bluetooth/system/stack/mmc/test/
Dhfp_lc3_mmc_decoder_test.cc48 decoder_ = std::make_unique<mmc::HfpLc3Decoder>(); in SetUp()
51 std::unique_ptr<mmc::HfpLc3Decoder> decoder_ = nullptr;
/packages/modules/Bluetooth/system/stack/mmc/daemon/
Dservice.cc191 codec_server = std::make_unique<HfpLc3Decoder>(); in CodecInit()