]> git.ipfire.org Git - thirdparty/freeswitch.git/commitdiff
fix windows build
authorMichael Jerris <mike@jerris.com>
Thu, 15 Jan 2009 22:50:50 +0000 (22:50 +0000)
committerMichael Jerris <mike@jerris.com>
Thu, 15 Jan 2009 22:50:50 +0000 (22:50 +0000)
git-svn-id: http://svn.freeswitch.org/svn/freeswitch/trunk@11235 d0543943-73ff-0310-b7d9-9358b9ac24b2

src/mod/endpoints/mod_portaudio/mod_portaudio.c

index e6f31e7e5119547508c079f690445684141a9dcb..ee4b33b0affd1861aff544ec87cf46ccf4444f9a 100644 (file)
@@ -1769,14 +1769,13 @@ SWITCH_STANDARD_API(pa_cmd)
                        globals.ringdev = devval;
                }
        } else if ((argv[1] && !strcasecmp(argv[0], "play")) || !strcasecmp(argv[0], "ringtest")) {
+               switch_file_handle_t fh = { 0 };
+               char *playfile = NULL;
                if (globals.audio_stream) {
                        switch_log_printf(SWITCH_CHANNEL_LOG_CLEAN, SWITCH_LOG_INFO, "ERROR: Cannot use this command this while a call is in progress\n");
                        goto done;
                }
 
-               switch_file_handle_t fh = { 0 };
-               char *playfile = NULL;
-
                if (!strcasecmp(argv[0], "ringtest")) {
                        playfile = globals.ring_file;
                } else {
@@ -1816,7 +1815,8 @@ SWITCH_STANDARD_API(pa_cmd)
                if (engage_device(globals.sample_rate, globals.codec_ms) == SWITCH_STATUS_SUCCESS) {
                        int samples = 0;
                        int success = 0;
-                       for(int i = 0; i < 400; i++) {
+                       int i;
+                       for(i = 0; i < 400; i++) {
                                if ((samples = ReadAudioStream(globals.audio_stream, globals.read_frame.data,
                                                globals.read_codec.implementation->samples_per_packet, &globals.timer))) {
                                        WriteAudioStream(globals.audio_stream, globals.read_frame.data, (long) samples, &globals.timer);