HomeSort by relevance Sort by last modified time
    Searched refs:acm (Results 1 - 25 of 33) sorted by null

1 2

  /frameworks/av/camera/ndk/
NdkCameraMetadata.cpp 31 const ACameraMetadata* acm, uint32_t tag, ACameraMetadata_const_entry* entry) {
33 if (acm == nullptr || entry == nullptr) {
35 __FUNCTION__, acm, tag, entry);
38 return acm->getConstEntry(tag, entry);
43 const ACameraMetadata* acm, /*out*/int32_t* numTags, /*out*/const uint32_t** tags) {
45 if (acm == nullptr || numTags == nullptr || tags == nullptr) {
47 __FUNCTION__, acm, numTags, tags);
50 return acm->getTags(numTags, tags);
  /external/webrtc/webrtc/modules/audio_coding/test/
PacketLossTest.cc 27 void ReceiverWithPacketLoss::Setup(AudioCodingModule *acm,
38 Receiver::Setup(acm, rtpStream, ss.str(), channels);
89 void SenderWithFEC::Setup(AudioCodingModule *acm, RTPStream *rtpStream,
92 Sender::Setup(acm, rtpStream, in_file_name, sample_rate, channels);
129 rtc::scoped_ptr<AudioCodingModule> acm(AudioCodingModule::Create(0));
131 int codec_id = acm->Codec("opus", 48000, channels_);
144 sender_->Setup(acm.get(), &rtpFile, in_file_name_, sample_rate_hz_, channels_,
146 if (acm->SendCodec()) {
159 receiver_->Setup(acm.get(), &rtpFile, "packetLoss_out", channels_,
EncodeDecodeTest.cc 54 void Sender::Setup(AudioCodingModule *acm, RTPStream *rtpStream,
57 int noOfCodecs = acm->NumberOfCodecs();
79 EXPECT_EQ(0, acm->Codec(n, &sendCodec));
86 EXPECT_EQ(0, acm->Codec(codecNo, &sendCodec));
90 EXPECT_EQ(0, acm->RegisterSendCodec(sendCodec));
92 EXPECT_EQ(0, acm->RegisterTransportCallback(_packetization));
94 _acm = acm;
125 void Receiver::Setup(AudioCodingModule *acm, RTPStream *rtpStream,
129 EXPECT_EQ(0, acm->InitializeReceiver());
131 noOfCodecs = acm->NumberOfCodecs()
    [all...]
PacketLossTest.h 23 void Setup(AudioCodingModule *acm, RTPStream *rtpStream,
40 void Setup(AudioCodingModule *acm, RTPStream *rtpStream,
EncodeDecodeTest.h 50 void Setup(AudioCodingModule *acm, RTPStream *rtpStream,
73 void Setup(AudioCodingModule *acm, RTPStream *rtpStream,
delay_test.cc 57 AcmSettings acm; member in struct:webrtc::__anon44117::TestSettings
134 "ACM: DTX %s, FEC %s\n"
137 config.codec.num_channels, config.acm.dtx ? "on" : "off",
138 config.acm.fec ? "on" : "off",
141 ConfigAcm(config.acm);
257 test_setting.acm.dtx = FLAGS_dtx;
258 test_setting.acm.fec = FLAGS_fec;
TestAllCodecs.h 29 void RegisterReceiverACM(AudioCodingModule* acm);
TestStereo.h 36 void RegisterReceiverACM(AudioCodingModule* acm);
Channel.h 60 void RegisterReceiverACM(AudioCodingModule *acm);
iSACTest.cc 45 int16_t SetISAConfig(ACMTestISACConfig& isacConfig, AudioCodingModule* acm,
50 auto sendCodec = acm->SendCodec();
55 EXPECT_EQ(0, acm->RegisterSendCodec(*sendCodec));
64 EXPECT_EQ(0, acm->RegisterSendCodec(*sendCodec));
TestAllCodecs.cc 55 void TestPack::RegisterReceiverACM(AudioCodingModule* acm) {
56 receiver_acm_ = acm;
348 // Input: side - which ACM to use, 'A' or 'B'
391 // Set pointer to the ACM where to register the codec.
432 // Add 10 msec to ACM.
454 // Run received side of ACM.
Channel.cc 271 void Channel::RegisterReceiverACM(AudioCodingModule* acm) {
272 _receiverACM = acm;
TestStereo.cc 42 void TestPackStereo::RegisterReceiverACM(AudioCodingModule* acm) {
43 receiver_acm_ = acm;
674 // Input: side - which ACM to use, 'A' or 'B'
700 // Set pointer to the ACM where to register the codec
758 // Add 10 msec to ACM
794 // Run received side of ACM
  /external/expat/
expat.spec 81 * Fri Jul 16 2004 Fred L. Drake, Jr. <fdrake@acm.org>
86 * Tue Oct 21 2003 Fred L. Drake, Jr. <fdrake@acm.org>
90 * Mon Oct 20 2003 Fred L. Drake, Jr. <fdrake@acm.org>
94 * Sat Jan 25 2003 Fred L. Drake, Jr. <fdrake@acm.org>
98 * Wed Sep 4 2002 Fred L. Drake, Jr. <fdrake@acm.org>
104 * Sat Jun 29 2002 Fred L. Drake, Jr. <fdrake@acm.org>
108 * Fri May 17 2002 Fred L. Drake, Jr. <fdrake@acm.org>
113 * Wed Jul 25 2001 Fred L. Drake, Jr. <fdrake@acm.org>
  /external/webrtc/webrtc/modules/audio_coding/acm2/
acm_send_test_oldapi.h 60 AudioCodingModule* acm() { return acm_.get(); } function in class:webrtc::test::AcmSendTestOldApi
65 // Creates a Packet object from the last packet produced by ACM (and received
audio_coding_module_unittest_oldapi.cc 238 // Check if the statistics are initialized correctly. Before any call to ACM
456 // A multi-threaded test for ACM. This base class is using the PCM16b 16 kHz
550 // Now we're not holding the crit sect when calling ACM.
571 // Now we're not holding the crit sect when calling ACM.
598 // This is a multi-threaded ACM test using iSAC. The test encodes audio
641 // Register iSAC codec in ACM, effectively unregistering the PCM16B codec
750 // Register iSAC codec in ACM, effectively unregistering the PCM16B codec
804 // Now we're not holding the crit sect when calling ACM.
806 // Insert into ACM.
    [all...]
  /external/wpa_supplicant_8/wpa_supplicant/
wmm_ac.h 37 * acm - Admission Control Mandatory
38 * In case an access category is ACM, the traffic will have
41 unsigned int acm:1; member in struct:wmm_ac_assoc_data::__anon44844
wmm_ac.c 403 /* Requested accesss category must have acm */
404 if (!wpa_s->wmm_ac_assoc_info->ac_params[req_ac].acm) {
405 wpa_printf(MSG_DEBUG, "WMM AC: AC %d is not ACM", req_ac);
449 assoc_data->ac_params[i].acm =
454 assoc_data->ac_params[WMM_AC_BE].acm,
455 assoc_data->ac_params[WMM_AC_BK].acm,
456 assoc_data->ac_params[WMM_AC_VI].acm,
457 assoc_data->ac_params[WMM_AC_VO].acm);
870 "%s: acm=%d uapsd=%d\n",
872 assoc_info->ac_params[ac].acm,
    [all...]
  /external/valgrind/
valgrind.spec 9 Packager: Julian Seward <jseward@acm.org>
  /frameworks/base/services/core/java/com/android/server/power/
BatterySaverPolicy.java 291 final AccessibilityManager acm = mContext.getSystemService(AccessibilityManager.class); local
293 acm.addAccessibilityStateChangeListener((enabled) -> {
299 final boolean enabled = acm.isEnabled();
  /external/wpa_supplicant_8/src/ap/
wmm.c 24 static inline u8 wmm_aci_aifsn(int aifsn, int acm, int aci)
28 if (acm)
299 /* TODO: check the request is for an AC with ACM set, if not, refuse
  /external/linux-kselftest/
.mailmap 42 Corey Minyard <minyard@acm.org>
  /external/libmtp/src/
mtpz.c 1667 unsigned char *acm = (unsigned char *)malloc(785); local
    [all...]
  /external/antlr/antlr-3.4/runtime/ActionScript/project/src/org/antlr/runtime/
BaseRecognizer.as 433 * http://portal.acm.org/citation.cfm?id=947902.947905
  /external/antlr/antlr-3.4/runtime/Delphi/Sources/Antlr3.Runtime/
Antlr.Runtime.pas     [all...]

Completed in 188 milliseconds

1 2