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-06-19Replace remaining NULL by nullptr when possible.Underground78
2013-06-01Cosmetics: keep style consistent in multiline macros.XhmikosR
2013-06-01Break enum members, one per line.XhmikosR
2013-05-20Make CHdmvClipInfo::Stream* const.XhmikosR
2013-05-18cosmetics: add new lines at the end of files.XhmikosR
2013-05-10Use IsEmpty() instead of GetCount() when possible.XhmikosR
2013-05-09Cosmetics: Remove extra parenthesis.Underground78
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-10MpegSplitter: cosmeticsv0lt
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-23MPEG Splitter: Some files couldn't be opened.Underground78
The splitter failed to detect the PTS wrap. This commit fixes #2934.
2013-02-03MpegSplitter: "TrueHD streams output" -> "TrueHD+AC3 streams output", "AC-3 ↵v0lt
core" -> "AC-3"
2013-02-03Cosmetics: Define or use some constants when possible.Underground78
2013-01-23clean up project referencesXhmikosR
2013-01-17MpegSplitter: deeper search for tracks in streaming video (need for IPTV).v0lt
2013-01-12Update copyright year for the modified files. Also fix starting copyright ↵XhmikosR
year for a lot of files.
2013-01-09fix typoXhmikosR
2013-01-09fixed 91d655597e and 93346654dev0lt
2013-01-09MpegSplitter: added the ability to select a track by number (tickets #1025, ↵v0lt
#1054)
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-08MpegSplitter: removed the sorting tracks. used priority selection only.v0lt
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-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-11-02* Remove void from the parameter listXhmikosR
* Add default constructors/destructors
2012-10-28MPEG Splitter: Fix playback for some TS files.Underground78
Handle files with PTS wrap. This commit fixes ticket #2673.
2012-10-28Cosmetic: add missing brackets.Underground78
2012-10-28Cosmetic: Fix a typo in a struct name.Underground78
2012-10-28Fix some %S vs %s confusion in debug traces.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-18MPEG Splitter: Don't output the fake "No subtitle" track when the file ↵Underground78
contains no subtitles. This commit fixes ticket #2606.
2012-09-04apply astyleXhmikosR
2012-09-01Filters: updated GetWindowSize() functionv0lt
2012-09-01updated scaling for setting windows of filters (3)v0lt
2012-08-31updated scaling for setting windows of filters (1)v0lt
2012-08-31MPCVideoDec: added support for scaling in settings windowv0lt
Other cosmetics.
2012-08-31MpegSplitter, MpaDecFilter, Mpeg2DecFilter: added support for scaling in ↵v0lt
settings window.
2012-08-25Return an error code when memory allocations fail.Underground78
2012-08-25Fix some possible NULL pointer dereferences.XhmikosR
2012-08-24remove extra space from private, protected and public keywordsXhmikosR
2012-08-24remove extra space in case statements before ":"XhmikosR