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>2012-03-16 21:42:26 +0400
committerXhmikosR <xhmikosr@users.sourceforge.net>2012-03-16 21:42:26 +0400
commit092115bf5bac0438072e3ac0d90e8a2014bf50f0 (patch)
treefbe39975e63cc8e7ef172ba8bd6f257f5d9af1f1
parent09463d6ff3ad5214d9093df9ce33d0022b6958b6 (diff)
update Changelog.txt
git-svn-id: https://mpc-hc.svn.sourceforge.net/svnroot/mpc-hc/trunk@4151 10f7b99b-c216-0410-bff0-8a66a9350fd8
-rw-r--r--docs/Changelog.txt13
-rw-r--r--src/thirdparty/VirtualDub/Kasumi/source/pixel.cpp6
2 files changed, 15 insertions, 4 deletions
diff --git a/docs/Changelog.txt b/docs/Changelog.txt
index 0e4697cdd..67c5c18f6 100644
--- a/docs/Changelog.txt
+++ b/docs/Changelog.txt
@@ -3,24 +3,35 @@ next version - not yet released
NEW : Use ffmpeg for RealVideo/RealAudio decoding
NEW : Support for SIPR and VP30/31
NEW : Support WMV3 DXVA
+NEW : MatroskaSplitter: support for QDesign Music, Sorenson and Cinepak video
NEW : Ticket #1738, Support for decoding FLV SWF ADPCM
CHANGED: Updated libpng to v1.5.9
CHANGED: Updated Little CMS to the latest git (25/02/2012)
CHANGED: Updated libav
CHANGED: Updated MediaInfoLib to v0.7.54
CHANGED: Updated ZenLib to v0.4.25
+CHANGED: Updated VirtualDub to v1.10.2-test5
+CHANGED: New icons for the Windows 7 Taskbar
CHANGED: Updated Polish, Japanese, Chinese Simplified, Chinese Traditional, Russian,
- Ukrainian and German translations
+ Ukrainian, German and Slovak translations
FIXED : Long opening of MKV files after using the "mkvclean" utility
FIXED : Incorrect detection of interlaced flag on some MPEG2 stream with DXVA decoder,
fix choppy playback with incorrect frame rate
FIXED : MPASplitter can't split some .MP3 files
FIXED : MPC Video Decoder switched to software decode mode, even if only DXVA decoder was
selected, but wasn't supported
+FIXED : MPEGSplitter can't load MPEG-TS files with corrupted packet header
+ (incorrect Adaptation Field)
+FIXED : Freeze occurs when madVR leaves exclusive mode
+FIXED : MPCVideoDec bad playback with VC1 files with pulldown in MPEG-TS
FIXED : Ticket #1007, FLVSplitter: increased the depth of the search for audio and video tags
FIXED : Ticket #2007, Prevent a memory leak in FLACSource
FIXED : Ticket #2013, bug when saving the ASS/SSA subtitle, the header has incorrect values
FIXED : Ticket #2014, Embedded subtitle overrides "Prefer external"
+FIXED : Ticket #2047, Apply button under "EVR Sync Settings" can't be clicked
+FIXED : Ticket #2057, Don't crash with some incomplete .AVI files
+FIXED : Ticket #2057, MatroskaSplitter does not use properly cropping parameters
+FIXED : Numerous other bugfixes and improvements
For the older changes see:
diff --git a/src/thirdparty/VirtualDub/Kasumi/source/pixel.cpp b/src/thirdparty/VirtualDub/Kasumi/source/pixel.cpp
index e6eaada3f..d8d845f82 100644
--- a/src/thirdparty/VirtualDub/Kasumi/source/pixel.cpp
+++ b/src/thirdparty/VirtualDub/Kasumi/source/pixel.cpp
@@ -922,15 +922,15 @@ uint32 VDConvertRGBToYCbCr(uint8 r8, uint8 g8, uint8 b8, bool use709, bool useFu
cb = ( -7509*r - 25259*g + 32768*b + 0x808000) >> 16;
cr = ( 32768*r - 29763*g - 3005*b + 0x808000);
} else {
- y = ( 11966*r + 40254*g + 4064*b + 0x8000) >> 8;
+ y = ( 11966*r + 40254*g + 4064*b + 0x108000) >> 8;
cb = ( -6596*r - 22189*g + 28784*b + 0x808000) >> 16;
- cr = ( 28784*r - 26145*g + 2639*b + 0x808000);
+ cr = ( 28784*r - 26145*g - 2639*b + 0x808000);
}
} else {
if (useFullRange) {
y = ( 19595*r + 38470*g + 7471*b + 0x8000) >> 8;
cb = (-11058*r - 21710*g + 32768*b + 0x808000) >> 16;
- cr = ( 32768*r - 27439*g + 5329*b + 0x808000);
+ cr = ( 32768*r - 27439*g - 5329*b + 0x808000);
} else {
y = ( 16829*r + 33039*g + 6416*b + 0x108000) >> 8;
cb = ( -9714*r - 19071*g + 28784*b + 0x808000) >> 16;