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
AgeCommit message (Collapse)Author
2013-06-29Remove now deprecated filters.Underground78
2013-06-23Replace memset with ZeroMemory.XhmikosR
The ZeroMemory macro makes clear what it does compared to `memset(foo, 0, bar)`.
2013-06-19Use "PURE" instead of "= 0" for COM interfaces.Underground78
2013-05-18Bump copyright year for modified files.XhmikosR
Everyone with push rights has to use the precommit hook. (Hint: `cp contrib/checkyear.sh .git/hooks/pre-commit`)
2013-05-15AviSplitter: more linear reading for "good" interleaved AVI files, cosmetics.v0lt
2013-05-13AviSplitter: fix warnings.v0lt
2013-05-12AviSplitter: cosmetics and optimization.v0lt
2013-05-12AviSplitter: back support DivX subtitles after a8719e5ec1.v0lt
2013-05-11AviSplitter: MAXPACKETS_AVI increased to 1000 (more stable playback on old ↵v0lt
Semptron).
2013-05-10Use IsEmpty() instead of GetCount() when possible.XhmikosR
2013-05-10AviSplitter: added debugging information about the incorrect chunk size.v0lt
2013-05-10AviSplitter: MAXPACKETS_AVI increased to 200.v0lt
2013-05-10AviSplitter: improved playback for non interleaved AVI files, reduced memory ↵v0lt
usage, "Non interleaved files support" option is always enabled now.
2013-05-09Use nullptr instead of NULL whenever possible.Underground78
Microsoft recommends to avoid using NULL or zero (0) as a null pointer constant since nullptr is less vulnerable to misuse and works better in most situations. Also fix some cases where NULL was used instead of 0 or FALSE.
2013-04-21astyle: specify --close-templatesXhmikosR
2013-04-06Filters: "Settings" caption is translated, fixed window size.v0lt
2013-04-05Filters: regrouped resource IDs.v0lt
2013-03-31Cppcheck fixes:XhmikosR
* reduce variable scope * remove unneeded variable assignments
2013-03-29AviSplitter: correct subtype then wFormatTag = WAVE_FORMAT_EXTENSIBLE.v0lt
2013-03-07Add missing brackets.Underground78
2013-03-02resource files: switch to constants for the VersionInfo.XhmikosR
Inspired by http://code.google.com/p/tortoisegit/source/detail?r=b3b1d4f5614f1777f6457db77474fefdf0b49ef5
2013-02-07use try catch directly instead of the AFX macrosXhmikosR
2013-01-23clean up project referencesXhmikosR
2013-01-08use PlatformToolsetVersion instead of VisualStudioVersionXhmikosR
2013-01-08Add VS2012 support.XhmikosR
* We use the same project files as VS2010 which makes things easier to maintain. * We don't use any MFC hack to reduce the binaries' size. We use the _AFX_NO_MFC_CONTROLS_IN_DIALOGS define for the standalone filters which has the same effect and it's cleaner. MPC-HC itself is a little bigger uncompressed, but its compressed size is the same.
2013-01-07update copyright year for the modified filesXhmikosR
2013-01-05AviSplitter: Fix a crash when closing the file while re-indexing.Underground78
That crash was visible only if the user seeked while re-indexing a broken file and then aborted the re-indexing. Fixes #2805.
2012-12-28move the ResStr define in DSUtil.h instead of duplicating itXhmikosR
2012-12-27project files: use MFCProj in the keyword when using MFCXhmikosR
2012-12-15Filters: debug log cosmeticsv0lt
2012-11-12Properly enable memory leak detection.Underground78
Use MS define DEBUG_NEW.
2012-11-10Avi Splitter: Fix a potential crash with PCM tracks.Underground78
Avoid reading in unallocated memory. This commit fixes ticket #2699.
2012-11-08AviSplitter: skip broken chunk in header (ticket #2706)v0lt
2012-11-02* Remove void from the parameter listXhmikosR
* Add default constructors/destructors
2012-09-17AVI Splitter: Add a property page.Underground78
That new property page permits to control the support for non interleaved files. Support for such files is now enabled by default. The old AVI Chunk Viewer dialog has been removed. Thanks to sztanpet for the initial report about the AVI Chunk Viewer dialog being displayed without reason.
2012-08-24remove extra space in case statements before ":"XhmikosR
2012-08-23use _T() in the TRACE macro for consistencyXhmikosR
2012-08-02Show the hash and branch information in the file version information.Underground78
2012-08-02fix line endingsxhmikosr
2012-07-26rename Version.sh and Version.h to lowercasexhmikosr
2012-07-25remove the svn keyword Idxhmikosr
2012-07-11indentation cosmeticsXhmikosR
git-svn-id: https://mpc-hc.svn.sourceforge.net/svnroot/mpc-hc/trunk@5442 10f7b99b-c216-0410-bff0-8a66a9350fd8
2012-07-03move Winmm.lib in BaseClasses since that's where it's neededXhmikosR
git-svn-id: https://mpc-hc.svn.sourceforge.net/svnroot/mpc-hc/trunk@5343 10f7b99b-c216-0410-bff0-8a66a9350fd8
2012-07-01remove Version.lib from the projects that don't need itXhmikosR
git-svn-id: https://mpc-hc.svn.sourceforge.net/svnroot/mpc-hc/trunk@5329 10f7b99b-c216-0410-bff0-8a66a9350fd8
2012-07-01keep the style constantXhmikosR
git-svn-id: https://mpc-hc.svn.sourceforge.net/svnroot/mpc-hc/trunk@5320 10f7b99b-c216-0410-bff0-8a66a9350fd8
2012-06-27indentation cosmetics, break a few long lines, keep a few one line blocksXhmikosR
git-svn-id: https://mpc-hc.svn.sourceforge.net/svnroot/mpc-hc/trunk@5297 10f7b99b-c216-0410-bff0-8a66a9350fd8
2012-06-27add missing license headersXhmikosR
git-svn-id: https://mpc-hc.svn.sourceforge.net/svnroot/mpc-hc/trunk@5294 10f7b99b-c216-0410-bff0-8a66a9350fd8
2012-06-22avoid variable shadowing (/analyze C6246) (proper names should be used in ↵XhmikosR
some cases but that's for later) git-svn-id: https://mpc-hc.svn.sourceforge.net/svnroot/mpc-hc/trunk@5232 10f7b99b-c216-0410-bff0-8a66a9350fd8
2012-06-21use a fixed value (10000) for MAXPACKETS_AVI and MAXPACKETS_RVv0lt
git-svn-id: https://mpc-hc.svn.sourceforge.net/svnroot/mpc-hc/trunk@5223 10f7b99b-c216-0410-bff0-8a66a9350fd8
2012-06-21avoid variable shadowing (/analyze C6246)XhmikosR
git-svn-id: https://mpc-hc.svn.sourceforge.net/svnroot/mpc-hc/trunk@5211 10f7b99b-c216-0410-bff0-8a66a9350fd8