Parcourir la source

Log initially loaded codecs in start

Vincent Lang il y a 9 ans
Parent
commit
160ff590cd
1 fichiers modifiés avec 14 ajouts et 0 suppressions
  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;
 }