Explorar el Código

Treat cuvid as system decoder

Vincent Lang hace 8 años
padre
commit
bcaf7ca0b8
Se han modificado 1 ficheros con 2 adiciones y 0 borrados
  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;
 }