Searched refs:AudioStream (Results 1 - 4 of 4) sorted by relevance

/frameworks/base/voip/java/android/net/rtp/
H A DAudioGroup.java26 * {@link AudioStream}s. Each of these components can be logically turned on
30 * AudioStream not in {@link RtpStream#MODE_SEND_ONLY}, decodes its incoming
33 * is enabled, mixes all AudioStream buffers and plays back. Finally, for each
34 * AudioStream not in {@link RtpStream#MODE_RECEIVE_ONLY}, mixes all other
36 * there is no AudioStream in it.
61 * @see AudioStream
78 * {@link AudioStream}s in the group are enabled. First, the packets
93 private final Map<AudioStream, Integer> mStreams;
105 mStreams = new HashMap<AudioStream, Integer>();
109 * Returns the {@link AudioStream}
[all...]
H A DAudioStream.java23 * An AudioStream is a {@link RtpStream} which carrys audio payloads over
25 * order to support various usages such as audio conferencing. An AudioStream
33 * <p>An AudioStream becomes busy when it joins an AudioGroup. In this case most
35 * managing native resources. One can always make an AudioStream leave its
45 public class AudioStream extends RtpStream { class in inherits:RtpStream
51 * Creates an AudioStream on the given local address. Note that the local
58 public AudioStream(InetAddress address) throws SocketException { method in class:AudioStream
/frameworks/base/voip/jni/rtp/
H A DAudioGroup.cpp94 class AudioStream class in namespace:__anon1172
97 AudioStream();
98 ~AudioStream();
105 void encode(int tick, AudioStream *chain);
144 AudioStream *mNext;
149 AudioStream::AudioStream() function in class:__anon1172::AudioStream
157 AudioStream::~AudioStream()
165 bool AudioStream
[all...]
/frameworks/base/voip/java/android/net/sip/
H A DSipAudioCall.java23 import android.net.rtp.AudioStream;
187 private AudioStream mAudioStream;
371 mAudioStream = new AudioStream(InetAddress.getByName(
637 mAudioStream = new AudioStream(InetAddress.getByName(
703 mAudioStream = new AudioStream(InetAddress.getByName(
923 * Gets the {@link AudioStream} object used in this call. The object
929 * @return the {@link AudioStream} object or null if the RTP stream has not
933 public AudioStream getAudioStream() {
940 * Gets the {@link AudioGroup} object which the {@link AudioStream} object
942 * Also, the {@code AudioStream} ma
[all...]

Completed in 48 milliseconds