]> git.ipfire.org Git - thirdparty/freeswitch.git/commitdiff
Add portaudio files
authorAnthony Minessale <anthony.minessale@gmail.com>
Thu, 8 Dec 2005 23:10:59 +0000 (23:10 +0000)
committerAnthony Minessale <anthony.minessale@gmail.com>
Thu, 8 Dec 2005 23:10:59 +0000 (23:10 +0000)
git-svn-id: http://svn.freeswitch.org/svn/freeswitch/trunk@95 d0543943-73ff-0310-b7d9-9358b9ac24b2

conf/iax.conf [new file with mode: 0644]
src/mod/mod_iaxchan/mod_iaxchan.c
src/mod/mod_portaudio/mod_portaudio.c [new file with mode: 0644]
w32/vsnet/Freeswitch.sln
w32/vsnet/mod_PortAudio.vcproj [new file with mode: 0644]

diff --git a/conf/iax.conf b/conf/iax.conf
new file mode 100644 (file)
index 0000000..245a1d5
--- /dev/null
@@ -0,0 +1,6 @@
+[settings]\r
+debug => 2\r
+port => 4569\r
+dialplan => demo\r
+codec_prefs => PCMU,PCMA,speex,L16\r
+codec_master => us\r
index 2a64a386a0cc01400c088d70dac0038cfc6f59c7..436e14d22900dd7c74e8894ad719413972d74f7d 100644 (file)
@@ -26,7 +26,7 @@
  * Anthony Minessale II <anthmct@yahoo.com>
  *
  *
- * mod_iaxchan.c -- IAX2 Endpoint Module
+ * mod_portaudio.c -- PortAudio Endpoint Module
  *
  */
 #include <switch.h>
diff --git a/src/mod/mod_portaudio/mod_portaudio.c b/src/mod/mod_portaudio/mod_portaudio.c
new file mode 100644 (file)
index 0000000..03e4236
--- /dev/null
@@ -0,0 +1,518 @@
+/* 
+ * FreeSWITCH Modular Media Switching Software Library / Soft-Switch Application
+ * Copyright (C) 2005/2006, Anthony Minessale II <anthmct@yahoo.com>
+ *
+ * Version: MPL 1.1
+ *
+ * The contents of this file are subject to the Mozilla Public License Version
+ * 1.1 (the "License"); you may not use this file except in compliance with
+ * the License. You may obtain a copy of the License at
+ * http://www.mozilla.org/MPL/
+ *
+ * Software distributed under the License is distributed on an "AS IS" basis,
+ * WITHOUT WARRANTY OF ANY KIND, either express or implied. See the License
+ * for the specific language governing rights and limitations under the
+ * License.
+ *
+ * The Original Code is FreeSWITCH Modular Media Switching Software Library / Soft-Switch Application
+ *
+ * The Initial Developer of the Original Code is
+ * Anthony Minessale II <anthmct@yahoo.com>
+ * Portions created by the Initial Developer are Copyright (C)
+ * the Initial Developer. All Rights Reserved.
+ *
+ * Contributor(s):
+ * 
+ * Anthony Minessale II <anthmct@yahoo.com>
+ *
+ *
+ * mod_portaudio.c -- PortAudio Endpoint Module
+ *
+ */
+#include <switch.h>
+
+#include <stdio.h>
+#include <stdlib.h>
+#include <math.h>
+#include "pablio.h"
+#include <string.h>
+
+static const char modname[] = "mod_portaudio";
+
+static switch_memory_pool *module_pool;
+static int running = 1;
+
+
+typedef enum {
+       TFLAG_IO = (1 << 0),
+       TFLAG_INBOUND = (1 << 1),
+       TFLAG_OUTBOUND = (1 << 2),
+       TFLAG_DTMF = (1 << 3),
+       TFLAG_VOICE = (1 << 4),
+       TFLAG_HANGUP = (1 << 5),
+       TFLAG_LINEAR = (1 << 6)
+} TFLAGS;
+
+typedef enum {
+       GFLAG_MY_CODEC_PREFS = (1 << 0)
+} GFLAGS;
+
+static struct {
+       int debug;
+       int port;
+       char *dialplan;
+       char *soundcard;
+       unsigned int flags;
+} globals;
+
+struct private_object {
+       unsigned int flags;
+       switch_codec read_codec;
+    switch_codec write_codec;
+       struct switch_frame read_frame;
+       unsigned char databuf[1024];
+       switch_core_session *session;
+       switch_caller_profile *caller_profile;  
+       unsigned int codec;
+       unsigned int codecs;
+       switch_mutex_t *mutex;
+       switch_thread_cond_t *cond;
+};
+
+static void set_global_dialplan(char *dialplan)
+{
+       if (globals.dialplan) {
+               free(globals.dialplan);
+               globals.dialplan = NULL;
+       }
+       
+       globals.dialplan = strdup(dialplan);
+}
+
+static void set_global_soundcard(char *soundcard)
+{
+       if (globals.soundcard) {
+               free(globals.soundcard);
+               globals.soundcard = NULL;
+       }
+       
+       globals.soundcard = strdup(soundcard);
+}
+static const switch_endpoint_interface channel_endpoint_interface;
+
+static switch_status channel_on_init(switch_core_session *session);
+static switch_status channel_on_hangup(switch_core_session *session);
+static switch_status channel_on_ring(switch_core_session *session);
+static switch_status channel_on_loopback(switch_core_session *session);
+static switch_status channel_on_transmit(switch_core_session *session);
+static switch_status channel_outgoing_channel(switch_core_session *session, switch_caller_profile *outbound_profile, switch_core_session **new_session);
+static switch_status channel_read_frame(switch_core_session *session, switch_frame **frame, int timeout, switch_io_flag flags);
+static switch_status channel_write_frame(switch_core_session *session, switch_frame *frame, int timeout, switch_io_flag flags);
+static switch_status channel_kill_channel(switch_core_session *session, int sig);
+
+
+/* 
+   State methods they get called when the state changes to the specific state 
+   returning SWITCH_STATUS_SUCCESS tells the core to execute the standard state method next
+   so if you fully implement the state you can return SWITCH_STATUS_FALSE to skip it.
+*/
+static switch_status channel_on_init(switch_core_session *session)
+{
+       switch_channel *channel;
+       struct private_object *tech_pvt = NULL;
+
+       tech_pvt = switch_core_session_get_private(session);
+       assert(tech_pvt != NULL);
+
+       channel = switch_core_session_get_channel(session);
+       assert(channel != NULL);
+
+       tech_pvt->read_frame.data = tech_pvt->databuf;
+
+       switch_set_flag(tech_pvt, TFLAG_IO);
+       
+       switch_mutex_init(&tech_pvt->mutex, SWITCH_MUTEX_NESTED, switch_core_session_get_pool(session));
+       switch_thread_cond_create(&tech_pvt->cond, switch_core_session_get_pool(session));      
+       switch_mutex_lock(tech_pvt->mutex);
+
+       /* Move Channel's State Machine to RING */
+       switch_channel_set_state(channel, CS_RING);
+
+       return SWITCH_STATUS_SUCCESS;
+}
+
+static switch_status channel_on_ring(switch_core_session *session)
+{
+       switch_channel *channel = NULL;
+       struct private_object *tech_pvt = NULL;
+
+       channel = switch_core_session_get_channel(session);
+       assert(channel != NULL);
+
+       tech_pvt = switch_core_session_get_private(session);
+       assert(tech_pvt != NULL);
+
+       switch_console_printf(SWITCH_CHANNEL_CONSOLE, "%s CHANNEL RING\n", switch_channel_get_name(channel));
+
+       return SWITCH_STATUS_SUCCESS;
+}
+
+static switch_status channel_on_execute(switch_core_session *session)
+{
+
+       switch_channel *channel = NULL;
+       struct private_object *tech_pvt = NULL;
+
+       channel = switch_core_session_get_channel(session);
+       assert(channel != NULL);
+
+       tech_pvt = switch_core_session_get_private(session);
+       assert(tech_pvt != NULL);
+       
+       switch_console_printf(SWITCH_CHANNEL_CONSOLE, "%s CHANNEL EXECUTE\n", switch_channel_get_name(channel));
+
+
+       return SWITCH_STATUS_SUCCESS;
+}
+
+static switch_status channel_on_hangup(switch_core_session *session)
+{
+       switch_channel *channel = NULL;
+       struct private_object *tech_pvt = NULL;
+       
+       channel = switch_core_session_get_channel(session);
+       assert(channel != NULL);
+
+       tech_pvt = switch_core_session_get_private(session);
+       assert(tech_pvt != NULL);
+
+       switch_clear_flag(tech_pvt, TFLAG_IO);
+       switch_thread_cond_signal(tech_pvt->cond);
+
+       switch_core_codec_destroy(&tech_pvt->read_codec);
+       switch_core_codec_destroy(&tech_pvt->write_codec);
+       
+       switch_console_printf(SWITCH_CHANNEL_CONSOLE, "%s CHANNEL HANGUP\n", switch_channel_get_name(channel));
+
+       return SWITCH_STATUS_SUCCESS;
+}
+
+static switch_status channel_kill_channel(switch_core_session *session, int sig)
+{
+       switch_channel *channel = NULL;
+       struct private_object *tech_pvt = NULL;
+       
+       channel = switch_core_session_get_channel(session);
+       assert(channel != NULL);
+
+       tech_pvt = switch_core_session_get_private(session);
+       assert(tech_pvt != NULL);
+
+       switch_channel_hangup(channel);
+       switch_console_printf(SWITCH_CHANNEL_CONSOLE, "%s CHANNEL KILL\n", switch_channel_get_name(channel));
+
+       
+       return SWITCH_STATUS_SUCCESS;
+}
+
+static switch_status channel_on_loopback(switch_core_session *session)
+{
+       switch_console_printf(SWITCH_CHANNEL_CONSOLE, "CHANNEL LOOPBACK\n");
+       return SWITCH_STATUS_SUCCESS;
+}
+
+static switch_status channel_on_transmit(switch_core_session *session)
+{
+       switch_console_printf(SWITCH_CHANNEL_CONSOLE, "CHANNEL TRANSMIT\n");
+       return SWITCH_STATUS_SUCCESS;
+}
+
+
+/* Make sure when you have 2 sessions in the same scope that you pass the appropriate one to the routines
+   that allocate memory or you will have 1 channel with memory allocated from another channel's pool!
+*/
+static switch_status channel_outgoing_channel(switch_core_session *session, switch_caller_profile *outbound_profile, switch_core_session **new_session) 
+{
+       if ((*new_session = switch_core_session_request(&channel_endpoint_interface, NULL))) {
+               struct private_object *tech_pvt;
+               switch_channel *channel, *orig_channel;
+               switch_caller_profile *caller_profile, *originator_caller_profile = NULL;
+               unsigned int req = 0, cap = 0;
+
+               if ((tech_pvt = (struct private_object *) switch_core_session_alloc(*new_session, sizeof(struct private_object)))) {
+                       memset(tech_pvt, 0, sizeof(*tech_pvt));
+                       channel = switch_core_session_get_channel(*new_session);
+                       switch_core_session_set_private(*new_session, tech_pvt);
+                       tech_pvt->session = *new_session;
+               } else {
+                       switch_console_printf(SWITCH_CHANNEL_CONSOLE, "Hey where is my memory pool?\n");
+                       switch_core_session_destroy(new_session);
+                       return SWITCH_STATUS_GENERR;
+               }
+
+               if (outbound_profile) {
+                       char name[128];
+                       caller_profile = switch_caller_profile_clone(*new_session, outbound_profile);
+                       switch_channel_set_caller_profile(channel, caller_profile);
+                       tech_pvt->caller_profile = caller_profile;
+                       snprintf(name, sizeof(name), "PortAudio/%s-%04x", caller_profile->destination_number, rand() & 0xffff);
+                       switch_channel_set_name(channel, name);
+               } else {
+                       switch_console_printf(SWITCH_CHANNEL_CONSOLE, "Doh! no caller profile\n");
+                       switch_core_session_destroy(new_session);
+                       return SWITCH_STATUS_GENERR;
+               }
+
+               //XXX outbound shit 
+
+               /* (session == NULL) means it was originated from the core not from another channel */
+               if (session && (orig_channel = switch_core_session_get_channel(session))) {
+                       switch_caller_profile *cloned_profile;
+
+                       if ((originator_caller_profile = switch_channel_get_caller_profile(orig_channel))) {
+                               cloned_profile = switch_caller_profile_clone(*new_session, originator_caller_profile);
+                               switch_channel_set_originator_caller_profile(channel, cloned_profile);
+                       }
+               }
+               
+               switch_channel_set_flag(channel, CF_OUTBOUND);
+               switch_set_flag(tech_pvt, TFLAG_OUTBOUND);
+               switch_channel_set_state(channel, CS_INIT);
+               return SWITCH_STATUS_SUCCESS;
+       }
+
+       return SWITCH_STATUS_GENERR;
+
+}
+
+static switch_status channel_waitfor_read(switch_core_session *session, int ms)
+{
+       struct private_object *tech_pvt = NULL;
+
+       tech_pvt = switch_core_session_get_private(session);
+       assert(tech_pvt != NULL);
+
+       return SWITCH_STATUS_SUCCESS;
+}
+
+static switch_status channel_waitfor_write(switch_core_session *session, int ms)
+{
+       struct private_object *tech_pvt = NULL;
+
+       tech_pvt = switch_core_session_get_private(session);
+       assert(tech_pvt != NULL);
+
+       return SWITCH_STATUS_SUCCESS;
+
+}
+
+static switch_status channel_send_dtmf(switch_core_session *session, char *dtmf)
+{
+       struct private_object *tech_pvt = NULL;
+       char *digit;
+
+       tech_pvt = switch_core_session_get_private(session);
+       assert(tech_pvt != NULL);
+               for(digit = dtmf; *digit; digit++) {
+                       //XXX Do something...
+               }
+
+    return SWITCH_STATUS_SUCCESS;
+}
+
+static switch_status channel_read_frame(switch_core_session *session, switch_frame **frame, int timeout, switch_io_flag flags) 
+{
+       switch_channel *channel = NULL;
+       struct private_object *tech_pvt = NULL;
+
+       channel = switch_core_session_get_channel(session);
+       assert(channel != NULL);
+
+       tech_pvt = switch_core_session_get_private(session);
+       assert(tech_pvt != NULL);
+
+       for(;;) {
+               if (switch_test_flag(tech_pvt, TFLAG_IO)) {
+                       switch_thread_cond_wait(tech_pvt->cond, tech_pvt->mutex);
+                       if (!switch_test_flag(tech_pvt, TFLAG_IO)) {
+                               return SWITCH_STATUS_FALSE;                     
+                       }
+                       while (switch_test_flag(tech_pvt, TFLAG_IO) && !switch_test_flag(tech_pvt, TFLAG_VOICE)) {
+                               switch_yield(1000);
+                       }
+       
+                       if (switch_test_flag(tech_pvt, TFLAG_IO)) {
+                               switch_clear_flag(tech_pvt, TFLAG_VOICE);
+                               if(!tech_pvt->read_frame.datalen) {
+                                       continue;
+                               }
+                                               
+                               *frame = &tech_pvt->read_frame;
+                               return SWITCH_STATUS_SUCCESS;
+                       }
+               }
+               break;
+       }
+       return SWITCH_STATUS_FALSE;
+}
+
+static switch_status channel_write_frame(switch_core_session *session, switch_frame *frame, int timeout, switch_io_flag flags)
+{
+       switch_channel *channel = NULL;
+       struct private_object *tech_pvt = NULL;
+       //switch_frame *pframe;
+
+       channel = switch_core_session_get_channel(session);
+       assert(channel != NULL);
+
+       tech_pvt = switch_core_session_get_private(session);
+       assert(tech_pvt != NULL);
+
+       if(!switch_test_flag(tech_pvt, TFLAG_IO)) {
+               return SWITCH_STATUS_FALSE;
+       }
+/*
+       if (switch_test_flag(tech_pvt, TFLAG_LINEAR)) {
+               switch_swap_linear(frame->data, (int)frame->datalen / 2);
+       }
+*/
+
+       //XXX send voice
+
+       return SWITCH_STATUS_SUCCESS;
+       
+}
+
+static switch_status channel_answer_channel(switch_core_session *session)
+{
+       struct private_object *tech_pvt;
+       switch_channel *channel = NULL;
+
+       channel = switch_core_session_get_channel(session);
+       assert(channel != NULL);
+
+       tech_pvt = switch_core_session_get_private(session);
+       assert(tech_pvt != NULL);
+
+       return SWITCH_STATUS_SUCCESS;
+}
+
+static const switch_event_handler_table channel_event_handlers = {
+       /*.on_init*/                    channel_on_init,
+       /*.on_ring*/                    channel_on_ring,
+       /*.on_execute*/                 channel_on_execute,
+       /*.on_hangup*/                  channel_on_hangup,
+       /*.on_loopback*/                channel_on_loopback,
+       /*.on_transmit*/                channel_on_transmit
+};
+
+static const switch_io_routines channel_io_routines = {
+       /*.outgoing_channel*/   channel_outgoing_channel,
+       /*.answer_channel*/             channel_answer_channel,
+       /*.read_frame*/                 channel_read_frame,
+       /*.write_frame*/                channel_write_frame,
+       /*.kill_channel*/               channel_kill_channel,
+       /*.waitfor_read*/               channel_waitfor_read,
+       /*.waitfor_write*/              channel_waitfor_write,
+       /*.send_dtmf*/                  channel_send_dtmf
+};
+
+static const switch_endpoint_interface channel_endpoint_interface = {
+       /*.interface_name*/             "portaudio",
+       /*.io_routines*/                &channel_io_routines,
+       /*.event_handlers*/             &channel_event_handlers,
+       /*.private*/                    NULL,
+       /*.next*/                               NULL
+};
+
+static const switch_loadable_module_interface channel_module_interface = {
+       /*.module_name*/                        modname,
+       /*.endpoint_interface*/         &channel_endpoint_interface,
+       /*.timer_interface*/            NULL,
+       /*.dialplan_interface*/         NULL,
+       /*.codec_interface*/            NULL,
+       /*.application_interface*/      NULL
+};
+
+
+SWITCH_MOD_DECLARE(switch_status) switch_module_load(const switch_loadable_module_interface **interface, char *filename) {
+
+       if (switch_core_new_memory_pool(&module_pool) != SWITCH_STATUS_SUCCESS) {
+               switch_console_printf(SWITCH_CHANNEL_CONSOLE, "OH OH no pool\n");
+               return SWITCH_STATUS_TERM;
+       }
+
+       /* connect my internal structure to the blank pointer passed to me */
+       *interface = &channel_module_interface;
+
+       /* indicate that the module should continue to be loaded */
+       return SWITCH_STATUS_SUCCESS;
+}
+
+
+static switch_status load_config(void)
+{
+       switch_config cfg;
+       char *var, *val;
+       char *cf = "portaudio.conf";
+       
+       memset(&globals, 0, sizeof(globals));
+       
+       if (!switch_config_open_file(&cfg, cf)) {
+               switch_console_printf(SWITCH_CHANNEL_CONSOLE, "open of %s failed\n", cf);
+               return SWITCH_STATUS_TERM;
+       }
+       
+       while (switch_config_next_pair(&cfg, &var, &val)) {
+               if (!strcasecmp(cfg.category, "settings")) {
+                       if (!strcmp(var, "debug")) {
+                               globals.debug = atoi(val);
+                       } else if (!strcmp(var, "dialplan")) {
+                               set_global_dialplan(val);
+                       } else if (!strcmp(var, "soundcard")) {
+                               set_global_soundcard(val);
+                       }
+               }
+       }
+
+       if (!globals.dialplan) {
+               set_global_dialplan("default");
+       }
+
+       switch_config_close_file(&cfg);
+
+       return SWITCH_STATUS_SUCCESS;
+}
+
+/*
+SWITCH_MOD_DECLARE(switch_status) switch_module_runtime(void)
+{
+       int res;
+       int netfd;
+       int refresh;
+       struct private_object *tech_pvt = NULL;
+       
+       load_config();
+
+       running = 0;
+
+       return SWITCH_STATUS_TERM;
+}
+
+
+SWITCH_MOD_DECLARE(switch_status) switch_module_shutdown(void)
+{
+       int x = 0;
+
+       running = -1;
+
+       while (running) {
+               if (x++ > 1000) {
+                       break;
+               }
+               switch_yield(20000);
+       }
+       return SWITCH_STATUS_SUCCESS;
+}
+
+*/
\ No newline at end of file
index 0996f54415402a4af774d0ae9df84be5c0756066..d05e4df04f7dee68244c9b1482434bb3236f0368 100644 (file)
@@ -53,6 +53,11 @@ Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "mod_IaxChan", "mod_IaxChan.
                {202D7A4E-760D-4D0E-AFA1-D7459CED30FF} = {202D7A4E-760D-4D0E-AFA1-D7459CED30FF}\r
        EndProjectSection\r
 EndProject\r
+Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "mod_PortAudio", "mod_PortAudio.vcproj", "{5FD31A25-5D83-4794-8BEE-904DAD84CE71}"\r
+       ProjectSection(ProjectDependencies) = postProject\r
+               {202D7A4E-760D-4D0E-AFA1-D7459CED30FF} = {202D7A4E-760D-4D0E-AFA1-D7459CED30FF}\r
+       EndProjectSection\r
+EndProject\r
 Global\r
        GlobalSection(SolutionConfigurationPlatforms) = preSolution\r
                Debug|Win32 = Debug|Win32\r
@@ -103,6 +108,10 @@ Global
                {3A5B9131-F20C-4A85-9447-6C1610941CEE}.Debug|Win32.Build.0 = Debug|Win32\r
                {3A5B9131-F20C-4A85-9447-6C1610941CEE}.Release|Win32.ActiveCfg = Release|Win32\r
                {3A5B9131-F20C-4A85-9447-6C1610941CEE}.Release|Win32.Build.0 = Release|Win32\r
+               {5FD31A25-5D83-4794-8BEE-904DAD84CE71}.Debug|Win32.ActiveCfg = Debug|Win32\r
+               {5FD31A25-5D83-4794-8BEE-904DAD84CE71}.Debug|Win32.Build.0 = Debug|Win32\r
+               {5FD31A25-5D83-4794-8BEE-904DAD84CE71}.Release|Win32.ActiveCfg = Release|Win32\r
+               {5FD31A25-5D83-4794-8BEE-904DAD84CE71}.Release|Win32.Build.0 = Release|Win32\r
        EndGlobalSection\r
        GlobalSection(SolutionProperties) = preSolution\r
                HideSolutionNode = FALSE\r
diff --git a/w32/vsnet/mod_PortAudio.vcproj b/w32/vsnet/mod_PortAudio.vcproj
new file mode 100644 (file)
index 0000000..ef4478f
--- /dev/null
@@ -0,0 +1,220 @@
+<?xml version="1.0" encoding="Windows-1252"?>\r
+<VisualStudioProject\r
+       ProjectType="Visual C++"\r
+       Version="8.00"\r
+       Name="mod_PortAudio"\r
+       ProjectGUID="{5FD31A25-5D83-4794-8BEE-904DAD84CE71}"\r
+       RootNamespace="mod_PortAudio"\r
+       Keyword="Win32Proj"\r
+       >\r
+       <Platforms>\r
+               <Platform\r
+                       Name="Win32"\r
+               />\r
+       </Platforms>\r
+       <ToolFiles>\r
+       </ToolFiles>\r
+       <Configurations>\r
+               <Configuration\r
+                       Name="Debug|Win32"\r
+                       OutputDirectory="Debug"\r
+                       IntermediateDirectory="Debug"\r
+                       ConfigurationType="2"\r
+                       InheritedPropertySheets="$(VCInstallDir)VCProjectDefaults\UpgradeFromVC71.vsprops"\r
+                       CharacterSet="2"\r
+                       >\r
+                       <Tool\r
+                               Name="VCPreBuildEventTool"\r
+                               CommandLine=""\r
+                       />\r
+                       <Tool\r
+                               Name="VCCustomBuildTool"\r
+                       />\r
+                       <Tool\r
+                               Name="VCXMLDataGeneratorTool"\r
+                       />\r
+                       <Tool\r
+                               Name="VCWebServiceProxyGeneratorTool"\r
+                       />\r
+                       <Tool\r
+                               Name="VCMIDLTool"\r
+                       />\r
+                       <Tool\r
+                               Name="VCCLCompilerTool"\r
+                               Optimization="0"\r
+                               AdditionalIncludeDirectories="&quot;$(InputDir)..\..\include&quot;;&quot;$(InputDir)include&quot;;&quot;$(InputDir)..\..\..\libs\apr\include&quot;;&quot;$(InputDir)..\..\..\libs\portaudio\pa_common&quot;;&quot;$(InputDir)..\..\..\libs\portaudio\pablio&quot;;&quot;$(InputDir)..\..\..\libs\portaudio\pa_win_wmme&quot;"\r
+                               PreprocessorDefinitions="WIN32;_DEBUG;_WINDOWS;_USRDLL;MOD_EXPORTS"\r
+                               MinimalRebuild="true"\r
+                               BasicRuntimeChecks="3"\r
+                               RuntimeLibrary="3"\r
+                               UsePrecompiledHeader="0"\r
+                               WarningLevel="3"\r
+                               Detect64BitPortabilityProblems="true"\r
+                               DebugInformationFormat="4"\r
+                       />\r
+                       <Tool\r
+                               Name="VCManagedResourceCompilerTool"\r
+                       />\r
+                       <Tool\r
+                               Name="VCResourceCompilerTool"\r
+                       />\r
+                       <Tool\r
+                               Name="VCPreLinkEventTool"\r
+                       />\r
+                       <Tool\r
+                               Name="VCLinkerTool"\r
+                               AdditionalOptions="/NODEFAULTLIB:LIMBCTD"\r
+                               AdditionalDependencies="libapr-1.lib Ws2_32.lib Iphlpapi.lib  PAStaticWMMED.lib Winmm.lib"\r
+                               OutputFile="$(OutDir)/mod/mod_PortAudio.dll"\r
+                               LinkIncremental="2"\r
+                               AdditionalLibraryDirectories="&quot;$(InputDir)..\..\libs\apr\Debug&quot;;&quot;$(InputDir)..\..\libs\portaudio\winvc\Lib&quot;;&quot;$(InputDir)..\..\libs\iax\Debug&quot;"\r
+                               GenerateDebugInformation="true"\r
+                               ProgramDatabaseFile="$(OutDir)/mod_PortAudio.pdb"\r
+                               SubSystem="2"\r
+                               ImportLibrary="$(OutDir)/mod_PortAudio.lib"\r
+                               TargetMachine="1"\r
+                       />\r
+                       <Tool\r
+                               Name="VCALinkTool"\r
+                       />\r
+                       <Tool\r
+                               Name="VCManifestTool"\r
+                       />\r
+                       <Tool\r
+                               Name="VCXDCMakeTool"\r
+                       />\r
+                       <Tool\r
+                               Name="VCBscMakeTool"\r
+                       />\r
+                       <Tool\r
+                               Name="VCFxCopTool"\r
+                       />\r
+                       <Tool\r
+                               Name="VCAppVerifierTool"\r
+                       />\r
+                       <Tool\r
+                               Name="VCWebDeploymentTool"\r
+                       />\r
+                       <Tool\r
+                               Name="VCPostBuildEventTool"\r
+                       />\r
+               </Configuration>\r
+               <Configuration\r
+                       Name="Release|Win32"\r
+                       OutputDirectory="Release"\r
+                       IntermediateDirectory="Release"\r
+                       ConfigurationType="2"\r
+                       InheritedPropertySheets="$(VCInstallDir)VCProjectDefaults\UpgradeFromVC71.vsprops"\r
+                       CharacterSet="2"\r
+                       >\r
+                       <Tool\r
+                               Name="VCPreBuildEventTool"\r
+                               CommandLine="cscript /nologo $(InputDir)getlibs.vbs Mod_PortAudio Release"\r
+                       />\r
+                       <Tool\r
+                               Name="VCCustomBuildTool"\r
+                       />\r
+                       <Tool\r
+                               Name="VCXMLDataGeneratorTool"\r
+                       />\r
+                       <Tool\r
+                               Name="VCWebServiceProxyGeneratorTool"\r
+                       />\r
+                       <Tool\r
+                               Name="VCMIDLTool"\r
+                       />\r
+                       <Tool\r
+                               Name="VCCLCompilerTool"\r
+                               AdditionalIncludeDirectories="&quot;$(InputDir)..\..\include&quot;;&quot;$(InputDir)include&quot;;&quot;$(InputDir)..\..\..\libs\apr\include&quot;;&quot;$(InputDir)..\..\..\libs\iax\src&quot;"\r
+                               PreprocessorDefinitions="WIN32;NDEBUG;_WINDOWS;_USRDLL;MOD_EXPORTS"\r
+                               RuntimeLibrary="0"\r
+                               UsePrecompiledHeader="0"\r
+                               WarningLevel="3"\r
+                               Detect64BitPortabilityProblems="true"\r
+                               DebugInformationFormat="3"\r
+                       />\r
+                       <Tool\r
+                               Name="VCManagedResourceCompilerTool"\r
+                       />\r
+                       <Tool\r
+                               Name="VCResourceCompilerTool"\r
+                       />\r
+                       <Tool\r
+                               Name="VCPreLinkEventTool"\r
+                       />\r
+                       <Tool\r
+                               Name="VCLinkerTool"\r
+                               AdditionalDependencies="libapr-1.lib libiax2.lib"\r
+                               OutputFile="$(OutDir)/mod/mod_PortAudio.dll"\r
+                               LinkIncremental="1"\r
+                               AdditionalLibraryDirectories="&quot;$(InputDir)..\..\libs\apr\Release&quot;;&quot;$(InputDir)..\..\libs\iax\Release&quot;"\r
+                               GenerateDebugInformation="true"\r
+                               SubSystem="2"\r
+                               OptimizeReferences="2"\r
+                               EnableCOMDATFolding="2"\r
+                               ImportLibrary="$(OutDir)/mod_PortAudio.lib"\r
+                               TargetMachine="1"\r
+                       />\r
+                       <Tool\r
+                               Name="VCALinkTool"\r
+                       />\r
+                       <Tool\r
+                               Name="VCManifestTool"\r
+                       />\r
+                       <Tool\r
+                               Name="VCXDCMakeTool"\r
+                       />\r
+                       <Tool\r
+                               Name="VCBscMakeTool"\r
+                       />\r
+                       <Tool\r
+                               Name="VCFxCopTool"\r
+                       />\r
+                       <Tool\r
+                               Name="VCAppVerifierTool"\r
+                       />\r
+                       <Tool\r
+                               Name="VCWebDeploymentTool"\r
+                       />\r
+                       <Tool\r
+                               Name="VCPostBuildEventTool"\r
+                       />\r
+               </Configuration>\r
+       </Configurations>\r
+       <References>\r
+       </References>\r
+       <Files>\r
+               <Filter\r
+                       Name="Source Files"\r
+                       Filter="cpp;c;cxx;def;odl;idl;hpj;bat;asm;asmx"\r
+                       UniqueIdentifier="{4FC737F1-C7A5-4376-A066-2A32D752A2FF}"\r
+                       >\r
+                       <File\r
+                               RelativePath="..\..\src\mod\mod_PortAudio\mod_PortAudio.c"\r
+                               >\r
+                       </File>\r
+                       <File\r
+                               RelativePath="..\..\libs\portaudio\pablio\pablio.c"\r
+                               >\r
+                       </File>\r
+                       <File\r
+                               RelativePath="..\..\libs\portaudio\pablio\ringbuffer.c"\r
+                               >\r
+                       </File>\r
+               </Filter>\r
+               <Filter\r
+                       Name="Header Files"\r
+                       Filter="h;hpp;hxx;hm;inl;inc;xsd"\r
+                       UniqueIdentifier="{93995380-89BD-4b04-88EB-625FBE52EBFB}"\r
+                       >\r
+               </Filter>\r
+               <Filter\r
+                       Name="Resource Files"\r
+                       Filter="rc;ico;cur;bmp;dlg;rc2;rct;bin;rgs;gif;jpg;jpeg;jpe;resx"\r
+                       UniqueIdentifier="{67DA6AB6-F800-4c08-8B7A-83BB121AAD01}"\r
+                       >\r
+               </Filter>\r
+       </Files>\r
+       <Globals>\r
+       </Globals>\r
+</VisualStudioProject>\r