Parcourir la source

Treat cuvid as system decoder

Vincent Lang il y a 8 ans
Parent
commit
bcaf7ca0b8
1 fichiers modifiés avec 2 ajouts et 0 suppressions
  1. 2 0
      src/player/CodecsComponent.cpp

+ 2 - 0
src/player/CodecsComponent.cpp

@@ -297,6 +297,8 @@ bool CodecDriver::isSystemCodec() const
   // Not really a system codec, but treated as such for convenience
   if (driver.endsWith("_eae"))
     return true;
+  if (driver.endsWith("_cuvid"))
+    return true;
   return false;
 }