Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/mpc-hc/LAVFilters.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorHendrik Leppkes <h.leppkes@gmail.com>2012-11-01 20:15:08 +0400
committerHendrik Leppkes <h.leppkes@gmail.com>2012-11-01 20:15:08 +0400
commit43f4d093a62a5c244c5040e197eddee62bdefb4c (patch)
tree97664eec19b33e19e803e7836beb63689868be0a /decoder/LAVVideo
parent6606f9a2d762b9d85c3ac03c6c14082a0a41d262 (diff)
Force disable YV16 for now
Diffstat (limited to 'decoder/LAVVideo')
-rw-r--r--decoder/LAVVideo/LAVVideo.cpp2
1 files changed, 2 insertions, 0 deletions
diff --git a/decoder/LAVVideo/LAVVideo.cpp b/decoder/LAVVideo/LAVVideo.cpp
index 6da82a5e..3f6c773d 100644
--- a/decoder/LAVVideo/LAVVideo.cpp
+++ b/decoder/LAVVideo/LAVVideo.cpp
@@ -230,6 +230,8 @@ HRESULT CLAVVideo::LoadSettings()
bFlag = regP.ReadBOOL(pixFmtSettingsMap[i], hr);
if (SUCCEEDED(hr)) m_settings.bPixFmts[i] = bFlag;
}
+ // Force disable, for future use
+ m_settings.bPixFmts[LAVOutPixFmt_YV16] = FALSE;
CreateRegistryKey(HKEY_CURRENT_USER, LAVC_VIDEO_REGISTRY_KEY_HWACCEL);
CRegistry regHW = CRegistry(HKEY_CURRENT_USER, LAVC_VIDEO_REGISTRY_KEY_HWACCEL, hr);