HomeSort by relevance Sort by last modified time
    Searched refs:AudioStream (Results 1 - 4 of 4) sorted by null

  /frameworks/base/voip/java/android/net/rtp/
AudioGroup.java 24 * {@link AudioStream}s. Its pipeline has four steps. First, for each
25 * AudioStream not in {@link RtpStream#MODE_SEND_ONLY}, decodes its incoming
29 * each AudioStream not in {@link RtpStream#MODE_RECEIVE_ONLY}, mixes all other
31 * there is no AudioStream in it.
48 * AudioStream into an AudioGroup, one should always put all other AudioGroups
68 * {@link AudioStream}s in the group are enabled. First, the packets
81 private final Map<AudioStream, Integer> mStreams;
93 mStreams = new HashMap<AudioStream, Integer>();
116 synchronized void add(AudioStream stream, AudioCodec codec, int dtmfType) {
134 synchronized void remove(AudioStream stream)
    [all...]
AudioStream.java 23 * 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
42 public class AudioStream extends RtpStream {
48 * Creates an AudioStream on the given local address. Note that the local
55 public AudioStream(InetAddress address) throws SocketException {
  /frameworks/base/voip/jni/rtp/
AudioGroup.cpp 79 class AudioStream
82 AudioStream();
83 ~AudioStream();
90 void encode(int tick, AudioStream *chain);
129 AudioStream *mNext;
134 AudioStream::AudioStream()
142 AudioStream::~AudioStream()
150 bool AudioStream::set(int mode, int socket, sockaddr_storage *remote
    [all...]
  /frameworks/base/voip/java/android/net/sip/
SipAudioCall.java 23 import android.net.rtp.AudioStream;
177 private AudioStream mAudioStream;
558 mAudioStream = new AudioStream(InetAddress.getByName(
620 mAudioStream = new AudioStream(InetAddress.getByName(
837 * Gets the {@link AudioStream} object used in this call. The object
843 * @return the {@link AudioStream} object or null if the RTP stream has not
847 public AudioStream getAudioStream() {
854 * Gets the {@link AudioGroup} object which the {@link AudioStream} object
856 * Also, the {@code AudioStream} may change its group during a call (e.g.,
875 * Sets the {@link AudioGroup} object which the {@link AudioStream} objec
    [all...]

Completed in 832 milliseconds