فهرست منبع

PlayerComponent: fix determining the video profile

I'm not sure why, but the "videoProfile" field doesn't seem to be always
available.
Vincent Lang 9 سال پیش
والد
کامیت
4f91db238b
1فایلهای تغییر یافته به همراه12 افزوده شده و 3 حذف شده
  1. 12 3
      src/player/PlayerComponent.cpp

+ 12 - 3
src/player/PlayerComponent.cpp

@@ -1051,11 +1051,20 @@ PlaybackInfo PlayerComponent::getPlaybackInfo()
     stream.audioChannels = map["demux-channel-count"].toInt();
     stream.videoResolution = QSize(map["demux-w"].toInt(), map["demux-h"].toInt());
 
+    // Get the profile from the server, because mpv can't determine it yet.
     if (stream.isVideo)
     {
-      // Assume there's only 1 video stream. We get the profile from the
-      // server because mpv can't be bothered to determine it.
-      stream.profile = m_serverMediaInfo["videoProfile"].toString();
+      int index = map["ff-index"].toInt();
+      for (auto partInfo : m_serverMediaInfo["Part"].toList())
+      {
+        for (auto streamInfo : partInfo.toMap()["Stream"].toList())
+        {
+          auto streamInfoMap = streamInfo.toMap();
+          bool ok = false;
+          if (streamInfoMap["index"].toInt(&ok) == index && ok)
+            stream.profile = streamInfoMap["profile"].toString();
+        }
+      }
     }
 
     info.streams.append(stream);