Procházet zdrojové kódy

Log initially loaded codecs in start

Vincent Lang před 9 roky
rodič
revize
160ff590cd
1 změnil soubory, kde provedl 14 přidání a 0 odebrání
  1. 14 0
      src/player/PlayerComponent.cpp

+ 14 - 0
src/player/PlayerComponent.cpp

@@ -163,6 +163,20 @@ bool PlayerComponent::componentInitialize()
   initializeCodecSupport();
   Codecs::updateCachedCodecList();
 
+  QString codecInfo;
+  for (auto codec : Codecs::getCachecCodecList())
+  {
+    if (codec.present)
+    {
+      if (codecInfo.size())
+        codecInfo += " ";
+      codecInfo += codec.driver;
+      if (codec.type == CodecType::Encoder)
+        codecInfo += "(enc)";
+    }
+  }
+  QLOG_INFO() << "Present codecs:" << qPrintable(codecInfo);
+
   return true;
 }