aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorS. Davilla <davilla@4pi.com>2013-04-30 16:56:25 -0400
committerS. Davilla <davilla@4pi.com>2013-04-30 16:56:25 -0400
commit4dfa1aa8f65f906b71e4c5071c552d57c0cd0323 (patch)
treec3d9fe9a2e0c6a22b57149947d4b4c497012f084
parent4bac4f603197213252cd637935125cf3420c0967 (diff)
[vda] disable use of cvBufferRef for 12.2+
-rw-r--r--xbmc/cores/dvdplayer/DVDCodecs/Video/DVDVideoCodecVDA.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/xbmc/cores/dvdplayer/DVDCodecs/Video/DVDVideoCodecVDA.cpp b/xbmc/cores/dvdplayer/DVDCodecs/Video/DVDVideoCodecVDA.cpp
index 1a04607417..e4511a6a4b 100644
--- a/xbmc/cores/dvdplayer/DVDCodecs/Video/DVDVideoCodecVDA.cpp
+++ b/xbmc/cores/dvdplayer/DVDCodecs/Video/DVDVideoCodecVDA.cpp
@@ -809,7 +809,7 @@ bool CDVDVideoCodecVDA::Open(CDVDStreamInfo &hints, CDVDCodecOptions &options)
{
// Nvidia gpu's are all powerful and work the way god intended
m_decode_async = true;
- m_use_cvBufferRef = true;
+ m_use_cvBufferRef = false;
}
else if (rendervendor.find("intel") != std::string::npos)
{
@@ -821,7 +821,7 @@ bool CDVDVideoCodecVDA::Open(CDVDStreamInfo &hints, CDVDCodecOptions &options)
{
// ATI gpu's are borked when using async decode
m_decode_async = false;
- m_use_cvBufferRef = true;
+ m_use_cvBufferRef = false;
}
if (!m_use_cvBufferRef)