summaryrefslogtreecommitdiff
path: root/pjmedia
diff options
context:
space:
mode:
authorBenny Prijono <bennylp@teluu.com>2006-06-15 11:55:55 +0000
committerBenny Prijono <bennylp@teluu.com>2006-06-15 11:55:55 +0000
commitdf07573d1de2f9639d5cdbfc2206cd70062263f7 (patch)
tree9524907146aec4f56bdbadfba820d388d2a7b7bf /pjmedia
parentc93cdbaa008aef1d02e1382ca203b900b81bbd42 (diff)
Cleanup more compilation warnings with Mingw
git-svn-id: http://svn.pjsip.org/repos/pjproject/trunk@511 74dad513-b988-da41-8d7b-12977e46ad98
Diffstat (limited to 'pjmedia')
-rw-r--r--pjmedia/src/pjmedia/portaudio/pa_win_wmme.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/pjmedia/src/pjmedia/portaudio/pa_win_wmme.c b/pjmedia/src/pjmedia/portaudio/pa_win_wmme.c
index bc7e2ae4..d7291145 100644
--- a/pjmedia/src/pjmedia/portaudio/pa_win_wmme.c
+++ b/pjmedia/src/pjmedia/portaudio/pa_win_wmme.c
@@ -1615,7 +1615,7 @@ error:
static PaError TerminateWaveHandles( PaWinMmeSingleDirectionHandlesAndBuffers *handlesAndBuffers, int isInput, int currentlyProcessingAnError )
{
PaError result = paNoError;
- MMRESULT mmresult;
+ MMRESULT mmresult = 0;
signed int i;
if( handlesAndBuffers->waveHandles )
@@ -1972,7 +1972,7 @@ static PaError OpenStream( struct PaUtilHostApiRepresentation *hostApi,
unsigned long hostInputBufferCount;
unsigned long framesPerHostOutputBuffer;
unsigned long hostOutputBufferCount;
- unsigned long framesPerBufferProcessorCall;
+ unsigned long framesPerBufferProcessorCall=0;
PaWinMmeDeviceAndChannelCount *inputDevices = 0; /* contains all devices and channel counts as local host api ids, even when PaWinMmeUseMultipleDevices is not used */
unsigned long inputDeviceCount = 0;
PaWinMmeDeviceAndChannelCount *outputDevices = 0;