Searched refs:AudioGroup (Results 1 - 6 of 6) sorted by relevance

/frameworks/base/voip/java/android/net/rtp/
H A DAudioStream.java27 * configured {@link AudioCodec}. On the other side, An {@link AudioGroup}
31 * should be aware of the limitations described in {@link AudioGroup}.
33 * <p>An AudioStream becomes busy when it joins an AudioGroup. In this case most
36 * AudioGroup by calling {@link #join(AudioGroup)} with {@code null} and put it
43 * @see AudioGroup
48 private AudioGroup mGroup;
64 * {@link AudioGroup}.
72 * Returns the joined {@link AudioGroup}.
74 public AudioGroup getGrou
[all...]
H A DAudioGroup.java25 * An AudioGroup is an audio hub for the speaker, the microphone, and
28 * The AudioGroup will go through these components and process them one by one
35 * buffers and sends back the encoded packets. An AudioGroup does nothing if
51 * microphone are globally shared resources, only one AudioGroup at a time is
63 public class AudioGroup { class
102 * Creates an empty AudioGroup.
104 public AudioGroup() { method in class:AudioGroup
/frameworks/base/voip/jni/rtp/
H A DAudioGroup.cpp32 #define LOG_TAG "AudioGroup"
146 friend class AudioGroup;
471 class AudioGroup class in namespace:__anon1172
474 AudioGroup();
475 ~AudioGroup();
508 NetworkThread(AudioGroup *group) : Thread(false), mGroup(group) {}
520 AudioGroup *mGroup;
528 DeviceThread(AudioGroup *group) : Thread(false), mGroup(group) {}
540 AudioGroup *mGroup;
546 AudioGroup function in class:__anon1172::AudioGroup
[all...]
H A DAndroid.mk24 AudioGroup.cpp \
/frameworks/base/voip/java/android/net/sip/
H A DSipAudioCall.java22 import android.net.rtp.AudioGroup;
188 private AudioGroup mAudioGroup;
912 AudioGroup audioGroup = getAudioGroup();
940 * Gets the {@link AudioGroup} object which the {@link AudioStream} object
943 * after the call is held/un-held). Finally, the {@code AudioGroup} object
946 * {@link #setAudioGroup(AudioGroup)}, then this method returns that object.
948 * @return the {@link AudioGroup} object or null if the RTP stream has not
953 public AudioGroup getAudioGroup() {
961 * Sets the {@link AudioGroup} object which the {@link AudioStream} object
962 * joins. If {@code audioGroup} is null, then the {@code AudioGroup} objec
[all...]
/frameworks/opt/telephony/src/java/com/android/internal/telephony/sip/
H A DSipPhone.java21 import android.net.rtp.AudioGroup;
464 AudioGroup audioGroup = getAudioGroup();
468 audioGroup.setMode(AudioGroup.MODE_ON_HOLD);
470 audioGroup.setMode(AudioGroup.MODE_MUTED);
472 audioGroup.setMode(AudioGroup.MODE_ECHO_SUPPRESSION);
474 audioGroup.setMode(AudioGroup.MODE_NORMAL);
489 AudioGroup audioGroup = new AudioGroup();
509 AudioGroup audioGroup = getAudioGroup();
535 AudioGroup audioGrou
[all...]

Completed in 2281 milliseconds