Changeset 841:a0b93bb624db in mediastreamer2
- Timestamp:
- Jan 12, 2010 5:06:09 PM (3 years ago)
- 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. - Location:
- linphone
- Files:
-
- 1 added
- 2 deleted
- 9 edited
-
build/wince/liblinphone.ncb (deleted)
-
build/wince/liblinphone.suo (deleted)
-
console/linphonec.c (modified) (5 diffs)
-
console/linphonec.c (modified) (8 diffs)
-
mediastreamer2/build/wince/mediastreamer2.vcproj (modified) (38 diffs)
-
mediastreamer2/build/winmob/echo/echo.vcproj (added)
-
mediastreamer2/build/winmob/mediastreamer2.sln (modified) (2 diffs)
-
mediastreamer2/src/audiostream.c (modified) (1 diff)
-
mediastreamer2/src/audiostream.c (modified) (1 diff)
-
mediastreamer2/src/msfileplayer_win.c (modified) (1 diff)
-
mediastreamer2/src/msfileplayer_win.c (modified) (1 diff)
-
oRTP/build/wince/oRTP.vcproj (modified) (33 diffs)
Legend:
- Unmodified
- Added
- Removed
-
linphone/console/linphonec.c
r829 r841 62 62 #define strdup _strdup 63 63 #endif /*strdup*/ 64 /*65 #if !defined(access)66 #define access _access67 #endif*/ /*access*/68 64 69 65 #endif /*_WIN32_WCE*/ … … 76 72 #else 77 73 #define _(something) (something) 74 #endif 75 76 #ifndef PACKAGE_DIR 77 #define PACKAGE_DIR "" 78 78 #endif 79 79 … … 569 569 * - FILE *mylogfile 570 570 */ 571 #if defined (_MSC_VER) 572 int _tmain(int argc, _TCHAR* argv[]) { 573 trace_level=1; 571 #if defined (_WIN32_WCE) 572 573 char **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 584 int _tmain(int argc, _TCHAR* wargv[]) { 585 char **argv=convert_args_to_ascii(argc,wargv); 586 trace_level=6; 574 587 linphonec_vtable.show =(ShowInterfaceCb) stub; 575 588 linphonec_vtable.inv_recv = linphonec_call_received; … … 597 610 598 611 599 600 601 612 if (! linphonec_init(argc, argv) ) exit(EXIT_FAILURE); 602 613 … … 621 632 */ 622 633 mylogfile = NULL; 623 634 635 636 #ifndef _WIN32 624 637 snprintf(configfile_name, PATH_MAX, "%s/.linphonerc", 625 #if !defined(_WIN32_WCE)626 638 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"); 627 643 #else 628 ".");629 #endif /*_WIN32_WCE*/ 630 644 snprintf(configfile_name, PATH_MAX, "%s/Linphone/linphonerc", 645 getenv("APPDATA")); 646 #endif 631 647 /* Handle configuration filename changes */ 632 648 switch (handle_configfile_migration()) -
linphone/console/linphonec.c
r839 r841 137 137 ***************************************************************************/ 138 138 139 LinphoneCore linphonec;139 LinphoneCore *linphonec; 140 140 FILE *mylogfile; 141 141 #ifdef HAVE_READLINE … … 612 612 if (! linphonec_init(argc, argv) ) exit(EXIT_FAILURE); 613 613 614 linphonec_main_loop ( &linphonec, sipAddr);614 linphonec_main_loop (linphonec, sipAddr); 615 615 616 616 linphonec_finish(EXIT_SUCCESS); … … 697 697 * Initialize linphone core 698 698 */ 699 linphone _core_init (&linphonec, &linphonec_vtable, configfile_name,699 linphonec=linphone_core_new (&linphonec_vtable, configfile_name, NULL, 700 700 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); 703 703 if (!(vcap_enabled || display_enabled)) printf("Warning: video is disabled in linphonec, use -V or -C or -D to enable.\n"); 704 704 #ifdef HAVE_READLINE … … 733 733 734 734 /* Terminate any pending call */ 735 linphonec_parse_command_line( &linphonec, "terminate");735 linphonec_parse_command_line(linphonec, "terminate"); 736 736 linphonec_command_finished(); 737 737 #ifdef HAVE_READLINE … … 743 743 #endif /*_WIN32_WCE*/ 744 744 745 linphone_core_ uninit (&linphonec);745 linphone_core_destroy (linphonec); 746 746 747 747 if (mylogfile != NULL && mylogfile != stdout) … … 875 875 linphonec_idle_call () 876 876 { 877 LinphoneCore *opm= &linphonec;877 LinphoneCore *opm=linphonec; 878 878 879 879 /* Uncomment the following to verify being called */ … … 982 982 { 983 983 snprintf (buf, sizeof(buf),"call %s", sipAddr); 984 linphonec_parse_command_line( &linphonec, buf);984 linphonec_parse_command_line(linphonec, buf); 985 985 } 986 986 … … 1020 1020 #endif 1021 1021 1022 linphonec_parse_command_line( &linphonec, iptr);1022 linphonec_parse_command_line(linphonec, iptr); 1023 1023 linphonec_command_finished(); 1024 1024 free(input); -
linphone/mediastreamer2/build/wince/mediastreamer2.vcproj
r839 r841 2 2 <VisualStudioProject 3 3 ProjectType="Visual C++" 4 Version=" 9,00"4 Version="8,00" 5 5 Name="mediastreamer2" 6 6 ProjectGUID="{177F5AE2-A40C-4412-8F26-7F85FA32464E}" 7 7 RootNamespace="mediastreamer2" 8 8 Keyword="MFCDLLProj" 9 TargetFrameworkVersion="131072"10 9 > 11 10 <Platforms> … … 20 19 /> 21 20 <Platform 22 Name=" Windows Mobile 6 Professional SDK(ARMV4I)"21 Name="MP100_2P21 (ARMV4I)" 23 22 /> 24 23 </Platforms> … … 81 80 Name="VCLinkerTool" 82 81 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 " 84 83 IgnoreAllDefaultLibraries="true" 85 84 ModuleDefinitionFile="mediastreamer2.def" 86 85 GenerateDebugInformation="true" 87 RandomizedBaseAddress="1"88 DataExecutionPrevention="0"89 86 /> 90 87 <Tool … … 96 93 <Tool 97 94 Name="VCBscMakeTool" 98 />99 <Tool100 Name="VCFxCopTool"101 95 /> 102 96 <Tool … … 108 102 <DeploymentTool 109 103 ForceDirty="-1" 110 RemoteDirectory="%CSIDL_PROGRAM_FILES%\ vbamsipua"104 RemoteDirectory="%CSIDL_PROGRAM_FILES%\amsipua" 111 105 RegisterOutput="0" 112 106 AdditionalFiles="" … … 173 167 ModuleDefinitionFile="mediastreamer2.def" 174 168 GenerateDebugInformation="true" 175 RandomizedBaseAddress="1"176 DataExecutionPrevention="0"177 169 /> 178 170 <Tool … … 184 176 <Tool 185 177 Name="VCBscMakeTool" 186 />187 <Tool188 Name="VCFxCopTool"189 178 /> 190 179 <Tool … … 196 185 <DeploymentTool 197 186 ForceDirty="-1" 198 RemoteDirectory="%CSIDL_PROGRAM_FILES%\ vbamsipua"187 RemoteDirectory="%CSIDL_PROGRAM_FILES%\amsipua" 199 188 RegisterOutput="0" 200 189 AdditionalFiles="" … … 265 254 ModuleDefinitionFile="mediastreamer2.def" 266 255 GenerateDebugInformation="true" 267 RandomizedBaseAddress="1"268 DataExecutionPrevention="0"269 256 TargetMachine="0" 270 257 /> … … 277 264 <Tool 278 265 Name="VCBscMakeTool" 279 />280 <Tool281 Name="VCFxCopTool"282 266 /> 283 267 <Tool … … 297 281 </Configuration> 298 282 <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)" 302 286 ConfigurationType="2" 303 287 UseOfMFC="0" … … 325 309 Name="VCCLCompilerTool" 326 310 ExecutionBucket="7" 327 Optimization=" 2"328 FavorSizeOrSpeed=" 1"329 AdditionalIncludeDirectories=".; "..\..\..\..\..\linphone-builder\speex\include";..\..;..\..\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" 331 315 RuntimeLibrary="3" 332 316 TreatWChar_tAsBuiltInType="false" … … 351 335 <Tool 352 336 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=""..\..\..\..\..\linphone-builder\speex\lib";"..\..\..\oRTP\build\wince\$(PlatformName)\$(ConfigurationName)";"..\..\..\..\..\linphone-builder\speex\win32\VS2008\libspeex\$(PlatformName)\Debug_RTL_dll"" 337 AdditionalOptions=" /SUBSYSTEM:$(CESubsystem) /MACHINE:THUMB" 338 AdditionalDependencies=" ws2.lib iphlpapi.lib mmtimer.lib libcmtd.lib " 356 339 IgnoreAllDefaultLibraries="true" 357 340 ModuleDefinitionFile="mediastreamer2.def" 358 341 GenerateDebugInformation="true" 359 RandomizedBaseAddress="1"360 DataExecutionPrevention="0"361 342 TargetMachine="0" 362 343 /> … … 369 350 <Tool 370 351 Name="VCBscMakeTool" 371 />372 <Tool373 Name="VCFxCopTool"374 352 /> 375 353 <Tool … … 381 359 <DeploymentTool 382 360 ForceDirty="-1" 383 RemoteDirectory=" "361 RemoteDirectory="%CSIDL_PROGRAM_FILES%\amsipua" 384 362 RegisterOutput="0" 385 363 AdditionalFiles="" … … 423 401 ProgramDataBaseFileName="$(IntDir)/mediastreamer2.pdb" 424 402 WarningLevel="3" 425 DebugInformationFormat=" 3"403 DebugInformationFormat="0" 426 404 CompileAs="2" 427 405 /> … … 441 419 Name="VCLinkerTool" 442 420 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" 444 422 IgnoreAllDefaultLibraries="true" 445 423 ModuleDefinitionFile="mediastreamer2.def" 446 RandomizedBaseAddress="1"447 DataExecutionPrevention="0"448 424 /> 449 425 <Tool … … 455 431 <Tool 456 432 Name="VCBscMakeTool" 457 />458 <Tool459 Name="VCFxCopTool"460 433 /> 461 434 <Tool … … 467 440 <DeploymentTool 468 441 ForceDirty="-1" 469 RemoteDirectory=" \amsip"442 RemoteDirectory="%CSIDL_PROGRAM_FILES%\amsipua" 470 443 RegisterOutput="0" 471 444 AdditionalFiles="" … … 509 482 ProgramDataBaseFileName="$(IntDir)/mediastreamer2.pdb" 510 483 WarningLevel="3" 511 DebugInformationFormat=" 3"484 DebugInformationFormat="0" 512 485 CompileAs="2" 513 486 /> … … 530 503 IgnoreAllDefaultLibraries="true" 531 504 ModuleDefinitionFile="mediastreamer2.def" 532 RandomizedBaseAddress="1"533 DataExecutionPrevention="0"534 505 /> 535 506 <Tool … … 541 512 <Tool 542 513 Name="VCBscMakeTool" 543 />544 <Tool545 Name="VCFxCopTool"546 514 /> 547 515 <Tool … … 553 521 <DeploymentTool 554 522 ForceDirty="-1" 555 RemoteDirectory="%CSIDL_PROGRAM_FILES%\ vbamsipua"523 RemoteDirectory="%CSIDL_PROGRAM_FILES%\amsipua" 556 524 RegisterOutput="0" 557 525 AdditionalFiles="" … … 596 564 ProgramDataBaseFileName="$(IntDir)/mediastreamer2.pdb" 597 565 WarningLevel="3" 598 DebugInformationFormat=" 3"566 DebugInformationFormat="0" 599 567 CompileAs="2" 600 568 /> … … 617 585 IgnoreAllDefaultLibraries="true" 618 586 ModuleDefinitionFile="mediastreamer2.def" 619 RandomizedBaseAddress="1"620 DataExecutionPrevention="0"621 587 TargetMachine="0" 622 588 /> … … 629 595 <Tool 630 596 Name="VCBscMakeTool" 631 />632 <Tool633 Name="VCFxCopTool"634 597 /> 635 598 <Tool … … 649 612 </Configuration> 650 613 <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)" 654 617 ConfigurationType="2" 655 618 UseOfMFC="0" … … 677 640 Name="VCCLCompilerTool" 678 641 ExecutionBucket="7" 642 Optimization="3" 643 FavorSizeOrSpeed="1" 679 644 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" 681 646 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" 682 732 TreatWChar_tAsBuiltInType="false" 683 733 UsePrecompiledHeader="0" … … 692 742 <Tool 693 743 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" 694 1170 PreprocessorDefinitions="NDEBUG;_UNICODE;UNICODE;_WIN32_WCE;UNDER_CE" 695 1171 Culture="1033" … … 705 1181 IgnoreAllDefaultLibraries="true" 706 1182 ModuleDefinitionFile="mediastreamer2.def" 707 RandomizedBaseAddress="1"708 DataExecutionPrevention="0"709 1183 TargetMachine="0" 710 1184 /> … … 717 1191 <Tool 718 1192 Name="VCBscMakeTool" 719 />720 <Tool721 Name="VCFxCopTool"722 1193 /> 723 1194 <Tool … … 730 1201 ForceDirty="-1" 731 1202 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" 732 1371 RegisterOutput="0" 733 1372 AdditionalFiles="" … … 754 1393 </File> 755 1394 <File 756 RelativePath="..\..\src\dsptools.c"757 >758 </File>759 <File760 1395 RelativePath="..\..\src\dtmfgen.c" 761 1396 > 762 1397 </File> 763 1398 <File 764 RelativePath="..\..\src\dxfilter.cpp"765 >766 </File>767 <File768 RelativePath="..\..\src\equalizer.c"769 >770 </File>771 <File772 1399 RelativePath="..\..\src\ice.c" 773 1400 > 774 1401 </File> 775 1402 <File 776 RelativePath="..\..\src\kiss_fft.c"777 >778 </File>779 <File780 RelativePath="..\..\src\kiss_fftr.c"781 >782 </File>783 <File784 1403 RelativePath="..\..\src\mscommon.c" 785 1404 > … … 810 1429 </File> 811 1430 <File 1431 RelativePath="..\..\src\msresample.c" 1432 > 1433 </File> 1434 <File 812 1435 RelativePath="..\..\src\msrtp.c" 813 1436 > … … 838 1461 </File> 839 1462 <File 1463 RelativePath="..\..\src\rfc3984.c" 1464 > 1465 </File> 1466 <File 840 1467 RelativePath="..\..\src\speexec.c" 841 1468 > … … 850 1477 </File> 851 1478 <File 852 RelativePath="..\..\src\ wincevideods.c"853 > 854 </File> 855 <File 856 RelativePath="..\..\src\winsnd 3.c"1479 RelativePath="..\..\src\void.c" 1480 > 1481 </File> 1482 <File 1483 RelativePath="..\..\src\winsnd.c" 857 1484 > 858 1485 </File> … … 888 1515 </File> 889 1516 <File 890 RelativePath="..\..\include\mediastreamer2\mediastream.h"891 >892 </File>893 <File894 1517 RelativePath="..\..\include\mediastreamer2\mscommon.h" 895 1518 > … … 924 1547 </File> 925 1548 <File 1549 RelativePath="..\..\include\mediastreamer2\mswebcam.h" 1550 > 1551 </File> 1552 <File 1553 RelativePath="..\..\include\mediastreamer2\rfc3984.h" 1554 > 1555 </File> 1556 <File 926 1557 RelativePath="..\..\include\mediastreamer2\waveheader.h" 927 1558 > 928 1559 </File> 929 1560 </Filter> 1561 <File 1562 RelativePath=".\mediastreamer2.def" 1563 > 1564 </File> 930 1565 </Files> 931 1566 <Globals> -
linphone/mediastreamer2/build/winmob/mediastreamer2.sln
r831 r841 3 3 # Visual Studio 2008 4 4 Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "mediastreamer2", "mediastreamer2.vcproj", "{177F5AE2-A40C-4412-8F26-7F85FA32464E}" 5 EndProject 6 Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "echo", "echo\echo.vcproj", "{B616AC95-748E-4CD5-89AC-772DC3C069D9}" 5 7 EndProject 6 8 Global … … 40 42 {177F5AE2-A40C-4412-8F26-7F85FA32464E}.Release|Windows Mobile 6 Standard SDK (ARMV4I).Build.0 = Release|Windows Mobile 6 Standard SDK (ARMV4I) 41 43 {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) 42 56 EndGlobalSection 43 57 GlobalSection(SolutionProperties) = preSolution -
linphone/mediastreamer2/src/audiostream.c
r829 r841 561 561 ms_filter_destroy(stream->sndwrite); 562 562 ms_free(stream); 563 #ifdef _WIN32_WCE 564 ms_warning("Sleeping a bit after closing the audio device..."); 565 ms_sleep(1); 566 #endif 563 567 } 564 568 -
linphone/mediastreamer2/src/audiostream.c
r839 r841 438 438 } 439 439 440 void audio_stream_set_echo_cancel er_params(AudioStream *st, int tail_len_ms, int delay_ms, int framesize){440 void audio_stream_set_echo_canceller_params(AudioStream *st, int tail_len_ms, int delay_ms, int framesize){ 441 441 st->ec_tail_len=tail_len_ms; 442 442 st->ec_delay=delay_ms; -
linphone/mediastreamer2/src/msfileplayer_win.c
r810 r841 128 128 PlayerData *d=(PlayerData*)f->data; 129 129 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; 134 136 #else 135 fd = CreateFile(file, GENERIC_READ, FILE_SHARE_READ, NULL, 136 OPEN_EXISTING, 0, NULL); 137 file=afile; 137 138 #endif 139 140 fd = CreateFile(file, GENERIC_READ, FILE_SHARE_READ, NULL, 141 OPEN_EXISTING, FILE_ATTRIBUTE_NORMAL, NULL); 142 138 143 if (fd==INVALID_HANDLE_VALUE){ 139 ms_warning("Failed to open %s ",file);144 ms_warning("Failed to open %s: error %i",afile,GetLastError()); 140 145 return -1; 141 146 } 142 147 d->state=STOPPED; 143 148 d->fd=fd; 144 if (strstr( file,".wav")!=NULL) read_wav_header(d);149 if (strstr(afile,".wav")!=NULL) read_wav_header(d); 145 150 return 0; 146 151 } -
linphone/mediastreamer2/src/msfileplayer_win.c
r839 r841 186 186 static void player_process(MSFilter *f){ 187 187 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; 189 189 190 190 if (d->big_buffer>1) -
linphone/oRTP/build/wince/oRTP.vcproj
r839 r841 2 2 <VisualStudioProject 3 3 ProjectType="Visual C++" 4 Version=" 9,00"4 Version="8,00" 5 5 Name="oRTP" 6 6 ProjectGUID="{9FEA0683-C391-4C74-BCF6-2F9E4DE1B541}" 7 7 RootNamespace="oRTP" 8 8 Keyword="MFCDLLProj" 9 TargetFrameworkVersion="131072"10 9 > 11 10 <Platforms> … … 20 19 /> 21 20 <Platform 22 Name=" Windows Mobile 6 Professional SDK(ARMV4I)"21 Name="MP100_2P21 (ARMV4I)" 23 22 /> 24 23 </Platforms> … … 84 83 ModuleDefinitionFile="oRTP.def" 85 84 GenerateDebugInformation="true" 86 RandomizedBaseAddress="1"87 DataExecutionPrevention="0"88 85 /> 89 86 <Tool … … 95 92 <Tool 96 93 Name="VCBscMakeTool" 97 />98 <Tool99 Name="VCFxCopTool"100 94 /> 101 95 <Tool … … 107 101 <DeploymentTool 108 102 ForceDirty="-1" 109 RemoteDirectory="%CSIDL_PROGRAM_FILES%\ vbamsipua"103 RemoteDirectory="%CSIDL_PROGRAM_FILES%\amsipua" 110 104 RegisterOutput="0" 111 105 AdditionalFiles="" … … 169 163 IgnoreAllDefaultLibraries="true" 170 164 ModuleDefinitionFile="oRTP.def" 171 RandomizedBaseAddress="1"172 DataExecutionPrevention="0"173 165 /> 174 166 <Tool … … 180 172 <Tool 181 173 Name="VCBscMakeTool" 182 />183 <Tool184 Name="VCFxCopTool"185 174 /> 186 175 <Tool … … 192 181 <DeploymentTool 193 182 ForceDirty="-1" 194 RemoteDirectory="%CSIDL_PROGRAM_FILES%\ vbamsipua"183 RemoteDirectory="%CSIDL_PROGRAM_FILES%\amsipua" 195 184 RegisterOutput="0" 196 185 AdditionalFiles="" … … 258 247 ModuleDefinitionFile="oRTP.def" 259 248 GenerateDebugInformation="true" 260 RandomizedBaseAddress="1"261 DataExecutionPrevention="0"262 249 TargetMachine="0" 263 250 /> … … 270 257 <Tool 271 258 Name="VCBscMakeTool" 272 />273 <Tool274 Name="VCFxCopTool"275 259 /> 276 260 <Tool … … 290 274 </Configuration> 291 275 <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)" 295 279 ConfigurationType="2" 296 280 UseOfMFC="0" … … 318 302 Name="VCCLCompilerTool" 319 303 ExecutionBucket="7" 320 Optimization=" 2"321 FavorSizeOrSpeed=" 1"304 Optimization="0" 305 FavorSizeOrSpeed="0" 322 306 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" 324 308 RuntimeLibrary="3" 325 309 TreatWChar_tAsBuiltInType="true" … … 327 311 ProgramDataBaseFileName="$(IntDir)/oRTP.pdb" 328 312 WarningLevel="3" 329 DebugInformationFormat=" 3"313 DebugInformationFormat="0" 330 314 /> 331 315 <Tool … … 343 327 <Tool 344 328 Name="VCLinkerTool" 345 AdditionalOptions=" /SUBSYSTEM: WINDOWSCE,5.01/MACHINE:THUMB"329 AdditionalOptions=" /SUBSYSTEM:$(CESubsystem) /MACHINE:THUMB" 346 330 AdditionalDependencies="ws2.lib iphlpapi.lib mmtimer.lib libcmtd.lib" 347 331 IgnoreAllDefaultLibraries="true" 348 332 ModuleDefinitionFile="oRTP.def" 349 333 GenerateDebugInformation="true" 350 RandomizedBaseAddress="1"351 DataExecutionPrevention="0"352 334 TargetMachine="0" 353 335 /> … … 360 342 <Tool 361 343 Name="VCBscMakeTool" 362 />363 <Tool364 Name="VCFxCopTool"365 344 /> 366 345 <Tool … … 372 351 <DeploymentTool 373 352 ForceDirty="-1" 374 RemoteDirectory="%CSIDL_PROGRAM_FILES%\ linphone"353 RemoteDirectory="%CSIDL_PROGRAM_FILES%\amsipua" 375 354 RegisterOutput="0" 376 355 AdditionalFiles="" … … 414 393 ProgramDataBaseFileName="$(IntDir)/oRTP.pdb" 415 394 WarningLevel="3" 416 DebugInformationFormat=" 3"395 DebugInformationFormat="0" 417 396 /> 418 397 <Tool … … 434 413 IgnoreAllDefaultLibraries="true" 435 414 ModuleDefinitionFile="oRTP.def" 436 RandomizedBaseAddress="1"437 DataExecutionPrevention="0"438 415 /> 439 416 <Tool … … 445 422 <Tool 446 423 Name="VCBscMakeTool" 447 />448 <Tool449 Name="VCFxCopTool"450 424 /> 451 425 <Tool … … 457 431 <DeploymentTool 458 432 ForceDirty="-1" 459 RemoteDirectory=" \amsip"433 RemoteDirectory="%CSIDL_PROGRAM_FILES%\amsipua" 460 434 RegisterOutput="0" 461 435 AdditionalFiles="" … … 499 473 ProgramDataBaseFileName="$(IntDir)/oRTP.pdb" 500 474 WarningLevel="3" 501 DebugInformationFormat=" 3"475 DebugInformationFormat="0" 502 476 /> 503 477 <Tool … … 519 493 IgnoreAllDefaultLibraries="true" 520 494 ModuleDefinitionFile="oRTP.def" 521 RandomizedBaseAddress="1"522 DataExecutionPrevention="0"523 495 /> 524 496 <Tool … … 530 502 <Tool 531 503 Name="VCBscMakeTool" 532 />533 <Tool534 Name="VCFxCopTool"535 504 /> 536 505 <Tool … … 542 511 <DeploymentTool 543 512 ForceDirty="-1" 544 RemoteDirectory="%CSIDL_PROGRAM_FILES%\ vbamsipua"513 RemoteDirectory="%CSIDL_PROGRAM_FILES%\amsipua" 545 514 RegisterOutput="0" 546 515 AdditionalFiles="" … … 585 554 ProgramDataBaseFileName="$(IntDir)/oRTP.pdb" 586 555 WarningLevel="3" 587 DebugInformationFormat=" 3"556 DebugInformationFormat="0" 588 557 /> 589 558 <Tool … … 605 574 IgnoreAllDefaultLibraries="true" 606 575 ModuleDefinitionFile="oRTP.def" 607 RandomizedBaseAddress="1"608 DataExecutionPrevention="0"609 576 TargetMachine="0" 610 577 /> … … 617 584 <Tool 618 585 Name="VCBscMakeTool" 619 />620 <Tool621 Name="VCFxCopTool"622 586 /> 623 587 <Tool … … 637 601 </Configuration> 638 602 <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)" 642 606 ConfigurationType="2" 643 607 UseOfMFC="0" … … 665 629 Name="VCCLCompilerTool" 666 630 ExecutionBucket="7" 631 Optimization="3" 632 FavorSizeOrSpeed="1" 667 633 AdditionalIncludeDirectories="..\..\include;..\..\..\osip\include" 668 634 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" … … 672 638 ProgramDataBaseFileName="$(IntDir)/oRTP.pdb" 673 639 WarningLevel="3" 674 DebugInformationFormat=" 3"640 DebugInformationFormat="0" 675 641 /> 676 642 <Tool … … 688 654 <Tool 689 655 Name="VCLinkerTool" 690 AdditionalOptions=" /SUBSYSTEM: WINDOWSCE,5.01/MACHINE:THUMB"656 AdditionalOptions=" /SUBSYSTEM:$(CESubsystem) /MACHINE:THUMB" 691 657 AdditionalDependencies="ws2.lib iphlpapi.lib mmtimer.lib libcmt.lib" 692 658 IgnoreAllDefaultLibraries="true" 693 659 ModuleDefinitionFile="oRTP.def" 694 RandomizedBaseAddress="1"695 DataExecutionPrevention="0"696 660 TargetMachine="0" 697 661 /> … … 704 668 <Tool 705 669 Name="VCBscMakeTool" 706 />707 <Tool708 Name="VCFxCopTool"709 670 /> 710 671 <Tool … … 716 677 <DeploymentTool 717 678 ForceDirty="-1" 718 RemoteDirectory=" "679 RemoteDirectory="%CSIDL_PROGRAM_FILES%\amsipua" 719 680 RegisterOutput="0" 720 681 AdditionalFiles=""
Note: See TracChangeset
for help on using the changeset viewer.
