Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/mpc-hc/mpc-hc.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorXhmikosR <xhmikosr@users.sourceforge.net>2010-01-16 00:17:29 +0300
committerXhmikosR <xhmikosr@users.sourceforge.net>2010-01-16 00:17:29 +0300
commite950f18023c1c767f51febea5b5221edb8911bc9 (patch)
treeb75b37287d486468776ef82c46e1b8a924a603df
parentd0c446daff0dc1fa3188537e464f743d3c45fd06 (diff)
-disabled a couple of warnings
-changed "/MACHINE:I386" to "/MACHINE:X86" -removed "Wp64" switch -minor changes in some resources (translators: don't translate the "CompanyName") git-svn-id: https://mpc-hc.svn.sourceforge.net/svnroot/mpc-hc/trunk@1509 10f7b99b-c216-0410-bff0-8a66a9350fd8
-rw-r--r--Compilation.txt11
-rw-r--r--include/MediaInfoDLL.h6
-rw-r--r--src/apps/mplayerc/mplayerc.cz.rcbin307326 -> 307324 bytes
-rw-r--r--src/apps/mplayerc/mplayerc.de.rcbin309208 -> 309184 bytes
-rw-r--r--src/apps/mplayerc/mplayerc.fr.rcbin311226 -> 311134 bytes
-rw-r--r--src/apps/mplayerc/mplayerc.it.rcbin320558 -> 320514 bytes
-rw-r--r--src/apps/mplayerc/mplayerc.pl.rcbin326970 -> 326966 bytes
-rw-r--r--src/apps/mplayerc/mplayerc.vcproj4
-rw-r--r--src/filters/misc/SyncClock/SyncClock.vcproj10
-rw-r--r--src/filters/transform/mpadecfilter/libflac/src/libFLAC/libflac.vcproj10
-rw-r--r--src/ui/TreePropSheet/TreePropSheet.vcproj1
11 files changed, 27 insertions, 15 deletions
diff --git a/Compilation.txt b/Compilation.txt
index 112d23e7c..09bd617f6 100644
--- a/Compilation.txt
+++ b/Compilation.txt
@@ -28,7 +28,8 @@ An easy to use custom installer for MinGW32 can be downloaded here:
http://sourceforge.net/projects/ffdshow-tryout/files/Tools/
This installer includes a full MinGW32 environment, including MSYS and YASM.
-It also automatically adds the required CC/MING32/MSYS environment variables, so there is no need to create them manually.
+It also automatically adds the required CC/MING32/MSYS environment variables,
+so there is no need to create them manually.
### Additional requirements for 64-bit build ###
@@ -39,7 +40,8 @@ http://sourceforge.net/projects/mingw-w64/files/
### Lib files ###
-* x86: Copy the following two files from the MinGW32 lib directory to the lib directory of the source code:
+* x86: Copy the following two files from the MinGW32 lib directory to the lib
+directory of the source code:
libgcc.a
libmingwex.a
@@ -68,7 +70,8 @@ This assumes you have TortoiseSVN installed.
### Configuring Visual Studio ###
-You need to add the locations of the DirectX SDK directories to the settings in Visual Studio. This is usually already done automatically by the DirectX SDK installer.
+You need to add the locations of the DirectX SDK directories to the settings in Visual Studio.
+This is usually already done automatically by the DirectX SDK installer.
1) In the Visual Studio menu, go to: Tools -> Options -> Projects and Solutions -> VC++ Directories
2) Add the location of the Include directory of the latest DirectX SDK.
@@ -79,7 +82,7 @@ You need to add the locations of the DirectX SDK directories to the settings in
### Integration of Windows 7 SDK (Optional) ###
-To build Mpc-hc with Windows 7 SDK follow thoses steps :
+To build MPC-HC with Windows 7 SDK follow these steps:
1) Download and install Windows 7 SDK from Microsoft website (http://www.microsoft.com/downloads/details.aspx?FamilyID=71deb800-c591-4f97-a900-bea146e4fae1&displaylang=en)
2) Open regional settings, and set it to English (see this link for explanations : http://blogs.msdn.com/windowssdk/archive/2009/08/21/windows-sdk-configuration-tool-may-report-an-error-when-os-display-format-is-not-english.aspx)
diff --git a/include/MediaInfoDLL.h b/include/MediaInfoDLL.h
index ae185ead2..3574d09dc 100644
--- a/include/MediaInfoDLL.h
+++ b/include/MediaInfoDLL.h
@@ -137,7 +137,11 @@
#define MEDIAINFODLL_NAME "libmediainfo.so.0"
#define __stdcall
#endif //!defined(_WIN32) || defined (WIN32)
-#include <new> //For size_t in MacOS
+#ifdef __cplusplus
+ #include <new> //For size_t in MacOS
+#else //__cplusplus
+ typedef long size_t
+#endif //__cplusplus
/*-------------------------------------------------------------------------*/
/*Char types */
diff --git a/src/apps/mplayerc/mplayerc.cz.rc b/src/apps/mplayerc/mplayerc.cz.rc
index 39f3c98e9..992bdc2cb 100644
--- a/src/apps/mplayerc/mplayerc.cz.rc
+++ b/src/apps/mplayerc/mplayerc.cz.rc
Binary files differ
diff --git a/src/apps/mplayerc/mplayerc.de.rc b/src/apps/mplayerc/mplayerc.de.rc
index 987a70997..07ee11f1f 100644
--- a/src/apps/mplayerc/mplayerc.de.rc
+++ b/src/apps/mplayerc/mplayerc.de.rc
Binary files differ
diff --git a/src/apps/mplayerc/mplayerc.fr.rc b/src/apps/mplayerc/mplayerc.fr.rc
index 9a2b70da7..a669eaa34 100644
--- a/src/apps/mplayerc/mplayerc.fr.rc
+++ b/src/apps/mplayerc/mplayerc.fr.rc
Binary files differ
diff --git a/src/apps/mplayerc/mplayerc.it.rc b/src/apps/mplayerc/mplayerc.it.rc
index 3ad2b6f96..64421ed1a 100644
--- a/src/apps/mplayerc/mplayerc.it.rc
+++ b/src/apps/mplayerc/mplayerc.it.rc
Binary files differ
diff --git a/src/apps/mplayerc/mplayerc.pl.rc b/src/apps/mplayerc/mplayerc.pl.rc
index fcd31ddfe..a318253ad 100644
--- a/src/apps/mplayerc/mplayerc.pl.rc
+++ b/src/apps/mplayerc/mplayerc.pl.rc
Binary files differ
diff --git a/src/apps/mplayerc/mplayerc.vcproj b/src/apps/mplayerc/mplayerc.vcproj
index fd45818a6..fd941f76d 100644
--- a/src/apps/mplayerc/mplayerc.vcproj
+++ b/src/apps/mplayerc/mplayerc.vcproj
@@ -73,7 +73,6 @@
/>
<Tool
Name="VCLinkerTool"
- AdditionalOptions="/MACHINE:I386"
AdditionalDependencies="comsuppw.lib Delayimp.lib psapi.lib detours.lib qtmlClient.lib wmstub.lib dxguid.lib Dsound.lib strmbaseRU.lib dsutilRU.lib subpicRU.lib subtitlesRU.lib libssfRU.lib asyncreaderRU.lib audioswitcherRU.lib avi2ac3filterRU.lib bufferfilterRU.lib cddareaderRU.lib cdxareaderRU.lib d2vsourceRU.lib decssfilterRU.lib flicsourceRU.lib dtsac3sourceRU.lib basesourceRU.lib wavdestRU.lib shoutcastsourceRU.lib streamdrivethruRU.lib vtsreaderRU.lib basesplitterRU.lib MatroskaSplitterRU.lib MatroskaMuxerRU.lib RealMediaSplitterRU.lib AviSplitterRU.lib Mpeg2DecFilterRU.lib MpaDecFilterRU.lib RoQSplitterRU.lib OggSplitterRU.lib NutSplitterRU.lib MpegSplitterRU.lib DiracSplitterRU.lib MpaSplitterRU.lib DSMSplitterRU.lib BaseMuxerRU.lib DSMMuxerRU.lib UDPReaderRU.lib FLVSplitterRU.lib zlibR.lib subtitlesourceRU.lib filtersRU.lib libvorbisidecR.lib SSFSplitterRU.lib MP4SplitterRU.lib libpngR.lib Setupapi.lib lgLcd.lib libLCDUIRU.lib MPCVideoDecRU.lib SyncClockRU.lib"
OutputFile="$(OutDir)\$(ProjectName).exe"
AdditionalLibraryDirectories="..\..\..\lib;..\..\..\lib\wm7;..\..\..\lib\qt6;..\..\..\lib\detours;..\..\..\lib\lglcd;..\..\..\lib\dx"
@@ -85,6 +84,7 @@
RandomizedBaseAddress="2"
DataExecutionPrevention="2"
SupportUnloadOfDelayLoadedDLL="true"
+ TargetMachine="1"
/>
<Tool
Name="VCALinkTool"
@@ -253,7 +253,6 @@
/>
<Tool
Name="VCLinkerTool"
- AdditionalOptions="/MACHINE:I386"
AdditionalDependencies="comsuppw.lib Delayimp.lib psapi.lib detours.lib qtmlClient.lib wmstub.lib Dsound.lib dxguid.lib strmbaseDU.lib dsutilDU.lib subpicDU.lib subtitlesDU.lib libssfDU.lib asyncreaderDU.lib audioswitcherDU.lib avi2ac3filterDU.lib bufferfilterDU.lib cddareaderDU.lib cdxareaderDU.lib d2vsourceDU.lib decssfilterDU.lib flicsourceDU.lib dtsac3sourceDU.lib basesourceDU.lib subtitlesourceDU.lib wavdestDU.lib shoutcastsourceDU.lib streamdrivethruDU.lib vtsreaderDU.lib basesplitterDU.lib MatroskaSplitterDU.lib MatroskaMuxerDU.lib RealMediaSplitterDU.lib AviSplitterDU.lib Mpeg2DecFilterDU.lib MpaDecFilterDU.lib RoQSplitterDU.lib OggSplitterDU.lib NutSplitterDU.lib MpegSplitterDU.lib DiracSplitterDU.lib MpaSplitterDU.lib DSMSplitterDU.lib BaseMuxerDU.lib DSMMuxerDU.lib UDPReaderDU.lib FLVSplitterDU.lib zlibD.lib filtersDU.lib libvorbisidecD.lib SSFSplitterDU.lib MP4SplitterDU.lib libpngD.lib Setupapi.lib lgLcd.lib libLCDUIDU.lib MPCVideoDecDU.lib SyncClockDU.lib"
ShowProgress="0"
OutputFile="$(OutDir)\$(ProjectName).exe"
@@ -264,6 +263,7 @@
SubSystem="2"
RandomizedBaseAddress="1"
DataExecutionPrevention="0"
+ TargetMachine="1"
/>
<Tool
Name="VCALinkTool"
diff --git a/src/filters/misc/SyncClock/SyncClock.vcproj b/src/filters/misc/SyncClock/SyncClock.vcproj
index cf0c14fa2..2506009d8 100644
--- a/src/filters/misc/SyncClock/SyncClock.vcproj
+++ b/src/filters/misc/SyncClock/SyncClock.vcproj
@@ -53,7 +53,7 @@
RuntimeLibrary="1"
UsePrecompiledHeader="0"
WarningLevel="3"
- Detect64BitPortabilityProblems="true"
+ Detect64BitPortabilityProblems="false"
DebugInformationFormat="4"
CallingConvention="0"
/>
@@ -120,6 +120,7 @@
RuntimeLibrary="3"
UsePrecompiledHeader="0"
WarningLevel="3"
+ Detect64BitPortabilityProblems="false"
DebugInformationFormat="3"
CallingConvention="2"
/>
@@ -216,6 +217,7 @@
/>
<Tool
Name="VCLibrarianTool"
+ AdditionalOptions="/IGNORE:4221"
OutputFile="..\..\..\..\lib\$(ProjectName)RU.lib"
/>
<Tool
@@ -290,8 +292,8 @@
SubSystem="2"
OptimizeReferences="2"
EnableCOMDATFolding="2"
- RandomizedBaseAddress="1"
- DataExecutionPrevention="0"
+ RandomizedBaseAddress="2"
+ DataExecutionPrevention="2"
TargetMachine="17"
/>
<Tool
@@ -365,6 +367,7 @@
/>
<Tool
Name="VCLibrarianTool"
+ AdditionalOptions="/IGNORE:4221"
OutputFile="..\..\..\..\lib\$(ProjectName)RU.lib"
/>
<Tool
@@ -430,6 +433,7 @@
/>
<Tool
Name="VCLibrarianTool"
+ AdditionalOptions="/IGNORE:4221"
AdditionalLibraryDirectories="..\..\..\..\lib64"
/>
<Tool
diff --git a/src/filters/transform/mpadecfilter/libflac/src/libFLAC/libflac.vcproj b/src/filters/transform/mpadecfilter/libflac/src/libFLAC/libflac.vcproj
index 5ed898575..1c3919aad 100644
--- a/src/filters/transform/mpadecfilter/libflac/src/libFLAC/libflac.vcproj
+++ b/src/filters/transform/mpadecfilter/libflac/src/libFLAC/libflac.vcproj
@@ -49,12 +49,12 @@
Optimization="0"
AdditionalIncludeDirectories=".\include;..\..\include; ..\..\..\..\..\..\..\include"
PreprocessorDefinitions="WIN32;_DEBUG;_LIB;FLAC__HAS_OGG;FLAC__CPU_IA32;FLAC__HAS_NASM;FLAC__USE_3DNOW;VERSION=\&quot;1.2.0\&quot;;FLAC__NO_DLL;DEBUG;FLAC__OVERFLOW_DETECT;_WINSOCK2API_"
- MinimalRebuild="true"
+ MinimalRebuild="false"
BasicRuntimeChecks="3"
RuntimeLibrary="1"
UsePrecompiledHeader="0"
WarningLevel="2"
- Detect64BitPortabilityProblems="true"
+ Detect64BitPortabilityProblems="false"
DebugInformationFormat="4"
CompileAs="1"
DisableSpecificWarnings="4267;4996"
@@ -118,12 +118,12 @@
Optimization="0"
AdditionalIncludeDirectories=".\include;..\..\include; ..\..\..\..\..\..\..\include"
PreprocessorDefinitions="WIN32;_DEBUG;_LIB;FLAC__HAS_OGG;FLAC__HAS_NASM;FLAC__USE_3DNOW;VERSION=\&quot;1.2.0\&quot;;FLAC__NO_DLL;DEBUG;FLAC__OVERFLOW_DETECT;_WINSOCK2API_"
- MinimalRebuild="true"
+ MinimalRebuild="false"
BasicRuntimeChecks="3"
RuntimeLibrary="1"
UsePrecompiledHeader="0"
WarningLevel="2"
- Detect64BitPortabilityProblems="true"
+ Detect64BitPortabilityProblems="false"
DebugInformationFormat="3"
CompileAs="1"
DisableSpecificWarnings="4267;4996"
@@ -264,7 +264,7 @@
BufferSecurityCheck="true"
UsePrecompiledHeader="0"
WarningLevel="2"
- Detect64BitPortabilityProblems="true"
+ Detect64BitPortabilityProblems="false"
DebugInformationFormat="3"
CompileAs="1"
DisableSpecificWarnings="4267;4996"
diff --git a/src/ui/TreePropSheet/TreePropSheet.vcproj b/src/ui/TreePropSheet/TreePropSheet.vcproj
index c9386a527..e85ccb353 100644
--- a/src/ui/TreePropSheet/TreePropSheet.vcproj
+++ b/src/ui/TreePropSheet/TreePropSheet.vcproj
@@ -162,6 +162,7 @@
AdditionalOptions="/MP"
PreprocessorDefinitions="WIN32;NDEBUG;_LIB;"
BufferSecurityCheck="true"
+ UsePrecompiledHeader="0"
DisableSpecificWarnings="4244"
/>
<Tool