summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorLuo Jinghua <sunmoon1997@gmail.com>2010-12-16 15:42:40 +0800
committerLuo Jinghua <sunmoon1997@gmail.com>2010-12-16 15:42:40 +0800
commit4f57cbff7f42345c4597d67a3bf9921cac22ca60 (patch)
tree74bebfcf47450bd5bbecc29cabefce4cc76a300e /src
parent08752671521a8fea9a225f270d300e6652ef6703 (diff)
android: set buffer size to 4096 bytes
Diffstat (limited to 'src')
-rw-r--r--src/device_android.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/device_android.cpp b/src/device_android.cpp
index 0c6d330..20eb2c2 100644
--- a/src/device_android.cpp
+++ b/src/device_android.cpp
@@ -16,7 +16,7 @@ namespace audiere {
int ret = awAudioInit(44100, 2, 16);
if (ret < 0)
return 0;
- return new AndroidAudioDevice(44100, 2048);
+ return new AndroidAudioDevice(44100, 4096);
}