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

/frameworks/opt/net/voip/src/java/android/net/rtp/
H A DAudioGroup.java28 * {@link AudioStream}s. Each of these components can be logically turned on
32 * AudioStream not in {@link RtpStream#MODE_SEND_ONLY}, decodes its incoming
35 * is enabled, mixes all AudioStream buffers and plays back. Finally, for each
36 * AudioStream not in {@link RtpStream#MODE_RECEIVE_ONLY}, mixes all other
38 * there is no AudioStream in it.
63 * @see AudioStream
80 * {@link AudioStream}s in the group are enabled. First, the packets
95 private final Map<AudioStream, Long> mStreams;
107 mStreams = new HashMap<AudioStream, Long>();
111 * 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/opt/net/voip/src/jni/rtp/
H A DAudioGroup.cpp96 class AudioStream class in namespace:__anon1612
99 AudioStream();
100 ~AudioStream();
107 void encode(int tick, AudioStream *chain);
146 AudioStream *mNext;
151 AudioStream::AudioStream() function in class:__anon1612::AudioStream
159 AudioStream::~AudioStream()
167 bool AudioStream
[all...]
/frameworks/opt/net/voip/src/java/android/net/sip/
H A DSipAudioCall.java23 import android.net.rtp.AudioStream;
182 private AudioStream mAudioStream;
365 mAudioStream = new AudioStream(InetAddress.getByName(
632 mAudioStream = new AudioStream(InetAddress.getByName(
703 mAudioStream = new AudioStream(InetAddress.getByName(
930 * Gets the {@link AudioStream} object used in this call. The object
936 * @return the {@link AudioStream} object or null if the RTP stream has not
940 public AudioStream getAudioStream() {
947 * Gets the {@link AudioGroup} object which the {@link AudioStream} object
949 * Also, the {@code AudioStream} ma
[all...]

Completed in 2397 milliseconds