summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorgaryscavone <garyscavone@users.noreply.github.com>2017-04-24 08:09:07 -0400
committerGitHub <noreply@github.com>2017-04-24 08:09:07 -0400
commite786e45107b0f88cd3ab42ad223f94d4dfdb925a (patch)
tree220318405cba94b01953d0be80cb4a6a4e8f11d3
parent56c85084bc774e37dd2752d1ffac954621810255 (diff)
parentfc1f79343be5129134921f9e47cab8ef360368e4 (diff)
Merge pull request #81 from jossgray/fix-warnings
Fix some warnings in the tests in Visual Studio
-rw-r--r--tests/testall.cpp2
-rw-r--r--tests/teststops.cpp8
2 files changed, 5 insertions, 5 deletions
diff --git a/tests/testall.cpp b/tests/testall.cpp
index 419f27b..b94ce69 100644
--- a/tests/testall.cpp
+++ b/tests/testall.cpp
@@ -66,7 +66,7 @@ int sawni( void *outputBuffer, void * /*inputBuffer*/, unsigned int nBufferFrame
if ( status )
std::cout << "Stream underflow detected!" << std::endl;
- float increment;
+ double increment;
for ( j=0; j<channels; j++ ) {
increment = BASE_RATE * (j+1+(j*0.1));
for ( i=0; i<nBufferFrames; i++ ) {
diff --git a/tests/teststops.cpp b/tests/teststops.cpp
index e24c064..6159b88 100644
--- a/tests/teststops.cpp
+++ b/tests/teststops.cpp
@@ -63,7 +63,7 @@ int pulse( void *outputBuffer, void * /*inputBuffer*/, unsigned int nBufferFrame
if ( status ) std::cout << "Stream over/underflow detected!" << std::endl;
for ( i=0; i<nBufferFrames; i++ ) {
- if ( data->frameCounter % data->pulseCount == 0 ) sample = 0.9;
+ if ( data->frameCounter % data->pulseCount == 0 ) sample = 0.9f;
else sample = 0.0;
for ( j=0; j<data->channels; j++ )
*buffer++ = sample;
@@ -107,8 +107,8 @@ int main( int argc, char *argv[] )
// Let RtAudio print messages to stderr.
adc->showWarnings( true );
- runtime = RUNTIME * 1000;
- pausetime = PAUSETIME * 1000;
+ runtime = static_cast<unsigned int>(RUNTIME * 1000);
+ pausetime = static_cast<unsigned int>(PAUSETIME * 1000);
// Set our stream parameters for a duplex stream.
bufferFrames = 512;
@@ -127,7 +127,7 @@ int main( int argc, char *argv[] )
oParams.deviceId = adc->getDefaultOutputDevice();
// First, test external stopStream() calls.
- mydata.pulseCount = PULSE_RATE * fs;
+ mydata.pulseCount = static_cast<unsigned int>(PULSE_RATE * fs);
mydata.nFrames = 50 * fs;
mydata.returnValue = 0;
try {