Home | History | Annotate | Download | only in rtp

Lines Matching refs:AudioStream

28  * {@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}s in this group.
113 public AudioStream[] getStreams() {
115 return mStreams.keySet().toArray(new AudioStream[mStreams.size()]);
146 // Package-private method used by AudioStream.join().
147 synchronized void add(AudioStream stream) {
167 // Package-private method used by AudioStream.join().
168 synchronized void remove(AudioStream stream) {
178 * Sends a DTMF digit to every {@link AudioStream} in this group. Currently
195 * Removes every {@link AudioStream} in this group.
198 for (AudioStream stream : getStreams()) {