OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
defs:audioPlayer
(Results
1 - 8
of
8
) sorted by null
/frameworks/wilhelm/src/objects/
CAudioPlayer.c
17
/** \file CAudioPlayer.c
AudioPlayer
class */
84
CAudioPlayer *
audioPlayer
= track->mAudioPlayer;
85
if (NULL ==
audioPlayer
) {
88
assert(
audioPlayer
== thiz);
104
COutputMix *CAudioPlayer_GetOutputMix(CAudioPlayer *
audioPlayer
)
106
assert(NULL !=
audioPlayer
);
107
assert(SL_DATALOCATOR_OUTPUTMIX ==
audioPlayer
->mDataSink.mLocator.mLocatorType);
108
SLObjectItf outputMix =
audioPlayer
->mDataSink.mLocator.mOutputMix.outputMix;
/frameworks/wilhelm/src/
sync.c
80
CAudioPlayer *
audioPlayer
= (CAudioPlayer *) instance;
81
audioPlayerTransportUpdate(
audioPlayer
);
/frameworks/wilhelm/src/itf/
IBufferQueue.c
90
CAudioPlayer *
audioPlayer
= (CAudioPlayer *) thiz->mThis;
92
result = android_audioPlayer_bufferQueue_onClear(
audioPlayer
);
IEffectSend.c
42
CAudioPlayer *
audioPlayer
= (SL_OBJECTID_AUDIOPLAYER == InterfaceToObjectID(thiz)) ?
44
if (NULL ==
audioPlayer
) {
48
COutputMix *outputMix = CAudioPlayer_GetOutputMix(
audioPlayer
);
IPlay.c
35
CAudioPlayer *
audioPlayer
= (SL_OBJECTID_AUDIOPLAYER == InterfaceToObjectID(thiz)) ?
59
if ((NULL !=
audioPlayer
) && (
audioPlayer
->mBufferQueue.mFront !=
60
audioPlayer
->mBufferQueue.mRear)) {
184
// will be set by containing
AudioPlayer
or MidiPlayer object at Realize, if known,
224
CAudioPlayer *
audioPlayer
= (CAudioPlayer *) thiz->mThis;
225
SLmillisecond pos =
audioPlayer
->mSeek.mPos;
395
CAudioPlayer *
audioPlayer
= (CAudioPlayer *) thiz->mThis;
397
(long long)
audioPlayer
->mSampleRateMilliHz) / 1000000LL;
IOutputMixExt.c
50
CAudioPlayer *
audioPlayer
= track->mAudioPlayer;
51
if (NULL !=
audioPlayer
) {
57
object_lock_exclusive(&
audioPlayer
->mObject);
58
assert(
audioPlayer
->mTrack == track);
63
audioPlayer
->mPlay.mFramesSinceLastSeek += framesMixed;
64
audioPlayer
->mPlay.mFramesSincePositionUpdate += framesMixed;
70
if (
audioPlayer
->mBufferQueue.mClearRequested) {
73
audioPlayer
->mBufferQueue.mFront = &
audioPlayer
->mBufferQueue.mArray[0];
74
audioPlayer
->mBufferQueue.mRear = &audioPlayer->mBufferQueue.mArray[0]
[
all
...]
/frameworks/wilhelm/tests/mimeUri/
slesTestManyPlayers.cpp
39
SLObjectItf
audioPlayer
[MAX_NUMBER_PLAYERS];
213
res = (*engineItf)->CreateAudioPlayer(engineItf, &
audioPlayer
[playerId],
224
res = (*
audioPlayer
[playerId])->Realize(
audioPlayer
[playerId], SL_BOOLEAN_FALSE);
234
res = (*
audioPlayer
[playerId])->GetInterface(
audioPlayer
[playerId], SL_IID_PLAY,
238
res = (*
audioPlayer
[playerId])->GetInterface(
audioPlayer
[playerId], SL_IID_VOLUME,
242
res = (*
audioPlayer
[playerId])->GetInterface(
audioPlayer
[playerId], SL_IID_PREFETCHSTATUS
[
all
...]
/frameworks/ex/variablespeed/jni/
variablespeed.cc
219
static void setAudioStreamType(SLObjectItf
audioPlayer
, SLint32 audioStreamType) {
221
OpenSL(
audioPlayer
, GetInterface, SL_IID_ANDROIDCONFIGURATION, &playerConfig);
575
SLObjectItf &
audioPlayer
, SLEngineItf &engineInterface) {
593
OpenSL(engineInterface, CreateAudioPlayer, &
audioPlayer
, &playingSrc,
595
setAudioStreamType(
audioPlayer
, audioStreamType);
596
OpenSL(
audioPlayer
, Realize, SL_BOOLEAN_FALSE);
680
SLObjectItf
audioPlayer
= NULL;
696
GetSLChannels(), audioStreamType_, outputMix,
audioPlayer
,
698
OpenSL(
audioPlayer
, GetInterface, SL_IID_PLAY, &audioPlayerPlay);
699
OpenSL(
audioPlayer
, GetInterface, SL_IID_ANDROIDSIMPLEBUFFERQUEUE
[
all
...]
Completed in 45 milliseconds