OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:AudioStream
(Results
1 - 18
of
18
) sorted by null
/cts/tests/tests/net/src/android/net/rtp/cts/
AudioStreamTest.java
19
import android.net.rtp.
AudioStream
;
27
AudioStream
stream = new
AudioStream
(address);
50
AudioStream
stream = new
AudioStream
(InetAddress.getByName("::1"));
73
AudioStream
stream = new
AudioStream
(InetAddress.getByName("::1"));
90
AudioStream
stream = new
AudioStream
(InetAddress.getByName("::1"));
AudioGroupTest.java
22
import android.net.rtp.
AudioStream
;
37
private
AudioStream
mStreamA;
39
private
AudioStream
mStreamB;
50
mStreamA = new
AudioStream
(local);
57
mStreamB = new
AudioStream
(local);
/frameworks/opt/net/voip/src/java/android/net/rtp/
AudioGroup.java
27
* {@link
AudioStream
}s. Each of these components can be logically turned on
31
*
AudioStream
not in {@link RtpStream#MODE_SEND_ONLY}, decodes its incoming
34
* is enabled, mixes all
AudioStream
buffers and plays back. Finally, for each
35
*
AudioStream
not in {@link RtpStream#MODE_RECEIVE_ONLY}, mixes all other
37
* there is no
AudioStream
in it.
62
* @see
AudioStream
79
* {@link
AudioStream
}s in the group are enabled. First, the packets
94
private final Map<
AudioStream
, Integer> mStreams;
106
mStreams = new HashMap<
AudioStream
, Integer>();
110
* Returns the {@link
AudioStream
}s in this group
[
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
45
public class
AudioStream
extends RtpStream {
51
* Creates an
AudioStream
on the given local address. Note that the local
58
public
AudioStream
(InetAddress address) throws SocketException {
/external/jmonkeyengine/engine/src/core/com/jme3/audio/
AudioStream.java
43
* <code>
AudioStream
</code> is an implementation of AudioData that
50
public class
AudioStream
extends AudioData implements Closeable{
52
private final static Logger logger = Logger.getLogger(
AudioStream
.class.getName());
58
public
AudioStream
(){
62
protected
AudioStream
(int[] ids){
103
* @see
AudioStream
#readSamples(byte[], int, int)
166
return new
AudioStream
(ids);
190
throw new RuntimeException("
AudioStream
is already closed!");
AudioNode.java
451
if (data instanceof
AudioStream
) {
453
((
AudioStream
) data).setTime(timeOffset);
/frameworks/opt/net/voip/src/jni/rtp/
AudioGroup.cpp
94
class
AudioStream
97
AudioStream
();
98
~
AudioStream
();
105
void encode(int tick,
AudioStream
*chain);
144
AudioStream
*mNext;
149
AudioStream
::
AudioStream
()
157
AudioStream
::~
AudioStream
()
165
bool
AudioStream
::set(int mode, int socket, sockaddr_storage *remote
[
all
...]
/external/jmonkeyengine/engine/src/core-plugins/com/jme3/audio/plugins/
WAVLoader.java
40
import com.jme3.audio.
AudioStream
;
62
private
AudioStream
audioStream
;
123
audioStream
.updateData(in, duration);
140
audioStream
= new
AudioStream
();
141
audioData =
audioStream
;
181
if (data instanceof
AudioStream
){
/external/jmonkeyengine/engine/src/lwjgl/com/jme3/audio/lwjgl/
LwjglAudioRenderer.java
433
if (!(src.getAudioData() instanceof
AudioStream
)){
611
private boolean fillBuffer(
AudioStream
stream, int id){
637
private boolean fillStreamingSource(int sourceId,
AudioStream
stream){
665
private boolean attachStreamToSource(int sourceId,
AudioStream
stream){
684
}else if (data instanceof
AudioStream
){
685
return attachStreamToSource(sourceId, (
AudioStream
) data);
698
if (src.getAudioData() instanceof
AudioStream
){
699
AudioStream
str = (
AudioStream
) src.getAudioData();
742
boolean streaming = src.getAudioData() instanceof
AudioStream
;
[
all
...]
/external/jmonkeyengine/engine/src/jogg/com/jme3/audio/plugins/
OGGLoader.java
40
import com.jme3.audio.
AudioStream
;
273
AudioStream
audioStream
= new
AudioStream
();
274
audioStream
.setupFormat(streamHdr.getChannels(), 16, streamHdr.getSampleRate());
279
audioStream
.updateData(readToStream(oggStream.isSeekable(),streamDuration), streamDuration);
280
return
audioStream
;
297
if (data instanceof
AudioStream
){
/frameworks/opt/net/voip/src/java/android/net/sip/
SipAudioCall.java
23
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(
[
all
...]
/external/chromium_org/third_party/libjingle/source/talk/media/other/
linphonemediaengine.h
162
AudioStream
*audio_stream_;
/external/chromium_org/media/base/
pipeline_unittest.cc
428
TEST_F(PipelineTest,
AudioStream
) {
[
all
...]
/prebuilts/sdk/12/
android.jar
/prebuilts/sdk/14/
android.jar
/prebuilts/sdk/18/
android.jar
/prebuilts/sdk/19/
android.jar
/prebuilts/sdk/current/
android.jar
Completed in 498 milliseconds