Home | History | Annotate | Download | only in transaction

Lines Matching defs:player

90                     MediaPlayer player = new MediaPlayer();
91 player.setAudioStreamType(mCmd.stream);
92 player.setDataSource(mCmd.context, mCmd.uri);
93 player.setLooping(mCmd.looping);
94 player.setVolume(mCmd.volume, mCmd.volume);
95 player.prepare();
106 player.setOnCompletionListener(NotificationPlayer.this);
107 player.start();
111 mPlayer = player;
195 Log.w(mTag, "STOP command without a player");