Searched refs:mSoundPlayer (Results 1 - 6 of 6) sorted by relevance

/packages/apps/Camera2/src/com/android/camera/captureintent/resource/
H A DResourceCaptureToolsImpl.java53 private final SoundPlayer mSoundPlayer; field in class:ResourceCaptureToolsImpl
101 mSoundPlayer = soundPlayer;
102 mSoundPlayer.loadSound(R.raw.timer_final_second); // Will be balanced in close().
103 mSoundPlayer.loadSound(R.raw.timer_increment); // Will be balanced in close().
115 mSoundPlayer.unloadSound(R.raw.timer_increment);
116 mSoundPlayer.unloadSound(R.raw.timer_final_second);
209 mSoundPlayer.play(R.raw.timer_final_second, 0.6f);
211 mSoundPlayer.play(R.raw.timer_increment, 0.6f);
H A DResourceConstructedImpl.java56 private final SoundPlayer mSoundPlayer; field in class:ResourceConstructedImpl
118 mSoundPlayer = new SoundPlayer(mContext);
203 return mSoundPlayer;
/packages/apps/Camera2/src/com/android/camera/
H A DCaptureModule.java313 private SoundPlayer mSoundPlayer; field in class:CaptureModule
426 mSoundPlayer = new SoundPlayer(mContext);
428 FocusSound focusSound = new FocusSound(mSoundPlayer, R.raw.material_camera_focus);
596 mSoundPlayer.play(R.raw.timer_final_second, 0.6f);
598 mSoundPlayer.play(R.raw.timer_increment, 0.6f);
716 mSoundPlayer.loadSound(R.raw.timer_final_second);
717 mSoundPlayer.loadSound(R.raw.timer_increment);
739 mSoundPlayer.unloadSound(R.raw.timer_final_second);
740 mSoundPlayer.unloadSound(R.raw.timer_increment);
745 mSoundPlayer
[all...]
H A DCameraActivity.java273 private SoundPlayer mSoundPlayer; field in class:CameraActivity
1439 mSoundPlayer = new SoundPlayer(mAppContext);
2189 if (mSoundPlayer != null) {
2190 mSoundPlayer.release();
2549 return mSoundPlayer;
/packages/apps/Camera/src/com/android/camera/
H A DEffectsRecorder.java178 private SoundClips.Player mSoundPlayer; field in class:EffectsRecorder
313 mSoundPlayer = SoundClips.getPlayer(context);
941 mSoundPlayer.play(SoundClips.START_VIDEO_RECORDING);
961 mSoundPlayer.play(SoundClips.STOP_VIDEO_RECORDING);
1127 if (mSoundPlayer != null) {
1128 mSoundPlayer.release();
1129 mSoundPlayer = null;
H A DPanoramaModule.java170 private SoundClips.Player mSoundPlayer; field in class:PanoramaModule
737 mSoundPlayer.play(SoundClips.START_VIDEO_RECORDING);
741 mSoundPlayer.play(SoundClips.STOP_VIDEO_RECORDING);
1016 if (mSoundPlayer != null) {
1017 mSoundPlayer.release();
1018 mSoundPlayer = null;
1076 mSoundPlayer = SoundClips.getPlayer(mActivity);

Completed in 157 milliseconds