Forcibly disable rate control for Blackberry targets - less

audio skips with OpenAL driver
This commit is contained in:
twinaphex 2013-05-25 23:24:12 +02:00
parent 6f808be4a1
commit 4725f56865
1 changed files with 4 additions and 0 deletions

View File

@ -342,7 +342,11 @@ static const bool rate_control = false;
#endif
// Rate control delta. Defines how much rate_control is allowed to adjust input rate.
#if defined(__QNX__)
static const float rate_control_delta = 0.000;
#else
static const float rate_control_delta = 0.005;
#endif
// Default audio volume in dB. (0.0 dB == unity gain).
static const float audio_volume = 0.0;