From 1caf1e5e085e425a81fd6109a4d33155275e8289 Mon Sep 17 00:00:00 2001 From: tommy watson Date: Tue, 11 Dec 2012 18:53:51 +0100 Subject: Added pause on "audio becoming noisy" event, this happens when you disconnect bluetooth headphones and the output switches to the "noisy" speaker. --- .../danoeh/antennapod/service/PlaybackService.java | 24 ++++++++++++++++++++++ 1 file changed, 24 insertions(+) (limited to 'src/de/danoeh/antennapod/service') diff --git a/src/de/danoeh/antennapod/service/PlaybackService.java b/src/de/danoeh/antennapod/service/PlaybackService.java index 94025f627..c5a20c31f 100644 --- a/src/de/danoeh/antennapod/service/PlaybackService.java +++ b/src/de/danoeh/antennapod/service/PlaybackService.java @@ -292,6 +292,8 @@ public class PlaybackService extends Service { Intent.ACTION_HEADSET_PLUG)); registerReceiver(shutdownReceiver, new IntentFilter( ACTION_SHUTDOWN_PLAYBACK_SERVICE)); + registerReceiver(audioBecomingNoisy, new IntentFilter( + AudioManager.ACTION_AUDIO_BECOMING_NOISY)); } @@ -321,6 +323,7 @@ public class PlaybackService extends Service { disableSleepTimer(); unregisterReceiver(headsetDisconnected); unregisterReceiver(shutdownReceiver); + unregisterReceiver(audioBecomingNoisy); if (android.os.Build.VERSION.SDK_INT >= 14) { audioManager.unregisterRemoteControlClient(remoteControlClient); } @@ -1111,6 +1114,27 @@ public class PlaybackService extends Service { } } }; + + private BroadcastReceiver audioBecomingNoisy = new BroadcastReceiver() { + + @Override + public void onReceive(Context context, Intent intent) { + // sound is about to change, eg. bluetooth -> speaker + boolean pauseOnDisconnect = PreferenceManager + .getDefaultSharedPreferences( + context.getApplicationContext()) + .getBoolean( + PodcastApp.PREF_PAUSE_ON_HEADSET_DISCONNECT, + false); + if(pauseOnDisconnect&&status==PlayerStatus.PLAYING) { + if (AppConfig.DEBUG) + Log.d(TAG, + "Pausing playback because audio is becoming noisy"); + pause(false, true); + } + } + //android.media.AUDIO_BECOMING_NOISY + }; private BroadcastReceiver shutdownReceiver = new BroadcastReceiver() { -- cgit v1.2.3