Searched defs:player (Results 1 - 25 of 57) sorted by relevance

123

/frameworks/base/media/tests/MediaFrameworkTest/src/com/android/mediaframeworktest/unit/
H A DMediaPlayerMethodUnderTest.java26 public void invokeMethodUnderTest(MediaPlayer player); argument
H A DMediaRecorderMethodUnderTest.java26 public void invokeMethodUnderTest(MediaRecorder player); argument
H A DMediaPlayerGetCurrentPositionStateUnitTest.java55 public void invokeMethodUnderTest(MediaPlayer player) { argument
56 player.getCurrentPosition();
H A DMediaPlayerGetDurationStateUnitTest.java55 public void invokeMethodUnderTest(MediaPlayer player) { argument
56 player.getDuration();
H A DMediaPlayerGetVideoHeightStateUnitTest.java55 public void invokeMethodUnderTest(MediaPlayer player) { argument
56 player.getVideoHeight();
H A DMediaPlayerGetVideoWidthStateUnitTest.java55 public void invokeMethodUnderTest(MediaPlayer player) { argument
56 player.getVideoWidth();
H A DMediaPlayerIsPlayingStateUnitTest.java55 public void invokeMethodUnderTest(MediaPlayer player) { argument
56 player.isPlaying();
H A DMediaPlayerPauseStateUnitTest.java55 public void invokeMethodUnderTest(MediaPlayer player) { argument
56 player.pause();
H A DMediaPlayerResetStateUnitTest.java55 public void invokeMethodUnderTest(MediaPlayer player) { argument
56 player.reset();
H A DMediaPlayerSeekToStateUnitTest.java55 public void invokeMethodUnderTest(MediaPlayer player) { argument
56 player.seekTo(0);
H A DMediaPlayerSetAudioStreamTypeStateUnitTest.java56 public void invokeMethodUnderTest(MediaPlayer player) { argument
57 player.setAudioStreamType(AudioManager.STREAM_MUSIC);
H A DMediaPlayerSetLoopingStateUnitTest.java56 public void invokeMethodUnderTest(MediaPlayer player) { argument
58 player.setLooping(looping);
H A DMediaPlayerSetVolumeStateUnitTest.java55 public void invokeMethodUnderTest(MediaPlayer player) { argument
56 player.setVolume(0.5f, 0.5f);
H A DMediaPlayerStartStateUnitTest.java55 public void invokeMethodUnderTest(MediaPlayer player) { argument
56 player.start();
H A DMediaPlayerStopStateUnitTest.java55 public void invokeMethodUnderTest(MediaPlayer player) { argument
56 player.stop();
/frameworks/av/cmds/stagefright/
H A Daudioloop.cpp134 AudioPlayer *player = new AudioPlayer(NULL); local
135 player->setSource(decoder);
136 player->start();
139 decoder.clear(); // must clear |decoder| otherwise delete player will hang.
140 delete player; // there is no player->stop()...
/frameworks/base/core/java/android/speech/tts/
H A DAudioPlaybackQueueItem.java99 private static void setupVolume(MediaPlayer player, float volume, float pan) { argument
109 player.setVolume(volLeft, volRight);
120 // Do nothing, the player is already stopped
/frameworks/wilhelm/tests/mimeUri/
H A DslesTest_playStates.cpp52 /* Objects this application uses: one player and an ouput mix */
53 SLObjectItf player, outputMix; local
60 /* Data sinks for the audio player */
64 /* Play, Volume and PrefetchStatus interfaces for the audio player */
85 /* Create Output Mix object to be used by the player */
100 /* Configuration of the player */
121 /* Create the audio player */
122 result = (*EngineItf)->CreateAudioPlayer(EngineItf, &player, &audioSource, &audioSink,
126 /* Realize the player in synchronous mode. */
127 result = (*player)
[all...]
/frameworks/av/include/media/
H A DJetPlayer.h99 JetPlayerThread(JetPlayer *player) : mPlayer(player) { argument
/frameworks/av/media/libmedia/
H A DIMediaPlayerService.cpp147 sp<IMediaPlayer> player = create(client, audioSessionId); local
148 reply->writeStrongBinder(IInterface::asBinder(player));
/frameworks/base/media/tests/players/
H A Dinvoke_mock_media_player.cpp43 // This file contains a test player that is loaded via the
44 // TestPlayerStub class. The player contains various implementation
127 ALOGD("New invoke test player");
131 extern "C" android::status_t deletePlayer(android::MediaPlayerBase *player) argument
133 ALOGD("Delete invoke test player");
134 delete player;
/frameworks/wilhelm/src/itf/
H A DIAndroidConfiguration.c110 SL_LOGE("Error creating player routing object - Routing Proxy Already Acquired.");
114 CAudioPlayer* player = (CAudioPlayer*)configObj; // get the native player local
116 switch (player->mAndroidObjType) {
119 // if (player->mObject.mState != SL_OBJECT_STATE_REALIZED) {
120 // // Make sure the player has been realized.
124 // android::AudioTrack* pAudioTrack = player->mAudioTrack.get();
136 SL_LOGE("Error creating routing object - Player is not a buffer-queue player.");
168 SL_LOGE("Java exception creating player routing object.");
254 * aspects of the associated native player o
[all...]
/frameworks/wilhelm/tests/examples/
H A DslesTestBassBoostPath.cpp55 /* Objects this application uses: one player and an ouput mix */
56 SLObjectItf player, outputMix; local
67 /* Data sinks for the audio player */
71 /* Interfaces for the audio player */
92 /* Create Output Mix object to be used by the player */
107 /* Configuration of the player */
144 /* Create the audio player */
145 result = (*EngineItf)->CreateAudioPlayer(EngineItf, &player, &audioSource, &audioSink, 2,
149 /* Realize the player in synchronous mode. */
150 result = (*player)
[all...]
H A DslesTestPlayFdPath.cpp76 /* Objects this application uses: one player and an ouput mix */
77 SLObjectItf player, outputMix; local
84 /* Data sinks for the audio player */
88 /* Play and PrefetchStatus interfaces for the audio player */
108 /* Create Output Mix object to be used by the player */
123 /* Configuration of the player */
150 /* Create the audio player */
151 result = (*EngineItf)->CreateAudioPlayer(EngineItf, &player, &audioSource, &audioSink, 1,
155 /* Realize the player in synchronous mode. */
156 result = (*player)
[all...]
H A DslesTestSawtoothBufferQueue.cpp118 SLObjectItf player; local
148 // Create Output Mix object to be used by player
199 /* Create the music player */
200 res = (*EngineItf)->CreateAudioPlayer(EngineItf, &player,
204 /* Realizing the player in synchronous mode. */
205 res = (*player)->Realize(player, SL_BOOLEAN_FALSE); CheckErr(res);
209 res = (*player)->GetInterface(player, SL_IID_PLAY, (void*)&playItf);
213 res = (*player)
[all...]

Completed in 3307 milliseconds

123