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:
authorclsid2 <clsid2@users.sourceforge.net>2017-06-02 20:30:37 +0300
committerXhmikosR <xhmikosr@gmail.com>2017-06-03 09:28:50 +0300
commit2487150e51f62f6540c8a283a050978b144ced97 (patch)
tree10d16e97eef09aee12f13e2ba105783c2870bb9c
parent8daacaaa7c90e09f547b90b89b8c971e74f859d1 (diff)
Updated VSFilter blacklist.
-rw-r--r--src/filters/transform/VSFilter/DirectVobSubFilter.cpp34
1 files changed, 18 insertions, 16 deletions
diff --git a/src/filters/transform/VSFilter/DirectVobSubFilter.cpp b/src/filters/transform/VSFilter/DirectVobSubFilter.cpp
index 9c22beab1..e3b2a87fe 100644
--- a/src/filters/transform/VSFilter/DirectVobSubFilter.cpp
+++ b/src/filters/transform/VSFilter/DirectVobSubFilter.cpp
@@ -1,6 +1,6 @@
/*
* (C) 2003-2006 Gabest
- * (C) 2006-2015 see Authors.txt
+ * (C) 2006-2015, 2017 see Authors.txt
*
* This file is part of MPC-HC.
*
@@ -1351,24 +1351,26 @@ bool CDirectVobSubFilter2::IsAppBlackListed()
{
// all entries must be lowercase!
TCHAR* blacklistedapps[] = {
- _T("wm8eutil."), // wmp8 encoder's dummy renderer releases the outputted media sample after calling Receive on its input pin (yes, even when dvobsub isn't registered at all)
- _T("explorer."), // as some users reported thumbnail preview loads dvobsub, I've never experienced this yet...
- _T("producer."), // this is real's producer
- _T("googledesktop"), // Google Desktop
+ _T("wm8eutil."), // wmp8 encoder's dummy renderer releases the outputted media sample after calling Receive on its input pin (yes, even when dvobsub isn't registered at all)
+ _T("explorer."), // as some users reported thumbnail preview loads dvobsub, I've never experienced this yet...
+ _T("producer."), // this is real's producer
+ _T("googledesktop"), // Google Desktop
_T("subtitleworkshop"), // Subtitle Workshop
- _T("darksouls."), // Dark Souls (Game)
- _T("rometw."), // Rome Total War (Game)
- _T("everquest2."), // EverQuest II (Game)
- _T("yso_win."), // Ys Origin (Game)
- _T("launcher_main."), // Logitech WebCam Software
- _T("webcamdell"), // Dell WebCam Software
- _T("data."), // Dark Souls 1 (Game)
- _T("unravel"), // Unravel (Game)
- _T("mshta"), // MS Scripting Host
+ _T("darksouls."), // Dark Souls (Game)
+ _T("rometw."), // Rome Total War (Game)
+ _T("everquest2."), // EverQuest II (Game)
+ _T("yso_win."), // Ys Origin (Game)
+ _T("launcher_main."), // Logitech WebCam Software
+ _T("webcamdell"), // Dell WebCam Software
+ _T("data."), // Dark Souls 1 (Game)
+ _T("unravel"), // Unravel (Game)
+ _T("mshta"), // MS Scripting Host
+ _T("origin.exe"), // Origin
+ _T("train.exe"), // Train Simulator (Game)
#if WIN64
- _T("ridex64.exe"), // Ride (Game)
+ _T("ridex64.exe"), // Ride (Game)
#else
- _T("ride.exe"), // Ride (Game)
+ _T("ride.exe"), // Ride (Game)
#endif
};