BugFix Detect and display hardware decoder name

This commit is contained in:
Bruno Herbelin
2023-06-03 00:14:34 +02:00
parent 0f7d42ab83
commit 1f9bff6182
2 changed files with 9 additions and 13 deletions

View File

@@ -701,7 +701,7 @@ void ImGuiVisitor::visit (MediaSource& s)
top = _top;
top.y += ImGui::GetFrameHeight();
ImGui::SetCursorPos(top);
decoder = "Using hardware decoder\n" + decoder;
decoder = "Hardware decoder\n" + decoder;
ImGuiToolkit::Indication(decoder.c_str(), ICON_FA_MICROCHIP);
}