HomeSort by relevance Sort by last modified time
    Searched full:dtmf (Results 1 - 25 of 261) sorted by null

1 2 3 4 5 6 7 8 91011

  /hardware/bsp/intel/peripheral/libupm/src/ht9170/
CMakeLists.txt 2 set (libdescription "upm ht9170 DTMF decoder")
ht9170.h 32 * @brief HT9170 DTMF Decoder library
40 * @comname HT9170 DTMF Decoder
47 * @brief API for the HT9170 DTMF Decoder
49 * This driver was developed using the DTMF (Dual-Tone
50 * Multi-Frequency) Shield by Seeed Studio*. It can decode DTMF signals presented at
51 * its audio input. It does not generate DTMF signals.
76 * Checks to see if a DTMF number is ready to be read
  /frameworks/av/services/audiopolicy/engineconfigurable/parameter-framework/examples/Settings/
volumes.pfw 17 domain: Dtmf
23 /Policy/policy/streams/dtmf/applicable_volume_profile/volume_profile = voice_call
26 /Policy/policy/streams/dtmf/applicable_volume_profile/volume_profile = dtmf
device_for_strategy_dtmf.pfw 3 supDomain: Dtmf
7 component: /Policy/policy/strategies/dtmf/selected_output_devices/mask
18 # DTMF follows Media strategy if not in call
24 component: /Policy/policy/strategies/dtmf/selected_output_devices/mask
45 # DTMF follows Media strategy if not in call
52 component: /Policy/policy/strategies/dtmf/selected_output_devices/mask
73 # DTMF follows Media strategy if not in call
80 component: /Policy/policy/strategies/dtmf/selected_output_devices/mask
101 # DTMF follows Media strategy if not in call
108 component: /Policy/policy/strategies/dtmf/selected_output_devices/mas
    [all...]
strategy_for_stream.pfw 16 /Policy/policy/streams/dtmf/applicable_strategy/strategy = dtmf
PolicyConfigurableDomains.xml     [all...]
  /hardware/bsp/intel/peripheral/libupm/examples/c++/
ht9170.cxx 46 // Instantiate a DTMF decoder
47 upm::HT9170* dtmf = new upm::HT9170(12, 11, 10, 9, 8); local
55 if (dtmf->digitReady())
57 cout << "Got DTMF code: " << dtmf->decodeDigit() << endl;
59 while (dtmf->digitReady())
70 delete dtmf;
  /external/webrtc/webrtc/voice_engine/include/
voe_dtmf.h 14 // - DTMF tone generation.
21 // VoEDtmf* dtmf = VoEDtmf::GetInterface(voe);
25 // dtmf->SendTelephoneEvent(ch, 7);
30 // dtmf->Release();
72 // Toogles DTMF feedback state: when a DTMF tone is sent, the same tone
77 // Gets the DTMF feedback status.
80 // Plays a DTMF feedback tone (only locally).
  /packages/services/Telecomm/tests/src/com/android/server/telecom/tests/
TODO 9 DTMF tones
  /packages/apps/Dialer/InCallUI/src/com/android/incallui/
DialpadPresenter.java 50 * Processes the specified digit as a DTMF key, by playing the
51 * appropriate DTMF tone, and appending the digit to the EditText
52 * field that displays the DTMF digits sent so far.
56 Log.d(this, "Processing dtmf key " + c);
57 // if it is a valid key, then update the display and send the dtmf tone.
59 Log.d(this, "updating display and sending dtmf tone for '" + c + "'");
66 Log.d(this, "ignoring dtmf request for '" + c + "'");
DialpadFragment.java 119 * Our own key listener, specialized for dealing with DTMF codes.
121 * 2. Allow ONLY valid DTMF characters to generate a tone and be
122 * sent as a DTMF code.
126 * while the DTMF dialpad is up.
135 * Overriden to return correct DTMF-dialable characters.
167 * a dtmf code and play a local dtmf tone.
182 // if the character is a valid dtmf code, start playing the tone and send the
197 * a dtmf code and the dtmf tone
    [all...]
  /external/webrtc/talk/app/webrtc/
dtmfsender.h 51 // to send DTMF.
55 // of sending DTMF. Otherwise returns false.
57 // Sends DTMF |code| via the audio track with given id (|track_id|).
58 // The |duration| indicates the length of the DTMF tone in ms.
104 // The DTMF sending task.
134 // Get DTMF code from the DTMF event character.
dtmfsender.cc 66 // Get DTMF code from the DTMF event character.
149 << "InsertDtmf is called on DtmfSender that can't send DTMF.";
158 // Kick off a new DTMF task queue.
195 // Get the first DTMF tone from the tone buffer. Unrecognized characters will
210 // a valid DTMF tone.
228 LOG(LS_ERROR) << "The DtmfProvider can no longer send DTMF.";
248 LOG(LS_INFO) << "The Dtmf provider is deleted. Clear the sending queue.";
dtmfsenderinterface.h 45 // Triggered when DTMF |tone| is sent.
61 // Returns true if this DtmfSender is capable of sending DTMF.
65 // Queues a task that sends the DTMF |tones|. The |tones| parameter is treated
67 // * generate the associated DTMF tones. The characters a to d are equivalent
78 // object to generate DTMF is still running, the previous task is canceled.
  /hardware/bsp/intel/peripheral/libupm/examples/javascript/
ht9170.js 28 // Instantiate a DTMF decoder
38 console.log("Got DTMF code: " + dtmf_obj.decodeDigit());
40 while (dtmf.digitReady())
  /hardware/bsp/intel/peripheral/libupm/examples/python/
ht9170.py 27 # Instantiate a DTMF decoder
50 print "Got DTMF code:", dtmf_obj.decodeDigit()
52 while (dtmf.digitReady()):
  /packages/services/Telecomm/src/com/android/server/telecom/
DtmfLocalTonePlayer.java 32 * Plays DTMF tones locally for the caller to hear. In order to reduce (1) the amount of times we
41 /** The current call associated with an existing dtmf session. */
62 * Starts playing the dtmf tone specified by c.
86 * Stops any currently playing dtmf tone.
108 * @param call The call associated with this dtmf session.
132 * Releases resources needed for playing local dtmf tones.
173 HandlerThread thread = new HandlerThread("tonegenerator-dtmf");
  /external/webrtc/webrtc/modules/rtp_rtcp/source/
rtp_sender_audio.h 43 // set audio packet size, used to determine when it's time to send a DTMF
52 // Send a DTMF tone using RFC 2833 (4733)
82 // DTMF
  /external/webrtc/webrtc/voice_engine/test/auto_test/standard/
dtmf_test.cc 55 // This test modifies the DTMF payload type from the default 106 to 88
56 // and then runs through 16 DTMF out.of-band events.
60 TEST_LOG("Changing DTMF payload type.\n");
  /frameworks/base/core/java/android/bluetooth/
IBluetoothHeadsetPhone.aidl 28 boolean sendDtmf(int dtmf);
  /frameworks/base/media/java/android/media/
package.html 5 audio (e.g., play MP3s or other music files, ringtones, game sound effects, or DTMF tones)
  /frameworks/base/telecomm/java/android/telecom/
InCallAdapter.java 137 * Instructs Telecom to play a dual-tone multi-frequency signaling (DTMF) tone in a call.
139 * Any other currently playing DTMF tone in the specified call is immediately stopped.
142 * @param digit A character representing the DTMF digit for which to play the tone. This
153 * Instructs Telecom to stop any dual-tone multi-frequency signaling (DTMF) tone currently
156 * DTMF tones are played by calling {@link #playDtmfTone(String,char)}. If no DTMF tone is
169 * Instructs Telecom to continue playing a post-dial DTMF string.
171 * A post-dial DTMF string is a string of digits entered after a phone number, when dialed,
172 * that are immediately sent as DTMF tones to the recipient as soon as the connection is made.
176 * If the DTMF string contains a {@link TelecomManager#DTMF_CHARACTER_PAUSE} symbol, Teleco
    [all...]
  /frameworks/opt/net/voip/src/java/android/net/rtp/
AudioStream.java 116 * @throws IllegalArgumentException if its type is used by DTMF.
124 throw new IllegalArgumentException("The type is used by DTMF");
130 * Returns the RTP payload type for dual-tone multi-frequency (DTMF) digits,
140 * Sets the RTP payload type for dual-tone multi-frequency (DTMF) digits.
143 * RTP payload type for DTMF is assigned dynamically, so it must be in the
144 * range of 96 and 127. One can use {@code -1} to disable DTMF and free up
  /packages/services/Telephony/src/com/android/services/telephony/
CdmaConnection.java 69 // Queue of pending short-DTMF characters.
73 // Indicates that the DTMF confirmation from telephony is pending.
99 Log.i(this, "sending dtmf digit as burst");
102 Log.i(this, "sending dtmf digit directly");
234 * Read the settings to determine which type of DTMF method this CDMA phone calls.
275 // It would be nice to log the digit, but since DTMF digits can be passwords
278 Log.i(this, "%d dtmf character[s] removed from the queue", dtmfDigits.length());
  /external/webrtc/webrtc/modules/audio_coding/neteq/
dtmf_buffer.h 46 // This is the buffer holding DTMF events while waiting for them to be played.
65 // Static method to parse 4 bytes from |payload| as a DTMF event (RFC 4733)
77 // Checks if a DTMF event should be played at time |current_timestamp|. If so,

Completed in 645 milliseconds

1 2 3 4 5 6 7 8 91011