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-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-03-22cosmeticsXhmikosR
2013-02-03Cosmetics: Define or use some constants when possible.Underground78
2013-02-02Fixed incorrect CBaseSplitterFile::BitRead function on x64.v0lt
2013-01-26Cosmetics: Use the GCD function when possible and rename it to use English.Underground78
2013-01-23clean up project referencesXhmikosR
2013-01-15update copyright year for the modified filesXhmikosR
2013-01-12Fix "Wrapper object use after free".Armada
The shorthand is being cast to CStringW by the preprocessor. This commit fixes that by making the cast to LPCWSTR explicit.
2013-01-12Update copyright year for the modified files. Also fix starting copyright ↵XhmikosR
year for a lot of files.
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.
2012-12-27project files: use MFCProj in the keyword when using MFCXhmikosR
2012-12-27switch back to MAX_PATHXhmikosR
2012-11-30WAVE_FORMAT_MP3 replaced WAVE_FORMAT_MPEGLAYER3v0lt
2012-11-12Properly enable memory leak detection.Underground78
Use MS define DEBUG_NEW.
2012-10-29MPEG Splitter: Fix parsing of some malformed TS files.Underground78
Relax a bit the error checking when parsing the PES headers, issue a warning instead of stopping parsing.
2012-10-28Cosmetic: Fix a typo in a struct name.Underground78
2012-09-24MPEG Splitter/AAC Decoder: Add basic support from AAC LATM tracks.Underground78
Note that the support is probably incomplete. This commit fixes ticket #2219 and ticket #2610. This commit is based on ideas from MPC-BE.
2012-09-10indentation cosmeticsXhmikosR
2012-08-24remove extra space from private, protected and public keywordsXhmikosR
2012-08-24remove extra space in case statements before ":"XhmikosR
2012-08-11remove unneeded commas from enumsXhmikosR
2012-08-11break a few enums in separate lines; it's easier to readxhmikosr
2012-07-25remove the svn keyword Idxhmikosr
2012-07-21put back the ";" in macro calls; better be consistent. Remove excessive ↵XhmikosR
indentation git-svn-id: https://mpc-hc.svn.sourceforge.net/svnroot/mpc-hc/trunk@5585 10f7b99b-c216-0410-bff0-8a66a9350fd8
2012-07-21indentation cosmeticsXhmikosR
git-svn-id: https://mpc-hc.svn.sourceforge.net/svnroot/mpc-hc/trunk@5574 10f7b99b-c216-0410-bff0-8a66a9350fd8
2012-07-15indentation cosmeticsXhmikosR
git-svn-id: https://mpc-hc.svn.sourceforge.net/svnroot/mpc-hc/trunk@5476 10f7b99b-c216-0410-bff0-8a66a9350fd8
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-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-23avoid variable shadowingXhmikosR
git-svn-id: https://mpc-hc.svn.sourceforge.net/svnroot/mpc-hc/trunk@5254 10f7b99b-c216-0410-bff0-8a66a9350fd8
2012-06-21fixed playback of some m2ts: partial revert r4249 and r4359, fixed typo ↵v0lt
(ticket #2410) git-svn-id: https://mpc-hc.svn.sourceforge.net/svnroot/mpc-hc/trunk@5222 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
2012-06-20BaseSplitter: fixed playback of some m2ts files after r4249, set MAXPACKETS ↵v0lt
= 1400 (ticket #2410) git-svn-id: https://mpc-hc.svn.sourceforge.net/svnroot/mpc-hc/trunk@5208 10f7b99b-c216-0410-bff0-8a66a9350fd8
2012-06-17Add some class variable initializations.Underground78
Patch by tetsuo55. git-svn-id: https://mpc-hc.svn.sourceforge.net/svnroot/mpc-hc/trunk@5168 10f7b99b-c216-0410-bff0-8a66a9350fd8
2012-06-17astyle.ini: remove --keep-one-line-statements, add PODTypes.h to the exclude ↵XhmikosR
list and ran astyle git-svn-id: https://mpc-hc.svn.sourceforge.net/svnroot/mpc-hc/trunk@5165 10f7b99b-c216-0410-bff0-8a66a9350fd8
2012-06-16use double quotes for our includesXhmikosR
git-svn-id: https://mpc-hc.svn.sourceforge.net/svnroot/mpc-hc/trunk@5146 10f7b99b-c216-0410-bff0-8a66a9350fd8
2012-06-13cosmetics: add a space after the delete operatorXhmikosR
git-svn-id: https://mpc-hc.svn.sourceforge.net/svnroot/mpc-hc/trunk@5120 10f7b99b-c216-0410-bff0-8a66a9350fd8
2012-06-13apply the new astyle command; use 4 spaces for indentation and k&r styleXhmikosR
Note: if you have any local patches just run astyle.bat git-svn-id: https://mpc-hc.svn.sourceforge.net/svnroot/mpc-hc/trunk@5110 10f7b99b-c216-0410-bff0-8a66a9350fd8
2012-06-10apply astyleXhmikosR
git-svn-id: https://mpc-hc.svn.sourceforge.net/svnroot/mpc-hc/trunk@5068 10f7b99b-c216-0410-bff0-8a66a9350fd8
2012-06-03returned constructor for peshdr structurev0lt
git-svn-id: https://mpc-hc.svn.sourceforge.net/svnroot/mpc-hc/trunk@4993 10f7b99b-c216-0410-bff0-8a66a9350fd8
2012-06-03splitters: fixed some warnings.v0lt
git-svn-id: https://mpc-hc.svn.sourceforge.net/svnroot/mpc-hc/trunk@4984 10f7b99b-c216-0410-bff0-8a66a9350fd8
2012-06-02Cosmetics: make the return statements consistent.Underground78
Patch partially by XhmikosR. git-svn-id: https://mpc-hc.svn.sourceforge.net/svnroot/mpc-hc/trunk@4978 10f7b99b-c216-0410-bff0-8a66a9350fd8
2012-06-01cleaning and cosmeticsv0lt
git-svn-id: https://mpc-hc.svn.sourceforge.net/svnroot/mpc-hc/trunk@4966 10f7b99b-c216-0410-bff0-8a66a9350fd8
2012-06-01minor fix for previous commitv0lt
git-svn-id: https://mpc-hc.svn.sourceforge.net/svnroot/mpc-hc/trunk@4961 10f7b99b-c216-0410-bff0-8a66a9350fd8
2012-06-01MpegSplitter: improved support for MLP in .aob files (ticket #1866)v0lt
DTSAC3Source: MLP header size is not less than 20 bytes (needed for ffmpeg decoder) git-svn-id: https://mpc-hc.svn.sourceforge.net/svnroot/mpc-hc/trunk@4960 10f7b99b-c216-0410-bff0-8a66a9350fd8
2012-05-30keep a couple of one line statementsXhmikosR
git-svn-id: https://mpc-hc.svn.sourceforge.net/svnroot/mpc-hc/trunk@4954 10f7b99b-c216-0410-bff0-8a66a9350fd8
2012-05-30BaseSplitter: added header for dvd-audio lpcm, cosmetics.v0lt
git-svn-id: https://mpc-hc.svn.sourceforge.net/svnroot/mpc-hc/trunk@4948 10f7b99b-c216-0410-bff0-8a66a9350fd8
2012-05-27use a space after if, for, whileXhmikosR
git-svn-id: https://mpc-hc.svn.sourceforge.net/svnroot/mpc-hc/trunk@4907 10f7b99b-c216-0410-bff0-8a66a9350fd8
2012-05-24AudioParser: fixed and updated support for MLPv0lt
DTSAC3Source: added support for MLP git-svn-id: https://mpc-hc.svn.sourceforge.net/svnroot/mpc-hc/trunk@4869 10f7b99b-c216-0410-bff0-8a66a9350fd8
2012-05-24AudioParser: added support for MLPv0lt
git-svn-id: https://mpc-hc.svn.sourceforge.net/svnroot/mpc-hc/trunk@4865 10f7b99b-c216-0410-bff0-8a66a9350fd8