[frameworks/base] Set AudioTrack SAMPLE_RATE_HZ_MAX = 192000

This commit is contained in:
Firefly
2015-12-28 15:41:10 +08:00
committed by cjp
parent dfdbb06d89
commit bd3e59f278

View File

@ -92,7 +92,7 @@ public class AudioTrack
/** Minimum value for sample rate */
private static final int SAMPLE_RATE_HZ_MIN = 4000;
/** Maximum value for sample rate */
private static final int SAMPLE_RATE_HZ_MAX = 96000;
private static final int SAMPLE_RATE_HZ_MAX = 192000;
/** Maximum value for AudioTrack channel count */
private static final int CHANNEL_COUNT_MAX = 8;