Welcome to mirror list, hosted at ThFree Co, Russian Federation.

git.blender.org/blender.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJörg Müller <nexyon@gmail.com>2015-12-27 18:33:54 +0300
committerJörg Müller <nexyon@gmail.com>2015-12-27 18:33:54 +0300
commitfcc68a02e9a315fad0e1ff0df1bb3e35f1a65fe4 (patch)
tree62e6b22b5abf7d3229147a417333f33810c78248 /intern/audaspace/SDL
parent0a118317fcf3ca3b650fc6428f6a6675303c49ee (diff)
Fix T47064: Change Audio defaults to 48 kHz
Historically blender had an audio sample rate of 44.1 kHz as default which is mostly popular because it's the sample rate of audio CDs. Audaspace kept using this default from the pre 2.5 era. It was about time to change to 48 kHz, which is a more widespread standard nowadays, especially in video. It is the recommended sampling rate of the Audio Engineering Society. Further reading: https://en.wikipedia.org/wiki/44,100_Hz#Status
Diffstat (limited to 'intern/audaspace/SDL')
-rw-r--r--intern/audaspace/SDL/AUD_SDLDevice.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/intern/audaspace/SDL/AUD_SDLDevice.cpp b/intern/audaspace/SDL/AUD_SDLDevice.cpp
index 0be8db91d28..23729a7a171 100644
--- a/intern/audaspace/SDL/AUD_SDLDevice.cpp
+++ b/intern/audaspace/SDL/AUD_SDLDevice.cpp
@@ -48,7 +48,7 @@ AUD_SDLDevice::AUD_SDLDevice(AUD_DeviceSpecs specs, int buffersize)
if(specs.format == AUD_FORMAT_INVALID)
specs.format = AUD_FORMAT_S16;
if(specs.rate == AUD_RATE_INVALID)
- specs.rate = AUD_RATE_44100;
+ specs.rate = AUD_RATE_48000;
m_specs = specs;