summaryrefslogtreecommitdiffstats
path: root/audio/audio_hw.c
diff options
context:
space:
mode:
authorKyle Repinski <repinski23@gmail.com>2014-10-13 04:40:11 -0500
committerZiyan <jaraidaniel@gmail.com>2016-01-15 12:24:25 +0100
commitfc5a515f9b0f9a9c471edea3ad29bdf90e7fd37a (patch)
treeba39d80196d3ed719526738e6dbae86201d928b6 /audio/audio_hw.c
parent0d513b93097790dc06121352c4822bf9cce363f5 (diff)
downloaddevice_samsung_tuna-fc5a515f9b0f9a9c471edea3ad29bdf90e7fd37a.zip
device_samsung_tuna-fc5a515f9b0f9a9c471edea3ad29bdf90e7fd37a.tar.gz
device_samsung_tuna-fc5a515f9b0f9a9c471edea3ad29bdf90e7fd37a.tar.bz2
tuna: Proper 48kHz audio support.
This fixes a bunch of annoying junk in the logcat about fast path being denied to UI sounds due to them having a 48000Hz sample rate. Also allows playback of 96kHz audio, as Android refuses to resample to anything lower than a divide by two.
Diffstat (limited to 'audio/audio_hw.c')
-rw-r--r--audio/audio_hw.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/audio/audio_hw.c b/audio/audio_hw.c
index c4c4b76..ba8a81d 100644
--- a/audio/audio_hw.c
+++ b/audio/audio_hw.c
@@ -216,7 +216,7 @@
/* minimum sleep time in out_write() when write threshold is not reached */
#define MIN_WRITE_SLEEP_US 5000
-#define DEFAULT_OUT_SAMPLING_RATE 44100 // 48000 is possible but interacts poorly with HDMI
+#define DEFAULT_OUT_SAMPLING_RATE 48000 // TODO: Check with HDMI.
/* sampling rate when using MM low power port */
#define MM_LOW_POWER_SAMPLING_RATE 44100