소스 검색

PlayerComponent: return 100% buffering if unknown

Probably unneeded, but I want to avoid confusing web with stale states.
Vincent Lang 9 년 전
부모
커밋
2dfc3baf8d
1개의 변경된 파일2개의 추가작업 그리고 2개의 파일을 삭제
  1. 2 2
      src/player/PlayerComponent.cpp

+ 2 - 2
src/player/PlayerComponent.cpp

@@ -418,9 +418,9 @@ void PlayerComponent::handleMpvEvent(mpv_event *event)
       {
         emit playbackActive(!*(int *)prop->data);
       }
-      else if (strcmp(prop->name, "cache-buffering-state") == 0 && prop->format == MPV_FORMAT_INT64)
+      else if (strcmp(prop->name, "cache-buffering-state") == 0)
       {
-        int64_t percentage = *(int64_t *)prop->data;
+        int64_t percentage = prop->format == MPV_FORMAT_INT64 ? *(int64_t *)prop->data : 100;
         emit buffering(percentage);
       }
       else if (strcmp(prop->name, "playback-time") == 0 && prop->format == MPV_FORMAT_DOUBLE)