dolphin/Externals/soundtouch
comex 8a02473237 Fix more warnings:
- Externals/soundtouch/CMakeLists.txt: add -w (since it's not our code) to
silence an unused variable warning
- Source/Core/Core/NetPlayClient.cpp: Work around a Clang/libc++ bug where
initializing a std::array the way the standard says you're supposed to produces
a warning.  (libc++'s implementation of std::array, like any sane
implementation, has a C array as a field, so the most explicit form of
initialization would use two braces, one for the struct and one for the array.
Clang has a general warning for not being explicit with braces, which is
usually sane.  But the standard only guarantees that initializing std::array
works with a single pair of braces!)  There are other places in Dolphin that
incorrectly use double braces, presumably to avoid the warning, so maybe the
warning should just be turned off, but in any case here I just switch to an
equivalent .fill().
2016-07-10 21:51:28 -04:00
..
AAFilter.cpp Updated SoundTouch library to 1.9.2 2015-12-28 23:08:55 +11:00
AAFilter.h Updated SoundTouch library to 1.9.2 2015-12-28 23:08:55 +11:00
BPMDetect.cpp Updated SoundTouch library to 1.9.2 2015-12-28 23:08:55 +11:00
BPMDetect.h Updated SoundTouch library to 1.9.2 2015-12-28 23:08:55 +11:00
CMakeLists.txt Fix more warnings: 2016-07-10 21:51:28 -04:00
cpu_detect.h Updated SoundTouch library to 1.9.2 2015-12-28 23:08:55 +11:00
cpu_detect_x86.cpp Updated SoundTouch library to 1.9.2 2015-12-28 23:08:55 +11:00
FIFOSampleBuffer.cpp Updated SoundTouch library to 1.9.2 2015-12-28 23:08:55 +11:00
FIFOSampleBuffer.h Updated SoundTouch library to 1.9.2 2015-12-28 23:08:55 +11:00
FIFOSamplePipe.h Updated SoundTouch library to 1.9.2 2015-12-28 23:08:55 +11:00
FIRFilter.cpp Updated SoundTouch library to 1.9.2 2015-12-28 23:08:55 +11:00
FIRFilter.h Updated SoundTouch library to 1.9.2 2015-12-28 23:08:55 +11:00
InterpolateCubic.cpp Updated SoundTouch library to 1.8.1 [r198] 2014-09-04 20:41:45 +10:00
InterpolateCubic.h Updated SoundTouch library to 1.9.2 2015-12-28 23:08:55 +11:00
InterpolateLinear.cpp Updated SoundTouch library to 1.9.2 2015-12-28 23:08:55 +11:00
InterpolateLinear.h Updated SoundTouch library to 1.9.2 2015-12-28 23:08:55 +11:00
InterpolateShannon.cpp Updated SoundTouch library to 1.8.1 [r198] 2014-09-04 20:41:45 +10:00
InterpolateShannon.h Updated SoundTouch library to 1.9.2 2015-12-28 23:08:55 +11:00
mmx_optimized.cpp Updated SoundTouch library to 1.9.2 2015-12-28 23:08:55 +11:00
PeakFinder.cpp Updated SoundTouch library to 1.9.2 2015-12-28 23:08:55 +11:00
PeakFinder.h Updated SoundTouch library to 1.9.2 2015-12-28 23:08:55 +11:00
RateTransposer.cpp Updated SoundTouch library to 1.9.2 2015-12-28 23:08:55 +11:00
RateTransposer.h Updated SoundTouch library to 1.9.2 2015-12-28 23:08:55 +11:00
SoundTouch.cpp Updated SoundTouch library to 1.9.2 2015-12-28 23:08:55 +11:00
SoundTouch.h Updated SoundTouch library to 1.9.2 2015-12-28 23:08:55 +11:00
SoundTouch.vcxproj [windows] Update projects to vs2015. 2015-09-03 04:23:01 -07:00
sse_optimized.cpp Updated SoundTouch library to 1.9.2 2015-12-28 23:08:55 +11:00
STTypes.h Updated SoundTouch library to 1.9.2 2015-12-28 23:08:55 +11:00
TDStretch.cpp Updated SoundTouch library to 1.9.2 2015-12-28 23:08:55 +11:00
TDStretch.h Updated SoundTouch library to 1.9.2 2015-12-28 23:08:55 +11:00