Home
last modified time | relevance | path

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

/packages/modules/Bluetooth/system/stack/mmc/codec_server/
Dhfp_lc3_mmc_encoder.h29 class HfpLc3Encoder : public MmcInterface {
31 explicit HfpLc3Encoder();
32 ~HfpLc3Encoder();
35 HfpLc3Encoder(const HfpLc3Encoder&) = delete;
36 HfpLc3Encoder& operator=(const HfpLc3Encoder&) = delete;
Dhfp_lc3_mmc_encoder.cc32 HfpLc3Encoder::HfpLc3Encoder() : hfp_lc3_encoder_mem_(nullptr) {} in HfpLc3Encoder() function in mmc::HfpLc3Encoder
34 HfpLc3Encoder::~HfpLc3Encoder() { cleanup(); } in ~HfpLc3Encoder()
36 int HfpLc3Encoder::init(ConfigParam config) { in init()
63 void HfpLc3Encoder::cleanup() { in cleanup()
70 int HfpLc3Encoder::transcode(uint8_t* i_buf, int i_len, uint8_t* o_buf, in transcode()
/packages/modules/Bluetooth/system/stack/mmc/test/
Dhfp_lc3_mmc_encoder_test.cc48 encoder_ = std::make_unique<mmc::HfpLc3Encoder>(); in SetUp()
51 std::unique_ptr<mmc::HfpLc3Encoder> encoder_ = nullptr;
/packages/modules/Bluetooth/system/stack/mmc/daemon/
Dservice.cc193 codec_server = std::make_unique<HfpLc3Encoder>(); in CodecInit()