diff options
author | Luo Jinghua <sunmoon1997@gmail.com> | 2012-08-17 16:24:33 +0800 |
---|---|---|
committer | Luo Jinghua <sunmoon1997@gmail.com> | 2012-08-17 16:24:33 +0800 |
commit | d40ec1c4d02860e9ea54bdb31f1fcc464df2bf91 (patch) | |
tree | 9220bcf563977c207ebc2ca8e40f0ad377b12b62 /src | |
parent | 8667b6bcdfabe2108ab74591d9090951fe63010f (diff) |
Enlarge the audio buffer to 8k for android
Diffstat (limited to 'src')
-rw-r--r-- | src/device_android.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/device_android.cpp b/src/device_android.cpp index e9cf5ba..1c15eb7 100644 --- a/src/device_android.cpp +++ b/src/device_android.cpp @@ -16,7 +16,7 @@ namespace audiere { int ret = AGAudioInit(44100, 2, 16); if (ret < 0) return 0; - return new AndroidAudioDevice(44100, 4096); + return new AndroidAudioDevice(44100, 8192); } |