Changeset 841:a0b93bb624db in mediastreamer2


Ignore:
Timestamp:
Jan 12, 2010 5:06:09 PM (3 years ago)
Author:
Simon Morlat <simon.morlat@…>
Branch:
default
Parents:
838:301f85a154f8 (diff), 840:70b0b614685d (diff)
Note: this is a merge changeset, the changes displayed below correspond to the merge itself.
Use the (diff) links above to see all the changes relative to each parent.
Message:

Merge branch 'wince-port'

Conflicts:

linphone/mediastreamer2/build/wince/alldescs.h
linphone/mediastreamer2/build/wince/mediastreamer2.vcproj
linphone/oRTP/build/wince/oRTP.vcproj

Location:
linphone
Files:
1 added
2 deleted
9 edited

Legend:

Unmodified
Added
Removed
  • linphone/console/linphonec.c

    r829 r841  
    6262#define strdup _strdup 
    6363#endif /*strdup*/ 
    64 /* 
    65 #if !defined(access) 
    66 #define access _access 
    67 #endif*/ /*access*/ 
    6864 
    6965#endif /*_WIN32_WCE*/ 
     
    7672#else 
    7773#define _(something)    (something) 
     74#endif 
     75 
     76#ifndef PACKAGE_DIR 
     77#define PACKAGE_DIR "" 
    7878#endif 
    7979 
     
    569569 *      - FILE *mylogfile 
    570570 */ 
    571 #if  defined (_MSC_VER) 
    572 int _tmain(int argc, _TCHAR* argv[]) { 
    573         trace_level=1; 
     571#if defined (_WIN32_WCE) 
     572 
     573char **convert_args_to_ascii(int argc, _TCHAR **wargv){ 
     574        int i; 
     575        char **result=malloc(argc*sizeof(char*)); 
     576        char argtmp[128]; 
     577        for(i=0;i<argc;++i){ 
     578                wcstombs(argtmp,wargv[i],sizeof(argtmp)); 
     579                result[i]=strdup(argtmp); 
     580        } 
     581        return result; 
     582} 
     583 
     584int _tmain(int argc, _TCHAR* wargv[]) { 
     585        char **argv=convert_args_to_ascii(argc,wargv); 
     586        trace_level=6; 
    574587        linphonec_vtable.show =(ShowInterfaceCb) stub; 
    575588        linphonec_vtable.inv_recv = linphonec_call_received; 
     
    597610 
    598611 
    599  
    600  
    601612        if (! linphonec_init(argc, argv) ) exit(EXIT_FAILURE); 
    602613 
     
    621632         */ 
    622633        mylogfile = NULL; 
    623  
     634         
     635         
     636#ifndef _WIN32 
    624637        snprintf(configfile_name, PATH_MAX, "%s/.linphonerc", 
    625 #if !defined(_WIN32_WCE) 
    626638                        getenv("HOME")); 
     639#elif defined(_WIN32_WCE) 
     640        strncpy(configfile_name,PACKAGE_DIR "\\linphonerc",PATH_MAX); 
     641        mylogfile=fopen(PACKAGE_DIR "\\" "linphonec.log","w"); 
     642        printf("Logs are redirected in" PACKAGE_DIR "\\linphonec.log"); 
    627643#else 
    628                         "."); 
    629 #endif /*_WIN32_WCE*/ 
    630  
     644        snprintf(configfile_name, PATH_MAX, "%s/Linphone/linphonerc", 
     645                        getenv("APPDATA")); 
     646#endif 
    631647        /* Handle configuration filename changes */ 
    632648        switch (handle_configfile_migration()) 
  • linphone/console/linphonec.c

    r839 r841  
    137137 ***************************************************************************/ 
    138138 
    139 LinphoneCore linphonec; 
     139LinphoneCore *linphonec; 
    140140FILE *mylogfile; 
    141141#ifdef HAVE_READLINE 
     
    612612        if (! linphonec_init(argc, argv) ) exit(EXIT_FAILURE); 
    613613 
    614         linphonec_main_loop (&linphonec, sipAddr); 
     614        linphonec_main_loop (linphonec, sipAddr); 
    615615 
    616616        linphonec_finish(EXIT_SUCCESS); 
     
    697697         * Initialize linphone core 
    698698         */ 
    699         linphone_core_init (&linphonec, &linphonec_vtable, configfile_name, 
     699        linphonec=linphone_core_new (&linphonec_vtable, configfile_name, NULL, 
    700700                            NULL); 
    701         linphone_core_enable_video(&linphonec,vcap_enabled,display_enabled); 
    702         linphone_core_enable_video_preview(&linphonec,preview_enabled); 
     701        linphone_core_enable_video(linphonec,vcap_enabled,display_enabled); 
     702        linphone_core_enable_video_preview(linphonec,preview_enabled); 
    703703        if (!(vcap_enabled || display_enabled)) printf("Warning: video is disabled in linphonec, use -V or -C or -D to enable.\n"); 
    704704#ifdef HAVE_READLINE 
     
    733733 
    734734        /* Terminate any pending call */ 
    735         linphonec_parse_command_line(&linphonec, "terminate"); 
     735        linphonec_parse_command_line(linphonec, "terminate"); 
    736736        linphonec_command_finished(); 
    737737#ifdef HAVE_READLINE 
     
    743743#endif /*_WIN32_WCE*/ 
    744744 
    745         linphone_core_uninit (&linphonec); 
     745        linphone_core_destroy (linphonec); 
    746746 
    747747        if (mylogfile != NULL && mylogfile != stdout) 
     
    875875linphonec_idle_call () 
    876876{ 
    877         LinphoneCore *opm=&linphonec; 
     877        LinphoneCore *opm=linphonec; 
    878878 
    879879        /* Uncomment the following to verify being called */ 
     
    982982        { 
    983983                snprintf (buf, sizeof(buf),"call %s", sipAddr); 
    984                 linphonec_parse_command_line(&linphonec, buf); 
     984                linphonec_parse_command_line(linphonec, buf); 
    985985        } 
    986986 
     
    10201020#endif 
    10211021 
    1022                 linphonec_parse_command_line(&linphonec, iptr); 
     1022                linphonec_parse_command_line(linphonec, iptr); 
    10231023                linphonec_command_finished(); 
    10241024                free(input); 
  • linphone/mediastreamer2/build/wince/mediastreamer2.vcproj

    r839 r841  
    22<VisualStudioProject 
    33        ProjectType="Visual C++" 
    4         Version="9,00" 
     4        Version="8,00" 
    55        Name="mediastreamer2" 
    66        ProjectGUID="{177F5AE2-A40C-4412-8F26-7F85FA32464E}" 
    77        RootNamespace="mediastreamer2" 
    88        Keyword="MFCDLLProj" 
    9         TargetFrameworkVersion="131072" 
    109        > 
    1110        <Platforms> 
     
    2019                /> 
    2120                <Platform 
    22                         Name="Windows Mobile 6 Professional SDK (ARMV4I)" 
     21                        Name="MP100_2P21 (ARMV4I)" 
    2322                /> 
    2423        </Platforms> 
     
    8180                                Name="VCLinkerTool" 
    8281                                AdditionalOptions=" /SUBSYSTEM:WINDOWSCE,5.01 /MACHINE:THUMB" 
    83                                 AdditionalDependencies=" ws2.lib iphlpapi.lib mmtimer.lib libcmtd.lib dmoguids.lib strmiids.lib strmbase.lib atlsd.lib d3dmx.lib" 
     82                                AdditionalDependencies=" ws2.lib iphlpapi.lib mmtimer.lib libcmtd.lib " 
    8483                                IgnoreAllDefaultLibraries="true" 
    8584                                ModuleDefinitionFile="mediastreamer2.def" 
    8685                                GenerateDebugInformation="true" 
    87                                 RandomizedBaseAddress="1" 
    88                                 DataExecutionPrevention="0" 
    8986                        /> 
    9087                        <Tool 
     
    9693                        <Tool 
    9794                                Name="VCBscMakeTool" 
    98                         /> 
    99                         <Tool 
    100                                 Name="VCFxCopTool" 
    10195                        /> 
    10296                        <Tool 
     
    108102                        <DeploymentTool 
    109103                                ForceDirty="-1" 
    110                                 RemoteDirectory="%CSIDL_PROGRAM_FILES%\vbamsipua" 
     104                                RemoteDirectory="%CSIDL_PROGRAM_FILES%\amsipua" 
    111105                                RegisterOutput="0" 
    112106                                AdditionalFiles="" 
     
    173167                                ModuleDefinitionFile="mediastreamer2.def" 
    174168                                GenerateDebugInformation="true" 
    175                                 RandomizedBaseAddress="1" 
    176                                 DataExecutionPrevention="0" 
    177169                        /> 
    178170                        <Tool 
     
    184176                        <Tool 
    185177                                Name="VCBscMakeTool" 
    186                         /> 
    187                         <Tool 
    188                                 Name="VCFxCopTool" 
    189178                        /> 
    190179                        <Tool 
     
    196185                        <DeploymentTool 
    197186                                ForceDirty="-1" 
    198                                 RemoteDirectory="%CSIDL_PROGRAM_FILES%\vbamsipua" 
     187                                RemoteDirectory="%CSIDL_PROGRAM_FILES%\amsipua" 
    199188                                RegisterOutput="0" 
    200189                                AdditionalFiles="" 
     
    265254                                ModuleDefinitionFile="mediastreamer2.def" 
    266255                                GenerateDebugInformation="true" 
    267                                 RandomizedBaseAddress="1" 
    268                                 DataExecutionPrevention="0" 
    269256                                TargetMachine="0" 
    270257                        /> 
     
    277264                        <Tool 
    278265                                Name="VCBscMakeTool" 
    279                         /> 
    280                         <Tool 
    281                                 Name="VCFxCopTool" 
    282266                        /> 
    283267                        <Tool 
     
    297281                </Configuration> 
    298282                <Configuration 
    299                         Name="Debug|Windows Mobile 6 Professional SDK (ARMV4I)" 
    300                         OutputDirectory="Windows Mobile 6 Professional SDK (ARMV4I)\$(ConfigurationName)" 
    301                         IntermediateDirectory="Windows Mobile 6 Professional SDK (ARMV4I)\$(ConfigurationName)" 
     283                        Name="Debug|MP100_2P21 (ARMV4I)" 
     284                        OutputDirectory="MP100_2P21 (ARMV4I)\$(ConfigurationName)" 
     285                        IntermediateDirectory="MP100_2P21 (ARMV4I)\$(ConfigurationName)" 
    302286                        ConfigurationType="2" 
    303287                        UseOfMFC="0" 
     
    325309                                Name="VCCLCompilerTool" 
    326310                                ExecutionBucket="7" 
    327                                 Optimization="2" 
    328                                 FavorSizeOrSpeed="1" 
    329                                 AdditionalIncludeDirectories=".;&quot;..\..\..\..\..\linphone-builder\speex\include&quot;;..\..;..\..\include;..\..\..\oRTP\include;..\..\..\codecs\speex\include" 
    330                                 PreprocessorDefinitions="__VIDEO_DISABLED__;HAVE_SPEEX_NOISE;ORTP_INET6;MEDIASTREAMER2_EXPORT;_WIN32_WCE=$(CEVER);UNDER_CE=$(CEVER);WINCE;$(PLATFORMDEFINES);_DEBUG;_USRDLL;$(ARCHFAM);$(_ARCHFAM_)" 
     311                                Optimization="0" 
     312                                FavorSizeOrSpeed="0" 
     313                                AdditionalIncludeDirectories=".;..\..\include;..\..\..\oRTP\include;..\..\..\codecs\speex\include" 
     314                                PreprocessorDefinitions="NO_FFMPEG;VIDEO_ENABLED;AMD_HACK;HAVE_SPEEX_NOISE;ORTP_INET6;MEDIASTREAMER2_EXPORT;_WIN32_WCE=$(CEVER);UNDER_CE=$(CEVER);WINCE;$(PLATFORMDEFINES);_DEBUG;_USRDLL;$(ARCHFAM);$(_ARCHFAM_);POCKETPC2003_UI_MODEL;POCKETPC2003_UI_MODEL" 
    331315                                RuntimeLibrary="3" 
    332316                                TreatWChar_tAsBuiltInType="false" 
     
    351335                        <Tool 
    352336                                Name="VCLinkerTool" 
    353                                 AdditionalOptions=" /SUBSYSTEM:WINDOWSCE,5.01 /MACHINE:THUMB" 
    354                                 AdditionalDependencies="ws2.lib iphlpapi.lib mmtimer.lib libcmtd.lib dmoguids.lib strmiids.lib strmbase.lib atlsd.lib d3dmx.lib ortp.lib libspeex.lib libspeexdsp.lib" 
    355                                 AdditionalLibraryDirectories="&quot;..\..\..\..\..\linphone-builder\speex\lib&quot;;&quot;..\..\..\oRTP\build\wince\$(PlatformName)\$(ConfigurationName)&quot;;&quot;..\..\..\..\..\linphone-builder\speex\win32\VS2008\libspeex\$(PlatformName)\Debug_RTL_dll&quot;" 
     337                                AdditionalOptions=" /SUBSYSTEM:$(CESubsystem) /MACHINE:THUMB" 
     338                                AdditionalDependencies=" ws2.lib iphlpapi.lib mmtimer.lib libcmtd.lib " 
    356339                                IgnoreAllDefaultLibraries="true" 
    357340                                ModuleDefinitionFile="mediastreamer2.def" 
    358341                                GenerateDebugInformation="true" 
    359                                 RandomizedBaseAddress="1" 
    360                                 DataExecutionPrevention="0" 
    361342                                TargetMachine="0" 
    362343                        /> 
     
    369350                        <Tool 
    370351                                Name="VCBscMakeTool" 
    371                         /> 
    372                         <Tool 
    373                                 Name="VCFxCopTool" 
    374352                        /> 
    375353                        <Tool 
     
    381359                        <DeploymentTool 
    382360                                ForceDirty="-1" 
    383                                 RemoteDirectory="" 
     361                                RemoteDirectory="%CSIDL_PROGRAM_FILES%\amsipua" 
    384362                                RegisterOutput="0" 
    385363                                AdditionalFiles="" 
     
    423401                                ProgramDataBaseFileName="$(IntDir)/mediastreamer2.pdb" 
    424402                                WarningLevel="3" 
    425                                 DebugInformationFormat="3" 
     403                                DebugInformationFormat="0" 
    426404                                CompileAs="2" 
    427405                        /> 
     
    441419                                Name="VCLinkerTool" 
    442420                                AdditionalOptions=" /SUBSYSTEM:WINDOWSCE,5.01 /MACHINE:THUMB" 
    443                                 AdditionalDependencies="ws2.lib iphlpapi.lib mmtimer.lib libcmt.lib dmoguids.lib strmiids.lib strmbase.lib atls.lib" 
     421                                AdditionalDependencies="ws2.lib iphlpapi.lib mmtimer.lib libcmt.lib" 
    444422                                IgnoreAllDefaultLibraries="true" 
    445423                                ModuleDefinitionFile="mediastreamer2.def" 
    446                                 RandomizedBaseAddress="1" 
    447                                 DataExecutionPrevention="0" 
    448424                        /> 
    449425                        <Tool 
     
    455431                        <Tool 
    456432                                Name="VCBscMakeTool" 
    457                         /> 
    458                         <Tool 
    459                                 Name="VCFxCopTool" 
    460433                        /> 
    461434                        <Tool 
     
    467440                        <DeploymentTool 
    468441                                ForceDirty="-1" 
    469                                 RemoteDirectory="\amsip" 
     442                                RemoteDirectory="%CSIDL_PROGRAM_FILES%\amsipua" 
    470443                                RegisterOutput="0" 
    471444                                AdditionalFiles="" 
     
    509482                                ProgramDataBaseFileName="$(IntDir)/mediastreamer2.pdb" 
    510483                                WarningLevel="3" 
    511                                 DebugInformationFormat="3" 
     484                                DebugInformationFormat="0" 
    512485                                CompileAs="2" 
    513486                        /> 
     
    530503                                IgnoreAllDefaultLibraries="true" 
    531504                                ModuleDefinitionFile="mediastreamer2.def" 
    532                                 RandomizedBaseAddress="1" 
    533                                 DataExecutionPrevention="0" 
    534505                        /> 
    535506                        <Tool 
     
    541512                        <Tool 
    542513                                Name="VCBscMakeTool" 
    543                         /> 
    544                         <Tool 
    545                                 Name="VCFxCopTool" 
    546514                        /> 
    547515                        <Tool 
     
    553521                        <DeploymentTool 
    554522                                ForceDirty="-1" 
    555                                 RemoteDirectory="%CSIDL_PROGRAM_FILES%\vbamsipua" 
     523                                RemoteDirectory="%CSIDL_PROGRAM_FILES%\amsipua" 
    556524                                RegisterOutput="0" 
    557525                                AdditionalFiles="" 
     
    596564                                ProgramDataBaseFileName="$(IntDir)/mediastreamer2.pdb" 
    597565                                WarningLevel="3" 
    598                                 DebugInformationFormat="3" 
     566                                DebugInformationFormat="0" 
    599567                                CompileAs="2" 
    600568                        /> 
     
    617585                                IgnoreAllDefaultLibraries="true" 
    618586                                ModuleDefinitionFile="mediastreamer2.def" 
    619                                 RandomizedBaseAddress="1" 
    620                                 DataExecutionPrevention="0" 
    621587                                TargetMachine="0" 
    622588                        /> 
     
    629595                        <Tool 
    630596                                Name="VCBscMakeTool" 
    631                         /> 
    632                         <Tool 
    633                                 Name="VCFxCopTool" 
    634597                        /> 
    635598                        <Tool 
     
    649612                </Configuration> 
    650613                <Configuration 
    651                         Name="Release|Windows Mobile 6 Professional SDK (ARMV4I)" 
    652                         OutputDirectory="Windows Mobile 6 Professional SDK (ARMV4I)\$(ConfigurationName)" 
    653                         IntermediateDirectory="Windows Mobile 6 Professional SDK (ARMV4I)\$(ConfigurationName)" 
     614                        Name="Release|MP100_2P21 (ARMV4I)" 
     615                        OutputDirectory="MP100_2P21 (ARMV4I)\$(ConfigurationName)" 
     616                        IntermediateDirectory="MP100_2P21 (ARMV4I)\$(ConfigurationName)" 
    654617                        ConfigurationType="2" 
    655618                        UseOfMFC="0" 
     
    677640                                Name="VCCLCompilerTool" 
    678641                                ExecutionBucket="7" 
     642                                Optimization="3" 
     643                                FavorSizeOrSpeed="1" 
    679644                                AdditionalIncludeDirectories=".;..\..\include;..\..\..\oRTP\include;..\..\..\codecs\speex\include" 
    680                                 PreprocessorDefinitions="__VIDEO_DISABLED__;AMD_HACK;HAVE_SPEEX_NOISE;ORTP_INET6;MEDIASTREAMER2_EXPORT;_WIN32_WCE=$(CEVER);UNDER_CE=$(CEVER);WINCE;$(PLATFORMDEFINES);NDEBUG;_USRDLL;$(ARCHFAM);$(_ARCHFAM_);POCKETPC2003_UI_MODEL;POCKETPC2003_UI_MODEL" 
     645                                PreprocessorDefinitions="NO_FFMPEG;VIDEO_ENABLED;AMD_HACK;HAVE_SPEEX_NOISE;ORTP_INET6;MEDIASTREAMER2_EXPORT;_WIN32_WCE=$(CEVER);UNDER_CE=$(CEVER);WINCE;$(PLATFORMDEFINES);NDEBUG;_USRDLL;$(ARCHFAM);$(_ARCHFAM_);POCKETPC2003_UI_MODEL;POCKETPC2003_UI_MODEL" 
    681646                                RuntimeLibrary="2" 
     647                                TreatWChar_tAsBuiltInType="false" 
     648                                UsePrecompiledHeader="0" 
     649                                ProgramDataBaseFileName="$(IntDir)/mediastreamer2.pdb" 
     650                                WarningLevel="3" 
     651                                DebugInformationFormat="0" 
     652                                CompileAs="2" 
     653                        /> 
     654                        <Tool 
     655                                Name="VCManagedResourceCompilerTool" 
     656                        /> 
     657                        <Tool 
     658                                Name="VCResourceCompilerTool" 
     659                                PreprocessorDefinitions="NDEBUG;_UNICODE;UNICODE;_WIN32_WCE;UNDER_CE" 
     660                                Culture="1033" 
     661                                AdditionalIncludeDirectories="$(IntDir)" 
     662                        /> 
     663                        <Tool 
     664                                Name="VCPreLinkEventTool" 
     665                        /> 
     666                        <Tool 
     667                                Name="VCLinkerTool" 
     668                                AdditionalOptions=" /SUBSYSTEM:$(CESubsystem) /MACHINE:THUMB" 
     669                                AdditionalDependencies="ws2.lib iphlpapi.lib mmtimer.lib libcmt.lib" 
     670                                IgnoreAllDefaultLibraries="true" 
     671                                ModuleDefinitionFile="mediastreamer2.def" 
     672                                TargetMachine="0" 
     673                        /> 
     674                        <Tool 
     675                                Name="VCALinkTool" 
     676                        /> 
     677                        <Tool 
     678                                Name="VCXDCMakeTool" 
     679                        /> 
     680                        <Tool 
     681                                Name="VCBscMakeTool" 
     682                        /> 
     683                        <Tool 
     684                                Name="VCCodeSignTool" 
     685                        /> 
     686                        <Tool 
     687                                Name="VCPostBuildEventTool" 
     688                        /> 
     689                        <DeploymentTool 
     690                                ForceDirty="-1" 
     691                                RemoteDirectory="%CSIDL_PROGRAM_FILES%\amsipua" 
     692                                RegisterOutput="0" 
     693                                AdditionalFiles="" 
     694                        /> 
     695                        <DebuggerTool 
     696                        /> 
     697                </Configuration> 
     698                <Configuration 
     699                        Name="DebugVideo|Windows Mobile 5.0 Pocket PC SDK (ARMV4I)" 
     700                        OutputDirectory="Windows Mobile 5.0 Pocket PC SDK (ARMV4I)\$(ConfigurationName)" 
     701                        IntermediateDirectory="Windows Mobile 5.0 Pocket PC SDK (ARMV4I)\$(ConfigurationName)" 
     702                        ConfigurationType="2" 
     703                        UseOfMFC="0" 
     704                        CharacterSet="1" 
     705                        > 
     706                        <Tool 
     707                                Name="VCPreBuildEventTool" 
     708                        /> 
     709                        <Tool 
     710                                Name="VCCustomBuildTool" 
     711                        /> 
     712                        <Tool 
     713                                Name="VCXMLDataGeneratorTool" 
     714                        /> 
     715                        <Tool 
     716                                Name="VCWebServiceProxyGeneratorTool" 
     717                        /> 
     718                        <Tool 
     719                                Name="VCMIDLTool" 
     720                                PreprocessorDefinitions="_DEBUG" 
     721                                MkTypLibCompatible="false" 
     722                                TargetEnvironment="1" 
     723                        /> 
     724                        <Tool 
     725                                Name="VCCLCompilerTool" 
     726                                ExecutionBucket="7" 
     727                                Optimization="2" 
     728                                FavorSizeOrSpeed="1" 
     729                                AdditionalIncludeDirectories=".;..\..\include;..\..\..\oRTP\include;..\..\..\codecs\speex\include" 
     730                                PreprocessorDefinitions="VIDEO_ENABLED;AMD_HACK;HAVE_SPEEX_NOISE;ORTP_INET6;MEDIASTREAMER2_EXPORT;_WIN32_WCE=$(CEVER);UNDER_CE=$(CEVER);WINCE;$(PLATFORMDEFINES);_DEBUG;_USRDLL;$(ARCHFAM);$(_ARCHFAM_);POCKETPC2003_UI_MODEL;POCKETPC2003_UI_MODEL" 
     731                                RuntimeLibrary="3" 
    682732                                TreatWChar_tAsBuiltInType="false" 
    683733                                UsePrecompiledHeader="0" 
     
    692742                        <Tool 
    693743                                Name="VCResourceCompilerTool" 
     744                                PreprocessorDefinitions="_DEBUG;_UNICODE;UNICODE;_WIN32_WCE;UNDER_CE" 
     745                                Culture="1033" 
     746                                AdditionalIncludeDirectories="$(IntDir)" 
     747                        /> 
     748                        <Tool 
     749                                Name="VCPreLinkEventTool" 
     750                        /> 
     751                        <Tool 
     752                                Name="VCLinkerTool" 
     753                                AdditionalOptions=" /SUBSYSTEM:WINDOWSCE,5.01 /MACHINE:THUMB" 
     754                                AdditionalDependencies=" ws2.lib iphlpapi.lib mmtimer.lib libcmtd.lib " 
     755                                IgnoreAllDefaultLibraries="true" 
     756                                ModuleDefinitionFile="mediastreamer2-video.def" 
     757                                GenerateDebugInformation="true" 
     758                                TargetMachine="0" 
     759                        /> 
     760                        <Tool 
     761                                Name="VCALinkTool" 
     762                        /> 
     763                        <Tool 
     764                                Name="VCXDCMakeTool" 
     765                        /> 
     766                        <Tool 
     767                                Name="VCBscMakeTool" 
     768                        /> 
     769                        <Tool 
     770                                Name="VCCodeSignTool" 
     771                        /> 
     772                        <Tool 
     773                                Name="VCPostBuildEventTool" 
     774                        /> 
     775                        <DeploymentTool 
     776                                ForceDirty="-1" 
     777                                RemoteDirectory="" 
     778                                RegisterOutput="0" 
     779                                AdditionalFiles="" 
     780                        /> 
     781                        <DebuggerTool 
     782                        /> 
     783                </Configuration> 
     784                <Configuration 
     785                        Name="DebugVideo|Windows Mobile 5.0 Smartphone SDK (ARMV4I)" 
     786                        OutputDirectory="Windows Mobile 5.0 Smartphone SDK (ARMV4I)\$(ConfigurationName)" 
     787                        IntermediateDirectory="Windows Mobile 5.0 Smartphone SDK (ARMV4I)\$(ConfigurationName)" 
     788                        ConfigurationType="2" 
     789                        UseOfMFC="0" 
     790                        CharacterSet="1" 
     791                        > 
     792                        <Tool 
     793                                Name="VCPreBuildEventTool" 
     794                        /> 
     795                        <Tool 
     796                                Name="VCCustomBuildTool" 
     797                        /> 
     798                        <Tool 
     799                                Name="VCXMLDataGeneratorTool" 
     800                        /> 
     801                        <Tool 
     802                                Name="VCWebServiceProxyGeneratorTool" 
     803                        /> 
     804                        <Tool 
     805                                Name="VCMIDLTool" 
     806                                PreprocessorDefinitions="_DEBUG" 
     807                                MkTypLibCompatible="false" 
     808                                TargetEnvironment="1" 
     809                        /> 
     810                        <Tool 
     811                                Name="VCCLCompilerTool" 
     812                                ExecutionBucket="7" 
     813                                Optimization="0" 
     814                                AdditionalIncludeDirectories=".;..\..\include;..\..\..\oRTP\include;..\..\..\codecs\speex\include" 
     815                                PreprocessorDefinitions="__VIDEO_DISABLED__;ORTP_INET6;MEDIASTREAMER2_EXPORT;AMD_HACK;_WIN32_WCE=$(CEVER);UNDER_CE=$(CEVER);WINCE;$(PLATFORMDEFINES);_DEBUG;_USRDLL;$(ARCHFAM);$(_ARCHFAM_);SMARTPHONE2003_UI_MODEL;SMARTPHONE2003_UI_MODEL" 
     816                                RuntimeLibrary="3" 
     817                                TreatWChar_tAsBuiltInType="false" 
     818                                UsePrecompiledHeader="0" 
     819                                ProgramDataBaseFileName="$(IntDir)/mediastreamer2.pdb" 
     820                                WarningLevel="3" 
     821                                DebugInformationFormat="3" 
     822                                CompileAs="2" 
     823                        /> 
     824                        <Tool 
     825                                Name="VCManagedResourceCompilerTool" 
     826                        /> 
     827                        <Tool 
     828                                Name="VCResourceCompilerTool" 
     829                                PreprocessorDefinitions="_DEBUG;_UNICODE;UNICODE;_WIN32_WCE;UNDER_CE" 
     830                                Culture="1033" 
     831                                AdditionalIncludeDirectories="$(IntDir)" 
     832                        /> 
     833                        <Tool 
     834                                Name="VCPreLinkEventTool" 
     835                        /> 
     836                        <Tool 
     837                                Name="VCLinkerTool" 
     838                                AdditionalOptions=" /SUBSYSTEM:WINDOWSCE,5.01 /MACHINE:THUMB" 
     839                                AdditionalDependencies=" ws2.lib iphlpapi.lib mmtimer.lib libcmtd.lib dmoguids.lib strmiids.lib strmbase.lib atlsd.lib d3dmx.lib" 
     840                                IgnoreAllDefaultLibraries="true" 
     841                                ModuleDefinitionFile="mediastreamer2.def" 
     842                                GenerateDebugInformation="true" 
     843                                TargetMachine="0" 
     844                        /> 
     845                        <Tool 
     846                                Name="VCALinkTool" 
     847                        /> 
     848                        <Tool 
     849                                Name="VCXDCMakeTool" 
     850                        /> 
     851                        <Tool 
     852                                Name="VCBscMakeTool" 
     853                        /> 
     854                        <Tool 
     855                                Name="VCCodeSignTool" 
     856                        /> 
     857                        <Tool 
     858                                Name="VCPostBuildEventTool" 
     859                        /> 
     860                        <DeploymentTool 
     861                                ForceDirty="-1" 
     862                                RemoteDirectory="" 
     863                                RegisterOutput="0" 
     864                                AdditionalFiles="" 
     865                        /> 
     866                        <DebuggerTool 
     867                        /> 
     868                </Configuration> 
     869                <Configuration 
     870                        Name="DebugVideo|Windows Mobile 6 Standard SDK (ARMV4I)" 
     871                        OutputDirectory="Windows Mobile 6 Standard SDK (ARMV4I)\$(ConfigurationName)" 
     872                        IntermediateDirectory="Windows Mobile 6 Standard SDK (ARMV4I)\$(ConfigurationName)" 
     873                        ConfigurationType="2" 
     874                        UseOfMFC="0" 
     875                        UseOfATL="0" 
     876                        CharacterSet="1" 
     877                        > 
     878                        <Tool 
     879                                Name="VCPreBuildEventTool" 
     880                        /> 
     881                        <Tool 
     882                                Name="VCCustomBuildTool" 
     883                        /> 
     884                        <Tool 
     885                                Name="VCXMLDataGeneratorTool" 
     886                        /> 
     887                        <Tool 
     888                                Name="VCWebServiceProxyGeneratorTool" 
     889                        /> 
     890                        <Tool 
     891                                Name="VCMIDLTool" 
     892                                PreprocessorDefinitions="_DEBUG" 
     893                                MkTypLibCompatible="false" 
     894                                TargetEnvironment="1" 
     895                        /> 
     896                        <Tool 
     897                                Name="VCCLCompilerTool" 
     898                                ExecutionBucket="7" 
     899                                Optimization="2" 
     900                                FavorSizeOrSpeed="1" 
     901                                AdditionalIncludeDirectories=".;..\..\include;..\..\..\oRTP\include;..\..\..\codecs\speex\include" 
     902                                PreprocessorDefinitions="__VIDEO_DISABLED__;AMD_HACK;HAVE_SPEEX_NOISE;ORTP_INET6;MEDIASTREAMER2_EXPORT;_WIN32_WCE=$(CEVER);UNDER_CE=$(CEVER);WINCE;$(PLATFORMDEFINES);_DEBUG;_USRDLL;$(ARCHFAM);$(_ARCHFAM_)" 
     903                                ExceptionHandling="1" 
     904                                RuntimeLibrary="3" 
     905                                TreatWChar_tAsBuiltInType="false" 
     906                                UsePrecompiledHeader="0" 
     907                                ProgramDataBaseFileName="$(IntDir)/mediastreamer2.pdb" 
     908                                WarningLevel="3" 
     909                                DebugInformationFormat="3" 
     910                                CompileAs="2" 
     911                        /> 
     912                        <Tool 
     913                                Name="VCManagedResourceCompilerTool" 
     914                        /> 
     915                        <Tool 
     916                                Name="VCResourceCompilerTool" 
     917                                PreprocessorDefinitions="_DEBUG;_UNICODE;UNICODE;_WIN32_WCE;UNDER_CE" 
     918                                Culture="1033" 
     919                                AdditionalIncludeDirectories="$(IntDir)" 
     920                        /> 
     921                        <Tool 
     922                                Name="VCPreLinkEventTool" 
     923                        /> 
     924                        <Tool 
     925                                Name="VCLinkerTool" 
     926                                AdditionalOptions=" /SUBSYSTEM:WINDOWSCE,5.01 /MACHINE:THUMB" 
     927                                AdditionalDependencies="atlsd.lib strmiids.lib dmoguids.lib strmbase.lib ws2.lib iphlpapi.lib mmtimer.lib libcmtd.lib" 
     928                                IgnoreAllDefaultLibraries="true" 
     929                                ModuleDefinitionFile="mediastreamer2.def" 
     930                                GenerateDebugInformation="true" 
     931                                TargetMachine="0" 
     932                        /> 
     933                        <Tool 
     934                                Name="VCALinkTool" 
     935                        /> 
     936                        <Tool 
     937                                Name="VCXDCMakeTool" 
     938                        /> 
     939                        <Tool 
     940                                Name="VCBscMakeTool" 
     941                        /> 
     942                        <Tool 
     943                                Name="VCCodeSignTool" 
     944                        /> 
     945                        <Tool 
     946                                Name="VCPostBuildEventTool" 
     947                        /> 
     948                        <DeploymentTool 
     949                                ForceDirty="-1" 
     950                                RemoteDirectory="" 
     951                                RegisterOutput="0" 
     952                                AdditionalFiles="" 
     953                        /> 
     954                        <DebuggerTool 
     955                        /> 
     956                </Configuration> 
     957                <Configuration 
     958                        Name="DebugVideo|MP100_2P21 (ARMV4I)" 
     959                        OutputDirectory="MP100_2P21 (ARMV4I)\$(ConfigurationName)" 
     960                        IntermediateDirectory="MP100_2P21 (ARMV4I)\$(ConfigurationName)" 
     961                        ConfigurationType="2" 
     962                        UseOfMFC="0" 
     963                        CharacterSet="1" 
     964                        > 
     965                        <Tool 
     966                                Name="VCPreBuildEventTool" 
     967                        /> 
     968                        <Tool 
     969                                Name="VCCustomBuildTool" 
     970                        /> 
     971                        <Tool 
     972                                Name="VCXMLDataGeneratorTool" 
     973                        /> 
     974                        <Tool 
     975                                Name="VCWebServiceProxyGeneratorTool" 
     976                        /> 
     977                        <Tool 
     978                                Name="VCMIDLTool" 
     979                                PreprocessorDefinitions="_DEBUG" 
     980                                MkTypLibCompatible="false" 
     981                                TargetEnvironment="1" 
     982                        /> 
     983                        <Tool 
     984                                Name="VCCLCompilerTool" 
     985                                ExecutionBucket="7" 
     986                                Optimization="0" 
     987                                FavorSizeOrSpeed="0" 
     988                                AdditionalIncludeDirectories=".;..\..\include;..\..\..\oRTP\include;..\..\..\codecs\speex\include" 
     989                                PreprocessorDefinitions="NO_FFMPEG;VIDEO_ENABLED;AMD_HACK;HAVE_SPEEX_NOISE;ORTP_INET6;MEDIASTREAMER2_EXPORT;_WIN32_WCE=$(CEVER);UNDER_CE=$(CEVER);WINCE;$(PLATFORMDEFINES);_DEBUG;_USRDLL;$(ARCHFAM);$(_ARCHFAM_);POCKETPC2003_UI_MODEL;POCKETPC2003_UI_MODEL" 
     990                                RuntimeLibrary="3" 
     991                                TreatWChar_tAsBuiltInType="false" 
     992                                UsePrecompiledHeader="0" 
     993                                ProgramDataBaseFileName="$(IntDir)/mediastreamer2.pdb" 
     994                                WarningLevel="3" 
     995                                DebugInformationFormat="0" 
     996                                CompileAs="2" 
     997                        /> 
     998                        <Tool 
     999                                Name="VCManagedResourceCompilerTool" 
     1000                        /> 
     1001                        <Tool 
     1002                                Name="VCResourceCompilerTool" 
     1003                                PreprocessorDefinitions="_DEBUG;_UNICODE;UNICODE;_WIN32_WCE;UNDER_CE" 
     1004                                Culture="1033" 
     1005                                AdditionalIncludeDirectories="$(IntDir)" 
     1006                        /> 
     1007                        <Tool 
     1008                                Name="VCPreLinkEventTool" 
     1009                        /> 
     1010                        <Tool 
     1011                                Name="VCLinkerTool" 
     1012                                AdditionalOptions=" /SUBSYSTEM:$(CESubsystem) /MACHINE:THUMB" 
     1013                                AdditionalDependencies=" ws2.lib iphlpapi.lib mmtimer.lib libcmtd.lib " 
     1014                                IgnoreAllDefaultLibraries="true" 
     1015                                ModuleDefinitionFile="mediastreamer2-video.def" 
     1016                                GenerateDebugInformation="true" 
     1017                                TargetMachine="0" 
     1018                        /> 
     1019                        <Tool 
     1020                                Name="VCALinkTool" 
     1021                        /> 
     1022                        <Tool 
     1023                                Name="VCXDCMakeTool" 
     1024                        /> 
     1025                        <Tool 
     1026                                Name="VCBscMakeTool" 
     1027                        /> 
     1028                        <Tool 
     1029                                Name="VCCodeSignTool" 
     1030                        /> 
     1031                        <Tool 
     1032                                Name="VCPostBuildEventTool" 
     1033                        /> 
     1034                        <DeploymentTool 
     1035                                ForceDirty="-1" 
     1036                                RemoteDirectory="%CSIDL_PROGRAM_FILES%\amsipua" 
     1037                                RegisterOutput="0" 
     1038                                AdditionalFiles="" 
     1039                        /> 
     1040                        <DebuggerTool 
     1041                        /> 
     1042                </Configuration> 
     1043                <Configuration 
     1044                        Name="ReleaseVideo|Windows Mobile 5.0 Pocket PC SDK (ARMV4I)" 
     1045                        OutputDirectory="Windows Mobile 5.0 Pocket PC SDK (ARMV4I)\$(ConfigurationName)" 
     1046                        IntermediateDirectory="Windows Mobile 5.0 Pocket PC SDK (ARMV4I)\$(ConfigurationName)" 
     1047                        ConfigurationType="2" 
     1048                        UseOfMFC="0" 
     1049                        CharacterSet="1" 
     1050                        > 
     1051                        <Tool 
     1052                                Name="VCPreBuildEventTool" 
     1053                        /> 
     1054                        <Tool 
     1055                                Name="VCCustomBuildTool" 
     1056                        /> 
     1057                        <Tool 
     1058                                Name="VCXMLDataGeneratorTool" 
     1059                        /> 
     1060                        <Tool 
     1061                                Name="VCWebServiceProxyGeneratorTool" 
     1062                        /> 
     1063                        <Tool 
     1064                                Name="VCMIDLTool" 
     1065                                PreprocessorDefinitions="NDEBUG" 
     1066                                MkTypLibCompatible="false" 
     1067                                TargetEnvironment="1" 
     1068                        /> 
     1069                        <Tool 
     1070                                Name="VCCLCompilerTool" 
     1071                                ExecutionBucket="7" 
     1072                                AdditionalIncludeDirectories=".;..\..\include;..\..\..\oRTP\include;..\..\..\codecs\speex\include" 
     1073                                PreprocessorDefinitions="NO_FFMPEG;VIDEO_ENABLED;AMD_HACK;HAVE_SPEEX_NOISE;ORTP_INET6;MEDIASTREAMER2_EXPORT;_WIN32_WCE=$(CEVER);UNDER_CE=$(CEVER);WINCE;$(PLATFORMDEFINES);NDEBUG;_USRDLL;$(ARCHFAM);$(_ARCHFAM_);POCKETPC2003_UI_MODEL;POCKETPC2003_UI_MODEL" 
     1074                                RuntimeLibrary="2" 
     1075                                TreatWChar_tAsBuiltInType="false" 
     1076                                UsePrecompiledHeader="0" 
     1077                                ProgramDataBaseFileName="$(IntDir)/mediastreamer2.pdb" 
     1078                                WarningLevel="3" 
     1079                                DebugInformationFormat="0" 
     1080                                CompileAs="2" 
     1081                        /> 
     1082                        <Tool 
     1083                                Name="VCManagedResourceCompilerTool" 
     1084                        /> 
     1085                        <Tool 
     1086                                Name="VCResourceCompilerTool" 
     1087                                PreprocessorDefinitions="NDEBUG;_UNICODE;UNICODE;_WIN32_WCE;UNDER_CE" 
     1088                                Culture="1033" 
     1089                                AdditionalIncludeDirectories="$(IntDir)" 
     1090                        /> 
     1091                        <Tool 
     1092                                Name="VCPreLinkEventTool" 
     1093                        /> 
     1094                        <Tool 
     1095                                Name="VCLinkerTool" 
     1096                                AdditionalOptions=" /SUBSYSTEM:WINDOWSCE,5.01 /MACHINE:THUMB" 
     1097                                AdditionalDependencies="dmoguids.lib strmiids.lib strmbase.lib atls.lib ws2.lib iphlpapi.lib mmtimer.lib libcmt.lib" 
     1098                                IgnoreAllDefaultLibraries="true" 
     1099                                ModuleDefinitionFile="mediastreamer2-video.def" 
     1100                                TargetMachine="0" 
     1101                        /> 
     1102                        <Tool 
     1103                                Name="VCALinkTool" 
     1104                        /> 
     1105                        <Tool 
     1106                                Name="VCXDCMakeTool" 
     1107                        /> 
     1108                        <Tool 
     1109                                Name="VCBscMakeTool" 
     1110                        /> 
     1111                        <Tool 
     1112                                Name="VCCodeSignTool" 
     1113                        /> 
     1114                        <Tool 
     1115                                Name="VCPostBuildEventTool" 
     1116                        /> 
     1117                        <DeploymentTool 
     1118                                ForceDirty="-1" 
     1119                                RemoteDirectory="" 
     1120                                RegisterOutput="0" 
     1121                                AdditionalFiles="" 
     1122                        /> 
     1123                        <DebuggerTool 
     1124                        /> 
     1125                </Configuration> 
     1126                <Configuration 
     1127                        Name="ReleaseVideo|Windows Mobile 5.0 Smartphone SDK (ARMV4I)" 
     1128                        OutputDirectory="Windows Mobile 5.0 Smartphone SDK (ARMV4I)\$(ConfigurationName)" 
     1129                        IntermediateDirectory="Windows Mobile 5.0 Smartphone SDK (ARMV4I)\$(ConfigurationName)" 
     1130                        ConfigurationType="2" 
     1131                        UseOfMFC="0" 
     1132                        CharacterSet="1" 
     1133                        > 
     1134                        <Tool 
     1135                                Name="VCPreBuildEventTool" 
     1136                        /> 
     1137                        <Tool 
     1138                                Name="VCCustomBuildTool" 
     1139                        /> 
     1140                        <Tool 
     1141                                Name="VCXMLDataGeneratorTool" 
     1142                        /> 
     1143                        <Tool 
     1144                                Name="VCWebServiceProxyGeneratorTool" 
     1145                        /> 
     1146                        <Tool 
     1147                                Name="VCMIDLTool" 
     1148                                PreprocessorDefinitions="NDEBUG" 
     1149                                MkTypLibCompatible="false" 
     1150                                TargetEnvironment="1" 
     1151                        /> 
     1152                        <Tool 
     1153                                Name="VCCLCompilerTool" 
     1154                                ExecutionBucket="7" 
     1155                                AdditionalIncludeDirectories=".;..\..\include;..\..\..\oRTP\include;..\..\..\codecs\speex\include" 
     1156                                PreprocessorDefinitions="__VIDEO_DISABLED__;ORTP_INET6;MEDIASTREAMER2_EXPORT;AMD_HACK;_WIN32_WCE=$(CEVER);UNDER_CE=$(CEVER);WINCE;$(PLATFORMDEFINES);NDEBUG;_USRDLL;$(ARCHFAM);$(_ARCHFAM_);SMARTPHONE2003_UI_MODEL;SMARTPHONE2003_UI_MODEL" 
     1157                                RuntimeLibrary="2" 
     1158                                TreatWChar_tAsBuiltInType="false" 
     1159                                UsePrecompiledHeader="0" 
     1160                                ProgramDataBaseFileName="$(IntDir)/mediastreamer2.pdb" 
     1161                                WarningLevel="3" 
     1162                                DebugInformationFormat="0" 
     1163                                CompileAs="2" 
     1164                        /> 
     1165                        <Tool 
     1166                                Name="VCManagedResourceCompilerTool" 
     1167                        /> 
     1168                        <Tool 
     1169                                Name="VCResourceCompilerTool" 
    6941170                                PreprocessorDefinitions="NDEBUG;_UNICODE;UNICODE;_WIN32_WCE;UNDER_CE" 
    6951171                                Culture="1033" 
     
    7051181                                IgnoreAllDefaultLibraries="true" 
    7061182                                ModuleDefinitionFile="mediastreamer2.def" 
    707                                 RandomizedBaseAddress="1" 
    708                                 DataExecutionPrevention="0" 
    7091183                                TargetMachine="0" 
    7101184                        /> 
     
    7171191                        <Tool 
    7181192                                Name="VCBscMakeTool" 
    719                         /> 
    720                         <Tool 
    721                                 Name="VCFxCopTool" 
    7221193                        /> 
    7231194                        <Tool 
     
    7301201                                ForceDirty="-1" 
    7311202                                RemoteDirectory="" 
     1203                                RegisterOutput="0" 
     1204                                AdditionalFiles="" 
     1205                        /> 
     1206                        <DebuggerTool 
     1207                        /> 
     1208                </Configuration> 
     1209                <Configuration 
     1210                        Name="ReleaseVideo|Windows Mobile 6 Standard SDK (ARMV4I)" 
     1211                        OutputDirectory="Windows Mobile 6 Standard SDK (ARMV4I)\$(ConfigurationName)" 
     1212                        IntermediateDirectory="Windows Mobile 6 Standard SDK (ARMV4I)\$(ConfigurationName)" 
     1213                        ConfigurationType="2" 
     1214                        UseOfMFC="0" 
     1215                        CharacterSet="1" 
     1216                        > 
     1217                        <Tool 
     1218                                Name="VCPreBuildEventTool" 
     1219                        /> 
     1220                        <Tool 
     1221                                Name="VCCustomBuildTool" 
     1222                        /> 
     1223                        <Tool 
     1224                                Name="VCXMLDataGeneratorTool" 
     1225                        /> 
     1226                        <Tool 
     1227                                Name="VCWebServiceProxyGeneratorTool" 
     1228                        /> 
     1229                        <Tool 
     1230                                Name="VCMIDLTool" 
     1231                                PreprocessorDefinitions="NDEBUG" 
     1232                                MkTypLibCompatible="false" 
     1233                                TargetEnvironment="1" 
     1234                        /> 
     1235                        <Tool 
     1236                                Name="VCCLCompilerTool" 
     1237                                ExecutionBucket="7" 
     1238                                AdditionalIncludeDirectories=".;..\..\include;..\..\..\oRTP\include;..\..\..\codecs\speex\include" 
     1239                                PreprocessorDefinitions="__VIDEO_DISABLED__;AMD_HACK;HAVE_SPEEX_NOISE;ORTP_INET6;MEDIASTREAMER2_EXPORT;_WIN32_WCE=$(CEVER);UNDER_CE=$(CEVER);WINCE;$(PLATFORMDEFINES);NDEBUG;_USRDLL;$(ARCHFAM);$(_ARCHFAM_)" 
     1240                                RuntimeLibrary="2" 
     1241                                TreatWChar_tAsBuiltInType="false" 
     1242                                UsePrecompiledHeader="0" 
     1243                                ProgramDataBaseFileName="$(IntDir)/mediastreamer2.pdb" 
     1244                                WarningLevel="3" 
     1245                                DebugInformationFormat="0" 
     1246                                CompileAs="2" 
     1247                        /> 
     1248                        <Tool 
     1249                                Name="VCManagedResourceCompilerTool" 
     1250                        /> 
     1251                        <Tool 
     1252                                Name="VCResourceCompilerTool" 
     1253                                PreprocessorDefinitions="NDEBUG;_UNICODE;UNICODE;_WIN32_WCE;UNDER_CE" 
     1254                                Culture="1033" 
     1255                                AdditionalIncludeDirectories="$(IntDir)" 
     1256                        /> 
     1257                        <Tool 
     1258                                Name="VCPreLinkEventTool" 
     1259                        /> 
     1260                        <Tool 
     1261                                Name="VCLinkerTool" 
     1262                                AdditionalOptions=" /SUBSYSTEM:WINDOWSCE,5.01 /MACHINE:THUMB" 
     1263                                AdditionalDependencies="atls.lib strmiids.lib dmoguids.lib strmbase.lib ws2.lib iphlpapi.lib mmtimer.lib libcmt.lib" 
     1264                                IgnoreAllDefaultLibraries="true" 
     1265                                ModuleDefinitionFile="mediastreamer2.def" 
     1266                                TargetMachine="0" 
     1267                        /> 
     1268                        <Tool 
     1269                                Name="VCALinkTool" 
     1270                        /> 
     1271                        <Tool 
     1272                                Name="VCXDCMakeTool" 
     1273                        /> 
     1274                        <Tool 
     1275                                Name="VCBscMakeTool" 
     1276                        /> 
     1277                        <Tool 
     1278                                Name="VCCodeSignTool" 
     1279                        /> 
     1280                        <Tool 
     1281                                Name="VCPostBuildEventTool" 
     1282                        /> 
     1283                        <DeploymentTool 
     1284                                ForceDirty="-1" 
     1285                                RemoteDirectory="" 
     1286                                RegisterOutput="0" 
     1287                                AdditionalFiles="" 
     1288                        /> 
     1289                        <DebuggerTool 
     1290                        /> 
     1291                </Configuration> 
     1292                <Configuration 
     1293                        Name="ReleaseVideo|MP100_2P21 (ARMV4I)" 
     1294                        OutputDirectory="MP100_2P21 (ARMV4I)\$(ConfigurationName)" 
     1295                        IntermediateDirectory="MP100_2P21 (ARMV4I)\$(ConfigurationName)" 
     1296                        ConfigurationType="2" 
     1297                        UseOfMFC="0" 
     1298                        CharacterSet="1" 
     1299                        > 
     1300                        <Tool 
     1301                                Name="VCPreBuildEventTool" 
     1302                        /> 
     1303                        <Tool 
     1304                                Name="VCCustomBuildTool" 
     1305                        /> 
     1306                        <Tool 
     1307                                Name="VCXMLDataGeneratorTool" 
     1308                        /> 
     1309                        <Tool 
     1310                                Name="VCWebServiceProxyGeneratorTool" 
     1311                        /> 
     1312                        <Tool 
     1313                                Name="VCMIDLTool" 
     1314                                PreprocessorDefinitions="NDEBUG" 
     1315                                MkTypLibCompatible="false" 
     1316                                TargetEnvironment="1" 
     1317                        /> 
     1318                        <Tool 
     1319                                Name="VCCLCompilerTool" 
     1320                                ExecutionBucket="7" 
     1321                                Optimization="3" 
     1322                                FavorSizeOrSpeed="1" 
     1323                                AdditionalIncludeDirectories=".;..\..\include;..\..\..\oRTP\include;..\..\..\codecs\speex\include" 
     1324                                PreprocessorDefinitions="NO_FFMPEG;VIDEO_ENABLED;AMD_HACK;HAVE_SPEEX_NOISE;ORTP_INET6;MEDIASTREAMER2_EXPORT;_WIN32_WCE=$(CEVER);UNDER_CE=$(CEVER);WINCE;$(PLATFORMDEFINES);NDEBUG;_USRDLL;$(ARCHFAM);$(_ARCHFAM_);POCKETPC2003_UI_MODEL;POCKETPC2003_UI_MODEL" 
     1325                                RuntimeLibrary="2" 
     1326                                TreatWChar_tAsBuiltInType="false" 
     1327                                UsePrecompiledHeader="0" 
     1328                                ProgramDataBaseFileName="$(IntDir)/mediastreamer2.pdb" 
     1329                                WarningLevel="3" 
     1330                                DebugInformationFormat="0" 
     1331                                CompileAs="2" 
     1332                        /> 
     1333                        <Tool 
     1334                                Name="VCManagedResourceCompilerTool" 
     1335                        /> 
     1336                        <Tool 
     1337                                Name="VCResourceCompilerTool" 
     1338                                PreprocessorDefinitions="NDEBUG;_UNICODE;UNICODE;_WIN32_WCE;UNDER_CE" 
     1339                                Culture="1033" 
     1340                                AdditionalIncludeDirectories="$(IntDir)" 
     1341                        /> 
     1342                        <Tool 
     1343                                Name="VCPreLinkEventTool" 
     1344                        /> 
     1345                        <Tool 
     1346                                Name="VCLinkerTool" 
     1347                                AdditionalOptions=" /SUBSYSTEM:$(CESubsystem) /MACHINE:THUMB" 
     1348                                AdditionalDependencies="atls.lib ws2.lib iphlpapi.lib mmtimer.lib libcmt.lib" 
     1349                                IgnoreAllDefaultLibraries="true" 
     1350                                ModuleDefinitionFile="mediastreamer2-video.def" 
     1351                                TargetMachine="0" 
     1352                        /> 
     1353                        <Tool 
     1354                                Name="VCALinkTool" 
     1355                        /> 
     1356                        <Tool 
     1357                                Name="VCXDCMakeTool" 
     1358                        /> 
     1359                        <Tool 
     1360                                Name="VCBscMakeTool" 
     1361                        /> 
     1362                        <Tool 
     1363                                Name="VCCodeSignTool" 
     1364                        /> 
     1365                        <Tool 
     1366                                Name="VCPostBuildEventTool" 
     1367                        /> 
     1368                        <DeploymentTool 
     1369                                ForceDirty="-1" 
     1370                                RemoteDirectory="%CSIDL_PROGRAM_FILES%\amsipua" 
    7321371                                RegisterOutput="0" 
    7331372                                AdditionalFiles="" 
     
    7541393                        </File> 
    7551394                        <File 
    756                                 RelativePath="..\..\src\dsptools.c" 
    757                                 > 
    758                         </File> 
    759                         <File 
    7601395                                RelativePath="..\..\src\dtmfgen.c" 
    7611396                                > 
    7621397                        </File> 
    7631398                        <File 
    764                                 RelativePath="..\..\src\dxfilter.cpp" 
    765                                 > 
    766                         </File> 
    767                         <File 
    768                                 RelativePath="..\..\src\equalizer.c" 
    769                                 > 
    770                         </File> 
    771                         <File 
    7721399                                RelativePath="..\..\src\ice.c" 
    7731400                                > 
    7741401                        </File> 
    7751402                        <File 
    776                                 RelativePath="..\..\src\kiss_fft.c" 
    777                                 > 
    778                         </File> 
    779                         <File 
    780                                 RelativePath="..\..\src\kiss_fftr.c" 
    781                                 > 
    782                         </File> 
    783                         <File 
    7841403                                RelativePath="..\..\src\mscommon.c" 
    7851404                                > 
     
    8101429                        </File> 
    8111430                        <File 
     1431                                RelativePath="..\..\src\msresample.c" 
     1432                                > 
     1433                        </File> 
     1434                        <File 
    8121435                                RelativePath="..\..\src\msrtp.c" 
    8131436                                > 
     
    8381461                        </File> 
    8391462                        <File 
     1463                                RelativePath="..\..\src\rfc3984.c" 
     1464                                > 
     1465                        </File> 
     1466                        <File 
    8401467                                RelativePath="..\..\src\speexec.c" 
    8411468                                > 
     
    8501477                        </File> 
    8511478                        <File 
    852                                 RelativePath="..\..\src\wincevideods.c" 
    853                                 > 
    854                         </File> 
    855                         <File 
    856                                 RelativePath="..\..\src\winsnd3.c" 
     1479                                RelativePath="..\..\src\void.c" 
     1480                                > 
     1481                        </File> 
     1482                        <File 
     1483                                RelativePath="..\..\src\winsnd.c" 
    8571484                                > 
    8581485                        </File> 
     
    8881515                        </File> 
    8891516                        <File 
    890                                 RelativePath="..\..\include\mediastreamer2\mediastream.h" 
    891                                 > 
    892                         </File> 
    893                         <File 
    8941517                                RelativePath="..\..\include\mediastreamer2\mscommon.h" 
    8951518                                > 
     
    9241547                        </File> 
    9251548                        <File 
     1549                                RelativePath="..\..\include\mediastreamer2\mswebcam.h" 
     1550                                > 
     1551                        </File> 
     1552                        <File 
     1553                                RelativePath="..\..\include\mediastreamer2\rfc3984.h" 
     1554                                > 
     1555                        </File> 
     1556                        <File 
    9261557                                RelativePath="..\..\include\mediastreamer2\waveheader.h" 
    9271558                                > 
    9281559                        </File> 
    9291560                </Filter> 
     1561                <File 
     1562                        RelativePath=".\mediastreamer2.def" 
     1563                        > 
     1564                </File> 
    9301565        </Files> 
    9311566        <Globals> 
  • linphone/mediastreamer2/build/winmob/mediastreamer2.sln

    r831 r841  
    33# Visual Studio 2008 
    44Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "mediastreamer2", "mediastreamer2.vcproj", "{177F5AE2-A40C-4412-8F26-7F85FA32464E}" 
     5EndProject 
     6Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "echo", "echo\echo.vcproj", "{B616AC95-748E-4CD5-89AC-772DC3C069D9}" 
    57EndProject 
    68Global 
     
    4042                {177F5AE2-A40C-4412-8F26-7F85FA32464E}.Release|Windows Mobile 6 Standard SDK (ARMV4I).Build.0 = Release|Windows Mobile 6 Standard SDK (ARMV4I) 
    4143                {177F5AE2-A40C-4412-8F26-7F85FA32464E}.Release|Windows Mobile 6 Standard SDK (ARMV4I).Deploy.0 = Release|Windows Mobile 6 Standard SDK (ARMV4I) 
     44                {B616AC95-748E-4CD5-89AC-772DC3C069D9}.Debug|Windows Mobile 5.0 Pocket PC SDK (ARMV4I).ActiveCfg = Debug|Windows Mobile 6 Professional SDK (ARMV4I) 
     45                {B616AC95-748E-4CD5-89AC-772DC3C069D9}.Debug|Windows Mobile 5.0 Smartphone SDK (ARMV4I).ActiveCfg = Debug|Windows Mobile 6 Professional SDK (ARMV4I) 
     46                {B616AC95-748E-4CD5-89AC-772DC3C069D9}.Debug|Windows Mobile 6 Professional SDK (ARMV4I).ActiveCfg = Debug|Windows Mobile 6 Professional SDK (ARMV4I) 
     47                {B616AC95-748E-4CD5-89AC-772DC3C069D9}.Debug|Windows Mobile 6 Professional SDK (ARMV4I).Build.0 = Debug|Windows Mobile 6 Professional SDK (ARMV4I) 
     48                {B616AC95-748E-4CD5-89AC-772DC3C069D9}.Debug|Windows Mobile 6 Professional SDK (ARMV4I).Deploy.0 = Debug|Windows Mobile 6 Professional SDK (ARMV4I) 
     49                {B616AC95-748E-4CD5-89AC-772DC3C069D9}.Debug|Windows Mobile 6 Standard SDK (ARMV4I).ActiveCfg = Debug|Windows Mobile 6 Professional SDK (ARMV4I) 
     50                {B616AC95-748E-4CD5-89AC-772DC3C069D9}.Release|Windows Mobile 5.0 Pocket PC SDK (ARMV4I).ActiveCfg = Release|Windows Mobile 6 Professional SDK (ARMV4I) 
     51                {B616AC95-748E-4CD5-89AC-772DC3C069D9}.Release|Windows Mobile 5.0 Smartphone SDK (ARMV4I).ActiveCfg = Release|Windows Mobile 6 Professional SDK (ARMV4I) 
     52                {B616AC95-748E-4CD5-89AC-772DC3C069D9}.Release|Windows Mobile 6 Professional SDK (ARMV4I).ActiveCfg = Release|Windows Mobile 6 Professional SDK (ARMV4I) 
     53                {B616AC95-748E-4CD5-89AC-772DC3C069D9}.Release|Windows Mobile 6 Professional SDK (ARMV4I).Build.0 = Release|Windows Mobile 6 Professional SDK (ARMV4I) 
     54                {B616AC95-748E-4CD5-89AC-772DC3C069D9}.Release|Windows Mobile 6 Professional SDK (ARMV4I).Deploy.0 = Release|Windows Mobile 6 Professional SDK (ARMV4I) 
     55                {B616AC95-748E-4CD5-89AC-772DC3C069D9}.Release|Windows Mobile 6 Standard SDK (ARMV4I).ActiveCfg = Release|Windows Mobile 6 Professional SDK (ARMV4I) 
    4256        EndGlobalSection 
    4357        GlobalSection(SolutionProperties) = preSolution 
  • linphone/mediastreamer2/src/audiostream.c

    r829 r841  
    561561        ms_filter_destroy(stream->sndwrite); 
    562562        ms_free(stream); 
     563#ifdef _WIN32_WCE 
     564        ms_warning("Sleeping a bit after closing the audio device..."); 
     565        ms_sleep(1); 
     566#endif 
    563567} 
    564568 
  • linphone/mediastreamer2/src/audiostream.c

    r839 r841  
    438438} 
    439439 
    440 void audio_stream_set_echo_canceler_params(AudioStream *st, int tail_len_ms, int delay_ms, int framesize){ 
     440void audio_stream_set_echo_canceller_params(AudioStream *st, int tail_len_ms, int delay_ms, int framesize){ 
    441441        st->ec_tail_len=tail_len_ms; 
    442442        st->ec_delay=delay_ms; 
  • linphone/mediastreamer2/src/msfileplayer_win.c

    r810 r841  
    128128        PlayerData *d=(PlayerData*)f->data; 
    129129        HANDLE fd; 
    130         const char *file=(const char*)arg; 
    131 #if defined(_WIN32_WCE) 
    132     fd = CreateFile((LPCWSTR)file, GENERIC_READ, FILE_SHARE_READ, NULL, 
    133         OPEN_EXISTING, 0, NULL); 
     130        const char *afile=(const char*)arg; 
     131        LPCTSTR file; 
     132#ifdef _UNICODE 
     133        wchar_t wfile[MAX_PATH]; 
     134        mbstowcs(wfile,afile,MAX_PATH); 
     135        file=wfile; 
    134136#else 
    135         fd = CreateFile(file, GENERIC_READ, FILE_SHARE_READ, NULL, 
    136         OPEN_EXISTING, 0, NULL); 
     137        file=afile; 
    137138#endif 
     139 
     140    fd = CreateFile(file, GENERIC_READ, FILE_SHARE_READ, NULL, 
     141        OPEN_EXISTING, FILE_ATTRIBUTE_NORMAL, NULL); 
     142 
    138143        if (fd==INVALID_HANDLE_VALUE){ 
    139                 ms_warning("Failed to open %s",file); 
     144                ms_warning("Failed to open %s: error %i",afile,GetLastError()); 
    140145                return -1; 
    141146        } 
    142147        d->state=STOPPED; 
    143148        d->fd=fd; 
    144         if (strstr(file,".wav")!=NULL) read_wav_header(d); 
     149        if (strstr(afile,".wav")!=NULL) read_wav_header(d); 
    145150        return 0; 
    146151} 
  • linphone/mediastreamer2/src/msfileplayer_win.c

    r839 r841  
    186186static void player_process(MSFilter *f){ 
    187187        PlayerData *d=(PlayerData*)f->data; 
    188         int bytes =d->big_buffer * 2*(f->ticker->interval*d->rate*d->nchannels)/1000;; 
     188        int bytes =d->big_buffer * 2*(f->ticker->interval*d->rate*d->nchannels)/1000; 
    189189 
    190190        if (d->big_buffer>1) 
  • linphone/oRTP/build/wince/oRTP.vcproj

    r839 r841  
    22<VisualStudioProject 
    33        ProjectType="Visual C++" 
    4         Version="9,00" 
     4        Version="8,00" 
    55        Name="oRTP" 
    66        ProjectGUID="{9FEA0683-C391-4C74-BCF6-2F9E4DE1B541}" 
    77        RootNamespace="oRTP" 
    88        Keyword="MFCDLLProj" 
    9         TargetFrameworkVersion="131072" 
    109        > 
    1110        <Platforms> 
     
    2019                /> 
    2120                <Platform 
    22                         Name="Windows Mobile 6 Professional SDK (ARMV4I)" 
     21                        Name="MP100_2P21 (ARMV4I)" 
    2322                /> 
    2423        </Platforms> 
     
    8483                                ModuleDefinitionFile="oRTP.def" 
    8584                                GenerateDebugInformation="true" 
    86                                 RandomizedBaseAddress="1" 
    87                                 DataExecutionPrevention="0" 
    8885                        /> 
    8986                        <Tool 
     
    9592                        <Tool 
    9693                                Name="VCBscMakeTool" 
    97                         /> 
    98                         <Tool 
    99                                 Name="VCFxCopTool" 
    10094                        /> 
    10195                        <Tool 
     
    107101                        <DeploymentTool 
    108102                                ForceDirty="-1" 
    109                                 RemoteDirectory="%CSIDL_PROGRAM_FILES%\vbamsipua" 
     103                                RemoteDirectory="%CSIDL_PROGRAM_FILES%\amsipua" 
    110104                                RegisterOutput="0" 
    111105                                AdditionalFiles="" 
     
    169163                                IgnoreAllDefaultLibraries="true" 
    170164                                ModuleDefinitionFile="oRTP.def" 
    171                                 RandomizedBaseAddress="1" 
    172                                 DataExecutionPrevention="0" 
    173165                        /> 
    174166                        <Tool 
     
    180172                        <Tool 
    181173                                Name="VCBscMakeTool" 
    182                         /> 
    183                         <Tool 
    184                                 Name="VCFxCopTool" 
    185174                        /> 
    186175                        <Tool 
     
    192181                        <DeploymentTool 
    193182                                ForceDirty="-1" 
    194                                 RemoteDirectory="%CSIDL_PROGRAM_FILES%\vbamsipua" 
     183                                RemoteDirectory="%CSIDL_PROGRAM_FILES%\amsipua" 
    195184                                RegisterOutput="0" 
    196185                                AdditionalFiles="" 
     
    258247                                ModuleDefinitionFile="oRTP.def" 
    259248                                GenerateDebugInformation="true" 
    260                                 RandomizedBaseAddress="1" 
    261                                 DataExecutionPrevention="0" 
    262249                                TargetMachine="0" 
    263250                        /> 
     
    270257                        <Tool 
    271258                                Name="VCBscMakeTool" 
    272                         /> 
    273                         <Tool 
    274                                 Name="VCFxCopTool" 
    275259                        /> 
    276260                        <Tool 
     
    290274                </Configuration> 
    291275                <Configuration 
    292                         Name="Debug|Windows Mobile 6 Professional SDK (ARMV4I)" 
    293                         OutputDirectory="Windows Mobile 6 Professional SDK (ARMV4I)\$(ConfigurationName)" 
    294                         IntermediateDirectory="Windows Mobile 6 Professional SDK (ARMV4I)\$(ConfigurationName)" 
     276                        Name="Debug|MP100_2P21 (ARMV4I)" 
     277                        OutputDirectory="MP100_2P21 (ARMV4I)\$(ConfigurationName)" 
     278                        IntermediateDirectory="MP100_2P21 (ARMV4I)\$(ConfigurationName)" 
    295279                        ConfigurationType="2" 
    296280                        UseOfMFC="0" 
     
    318302                                Name="VCCLCompilerTool" 
    319303                                ExecutionBucket="7" 
    320                                 Optimization="2" 
    321                                 FavorSizeOrSpeed="1" 
     304                                Optimization="0" 
     305                                FavorSizeOrSpeed="0" 
    322306                                AdditionalIncludeDirectories="..\..\include;..\..\..\osip\include" 
    323                                 PreprocessorDefinitions="ORTP_INET6;ORTP_EXPORT;AMD_HACK;_WIN32_WCE=$(CEVER);UNDER_CE=$(CEVER);WINCE;$(PLATFORMDEFINES);_DEBUG;_USRDLL;$(ARCHFAM);$(_ARCHFAM_);POCKETPC2003_UI_MODEL" 
     307                                PreprocessorDefinitions="ORTP_INET6;ORTP_EXPORT;AMD_HACK;_WIN32_WCE=$(CEVER);UNDER_CE=$(CEVER);WINCE;$(PLATFORMDEFINES);_DEBUG;_USRDLL;$(ARCHFAM);$(_ARCHFAM_);POCKETPC2003_UI_MODEL;POCKETPC2003_UI_MODEL" 
    324308                                RuntimeLibrary="3" 
    325309                                TreatWChar_tAsBuiltInType="true" 
     
    327311                                ProgramDataBaseFileName="$(IntDir)/oRTP.pdb" 
    328312                                WarningLevel="3" 
    329                                 DebugInformationFormat="3" 
     313                                DebugInformationFormat="0" 
    330314                        /> 
    331315                        <Tool 
     
    343327                        <Tool 
    344328                                Name="VCLinkerTool" 
    345                                 AdditionalOptions=" /SUBSYSTEM:WINDOWSCE,5.01 /MACHINE:THUMB" 
     329                                AdditionalOptions=" /SUBSYSTEM:$(CESubsystem) /MACHINE:THUMB" 
    346330                                AdditionalDependencies="ws2.lib iphlpapi.lib mmtimer.lib libcmtd.lib" 
    347331                                IgnoreAllDefaultLibraries="true" 
    348332                                ModuleDefinitionFile="oRTP.def" 
    349333                                GenerateDebugInformation="true" 
    350                                 RandomizedBaseAddress="1" 
    351                                 DataExecutionPrevention="0" 
    352334                                TargetMachine="0" 
    353335                        /> 
     
    360342                        <Tool 
    361343                                Name="VCBscMakeTool" 
    362                         /> 
    363                         <Tool 
    364                                 Name="VCFxCopTool" 
    365344                        /> 
    366345                        <Tool 
     
    372351                        <DeploymentTool 
    373352                                ForceDirty="-1" 
    374                                 RemoteDirectory="%CSIDL_PROGRAM_FILES%\linphone" 
     353                                RemoteDirectory="%CSIDL_PROGRAM_FILES%\amsipua" 
    375354                                RegisterOutput="0" 
    376355                                AdditionalFiles="" 
     
    414393                                ProgramDataBaseFileName="$(IntDir)/oRTP.pdb" 
    415394                                WarningLevel="3" 
    416                                 DebugInformationFormat="3" 
     395                                DebugInformationFormat="0" 
    417396                        /> 
    418397                        <Tool 
     
    434413                                IgnoreAllDefaultLibraries="true" 
    435414                                ModuleDefinitionFile="oRTP.def" 
    436                                 RandomizedBaseAddress="1" 
    437                                 DataExecutionPrevention="0" 
    438415                        /> 
    439416                        <Tool 
     
    445422                        <Tool 
    446423                                Name="VCBscMakeTool" 
    447                         /> 
    448                         <Tool 
    449                                 Name="VCFxCopTool" 
    450424                        /> 
    451425                        <Tool 
     
    457431                        <DeploymentTool 
    458432                                ForceDirty="-1" 
    459                                 RemoteDirectory="\amsip" 
     433                                RemoteDirectory="%CSIDL_PROGRAM_FILES%\amsipua" 
    460434                                RegisterOutput="0" 
    461435                                AdditionalFiles="" 
     
    499473                                ProgramDataBaseFileName="$(IntDir)/oRTP.pdb" 
    500474                                WarningLevel="3" 
    501                                 DebugInformationFormat="3" 
     475                                DebugInformationFormat="0" 
    502476                        /> 
    503477                        <Tool 
     
    519493                                IgnoreAllDefaultLibraries="true" 
    520494                                ModuleDefinitionFile="oRTP.def" 
    521                                 RandomizedBaseAddress="1" 
    522                                 DataExecutionPrevention="0" 
    523495                        /> 
    524496                        <Tool 
     
    530502                        <Tool 
    531503                                Name="VCBscMakeTool" 
    532                         /> 
    533                         <Tool 
    534                                 Name="VCFxCopTool" 
    535504                        /> 
    536505                        <Tool 
     
    542511                        <DeploymentTool 
    543512                                ForceDirty="-1" 
    544                                 RemoteDirectory="%CSIDL_PROGRAM_FILES%\vbamsipua" 
     513                                RemoteDirectory="%CSIDL_PROGRAM_FILES%\amsipua" 
    545514                                RegisterOutput="0" 
    546515                                AdditionalFiles="" 
     
    585554                                ProgramDataBaseFileName="$(IntDir)/oRTP.pdb" 
    586555                                WarningLevel="3" 
    587                                 DebugInformationFormat="3" 
     556                                DebugInformationFormat="0" 
    588557                        /> 
    589558                        <Tool 
     
    605574                                IgnoreAllDefaultLibraries="true" 
    606575                                ModuleDefinitionFile="oRTP.def" 
    607                                 RandomizedBaseAddress="1" 
    608                                 DataExecutionPrevention="0" 
    609576                                TargetMachine="0" 
    610577                        /> 
     
    617584                        <Tool 
    618585                                Name="VCBscMakeTool" 
    619                         /> 
    620                         <Tool 
    621                                 Name="VCFxCopTool" 
    622586                        /> 
    623587                        <Tool 
     
    637601                </Configuration> 
    638602                <Configuration 
    639                         Name="Release|Windows Mobile 6 Professional SDK (ARMV4I)" 
    640                         OutputDirectory="Windows Mobile 6 Professional SDK (ARMV4I)\$(ConfigurationName)" 
    641                         IntermediateDirectory="Windows Mobile 6 Professional SDK (ARMV4I)\$(ConfigurationName)" 
     603                        Name="Release|MP100_2P21 (ARMV4I)" 
     604                        OutputDirectory="MP100_2P21 (ARMV4I)\$(ConfigurationName)" 
     605                        IntermediateDirectory="MP100_2P21 (ARMV4I)\$(ConfigurationName)" 
    642606                        ConfigurationType="2" 
    643607                        UseOfMFC="0" 
     
    665629                                Name="VCCLCompilerTool" 
    666630                                ExecutionBucket="7" 
     631                                Optimization="3" 
     632                                FavorSizeOrSpeed="1" 
    667633                                AdditionalIncludeDirectories="..\..\include;..\..\..\osip\include" 
    668634                                PreprocessorDefinitions="ORTP_INET6;ORTP_EXPORT;AMD_HACK;_WIN32_WCE=$(CEVER);UNDER_CE=$(CEVER);WINCE;$(PLATFORMDEFINES);NDEBUG;_USRDLL;$(ARCHFAM);$(_ARCHFAM_);POCKETPC2003_UI_MODEL;POCKETPC2003_UI_MODEL" 
     
    672638                                ProgramDataBaseFileName="$(IntDir)/oRTP.pdb" 
    673639                                WarningLevel="3" 
    674                                 DebugInformationFormat="3" 
     640                                DebugInformationFormat="0" 
    675641                        /> 
    676642                        <Tool 
     
    688654                        <Tool 
    689655                                Name="VCLinkerTool" 
    690                                 AdditionalOptions=" /SUBSYSTEM:WINDOWSCE,5.01 /MACHINE:THUMB" 
     656                                AdditionalOptions=" /SUBSYSTEM:$(CESubsystem) /MACHINE:THUMB" 
    691657                                AdditionalDependencies="ws2.lib iphlpapi.lib mmtimer.lib libcmt.lib" 
    692658                                IgnoreAllDefaultLibraries="true" 
    693659                                ModuleDefinitionFile="oRTP.def" 
    694                                 RandomizedBaseAddress="1" 
    695                                 DataExecutionPrevention="0" 
    696660                                TargetMachine="0" 
    697661                        /> 
     
    704668                        <Tool 
    705669                                Name="VCBscMakeTool" 
    706                         /> 
    707                         <Tool 
    708                                 Name="VCFxCopTool" 
    709670                        /> 
    710671                        <Tool 
     
    716677                        <DeploymentTool 
    717678                                ForceDirty="-1" 
    718                                 RemoteDirectory="" 
     679                                RemoteDirectory="%CSIDL_PROGRAM_FILES%\amsipua" 
    719680                                RegisterOutput="0" 
    720681                                AdditionalFiles="" 
Note: See TracChangeset for help on using the changeset viewer.