Home
last modified time | relevance | path

Searched refs:mmc (Results 1 – 25 of 35) sorted by relevance

12

/packages/modules/Bluetooth/system/stack/mmc/test/
Dhfp_lc3_mmc_decoder_test.cc38 const int kInputLen = mmc::HFP_LC3_PKT_FRAME_LEN;
39 const int kOutputLen = mmc::HFP_LC3_PCM_BYTES + 1;
48 decoder_ = std::make_unique<mmc::HfpLc3Decoder>(); in SetUp()
51 std::unique_ptr<mmc::HfpLc3Decoder> decoder_ = nullptr;
75 mmc::ConfigParam config; in SetUp()
76 *config.mutable_hfp_lc3_decoder_param() = mmc::Lc3Param(); in SetUp()
77 ASSERT_EQ(decoder_->init(config), mmc::HFP_LC3_PKT_FRAME_LEN); in SetUp()
90 mmc::ConfigParam config; in TEST_F()
91 *config.mutable_hfp_lc3_encoder_param() = mmc::Lc3Param(); in TEST_F()
99 mmc::ConfigParam config; in TEST_F()
[all …]
Dhfp_lc3_mmc_encoder_test.cc38 const int kInputLen = mmc::HFP_LC3_PCM_BYTES;
39 const int kOutputLen = mmc::HFP_LC3_PKT_FRAME_LEN;
48 encoder_ = std::make_unique<mmc::HfpLc3Encoder>(); in SetUp()
51 std::unique_ptr<mmc::HfpLc3Encoder> encoder_ = nullptr;
75 mmc::ConfigParam config; in SetUp()
76 *config.mutable_hfp_lc3_encoder_param() = mmc::Lc3Param(); in SetUp()
77 ASSERT_EQ(encoder_->init(config), mmc::HFP_LC3_PCM_BYTES); in SetUp()
90 mmc::ConfigParam config; in TEST_F()
91 *config.mutable_hfp_lc3_decoder_param() = mmc::Lc3Param(); in TEST_F()
99 mmc::ConfigParam config; in TEST_F()
[all …]
/packages/modules/Bluetooth/system/stack/mmc/
DBUILD.gn19 group("mmc") {
27 "//bt/system/stack/mmc/codec_client:libcodec_client",
28 "//bt/system/stack/mmc/proto:mmc_config_proto",
60 sources = [ "dbus_permissions/org.chromium.mmc.CodecManager.conf" ]
65 sources = [ "dbus_service/org.chromium.mmc.CodecManager.service" ]
75 sources = [ "tmpfiles.d/mmc.conf" ]
80 sources = [ "minijail/mmc.conf" ]
94 "//bt/system/stack/mmc/proto:mmc_service_proto",
95 "//bt/system/stack/mmc/codec_server:libcodec_server_hfp_lc3",
98 deps += [ "//bt/system/stack/mmc/codec_server:libcodec_server_a2dp_aac" ]
[all …]
DREADME.md13 …/platform/superproject/main/+/main:packages/modules/Bluetooth/system/stack/mmc/mmc_interface/mmc_i…
20 …/platform/superproject/main/+/main:packages/modules/Bluetooth/system/stack/mmc/proto/mmc_config.pr…
26 …/platform/superproject/main/+/main:packages/modules/Bluetooth/system/stack/mmc/proto/mmc_config.pr…
30 …/platform/superproject/main/+/main:packages/modules/Bluetooth/system/stack/mmc/daemon/service.cc;d…
32 …/platform/superproject/main/+/main:packages/modules/Bluetooth/system/stack/mmc/codec_client/codec_…
43 * Design doc: go/floss-mmc
44 * Slides: go/floss-mmc-presentation
45 * Performance evaluation: go/floss-mmc-experiment
/packages/modules/Bluetooth/system/stack/mmc/codec_client/
Dcodec_client.cc37 namespace mmc { namespace
80 codec_manager_ = bus_->GetObjectProxy(mmc::kMmcServiceName, in CodecClient()
81 dbus::ObjectPath(mmc::kMmcServicePath)); in CodecClient()
99 dbus::MethodCall method_call(mmc::kMmcServiceInterface, in init()
100 mmc::kCodecInitMethod); in init()
103 mmc::CodecInitRequest request; in init()
126 mmc::CodecInitResponse response; in init()
177 dbus::MethodCall method_call(mmc::kMmcServiceInterface, in cleanup()
178 mmc::kCodecCleanUpMethod); in cleanup()
DBUILD.gn19 "//bt/system/stack/mmc:target_defaults",
28 "//bt/system/stack/mmc/proto:mmc_service_proto",
29 "//bt/system/stack/mmc/proto:mmc_config_proto",
30 "//bt/system/stack/mmc/metrics:libmmc_metrics",
Dcodec_client.h29 namespace mmc {
/packages/modules/Bluetooth/system/stack/btm/
Dhfp_lc3_encoder_linux.cc31 static mmc::CodecClient* client = nullptr;
35 client = new mmc::CodecClient; in hfp_lc3_encoder_init()
41 mmc::Lc3Param param; in hfp_lc3_encoder_init()
46 param.set_fmt(mmc::Lc3Param::kLc3PcmFormatS16); in hfp_lc3_encoder_init()
48 mmc::ConfigParam config; in hfp_lc3_encoder_init()
Dhfp_lc3_decoder_linux.cc34 static mmc::CodecClient* client = nullptr;
40 client = new mmc::CodecClient; in hfp_lc3_decoder_init()
46 mmc::Lc3Param param; in hfp_lc3_decoder_init()
51 param.set_fmt(mmc::Lc3Param::kLc3PcmFormatS16); in hfp_lc3_decoder_init()
53 mmc::ConfigParam config; in hfp_lc3_decoder_init()
/packages/modules/Bluetooth/system/stack/mmc/codec_server/
DBUILD.gn20 "//bt/system/stack/mmc:target_defaults",
31 "//bt/system/stack/mmc/proto:mmc_config_proto",
43 "//bt/system/stack/mmc:target_defaults",
57 "//bt/system/stack/mmc/proto:mmc_config_proto",
Dlc3_utils.h25 namespace mmc {
Da2dp_aac_mmc_encoder.h27 namespace mmc {
Dhfp_lc3_mmc_decoder.h25 namespace mmc {
Dhfp_lc3_mmc_encoder.h25 namespace mmc {
/packages/modules/Bluetooth/system/stack/mmc/init/
Dmmc_service.conf40 exec minijail0 --config /usr/share/minijail/mmc.conf \
45 wait --system --timeout 15 org.chromium.mmc.CodecManager
/packages/modules/Bluetooth/system/stack/mmc/minijail/
Dmmc.conf37 bind-mount = /run/mmc/sockets,/run/mmc/sockets,1
/packages/modules/Bluetooth/system/stack/mmc/proto/
DBUILD.gn21 proto_out_dir = "include/mmc/proto"
30 proto_out_dir = "include/mmc/proto"
/packages/modules/Bluetooth/system/stack/a2dp/
Da2dp_aac_encoder_linux.cc52 client = new mmc::CodecClient; in prepare_context()
54 mmc::AacEncoderParam param; in prepare_context()
61 mmc::ConfigParam config; in prepare_context()
101 mmc::CodecClient* client = nullptr;
/packages/modules/Bluetooth/system/stack/mmc/dbus_permissions/
Dorg.chromium.mmc.CodecManager.conf21 org.chromium.mmc.CodecManager. -->
29 org.chromium.mmc.CodecManager.-->
/packages/modules/Bluetooth/system/stack/mmc/tmpfiles.d/
Dmmc.conf20 d= /run/mmc/sockets 0770 mmc_service mmc_service
/packages/modules/Bluetooth/system/stack/mmc/mmc_interface/
Dmmc_interface.h24 namespace mmc {
/packages/modules/Bluetooth/system/stack/mmc/daemon/
Dconstants.h20 namespace mmc {
Dservice.h35 namespace mmc {
/packages/modules/Bluetooth/system/stack/mmc/metrics/
Dmmc_rtt_logger.h23 namespace mmc {
Dmmc_rtt_logger.cc25 namespace mmc { namespace

12