Skip to content

Commit

Permalink
fix: Fixed the ARM playback crash issue
Browse files Browse the repository at this point in the history
Fixed the ARM playback crash issue

Bug: https://pms.uniontech.com/bug-view-289613.html
Log: Fixed the ARM playback crash issue
  • Loading branch information
pengfeixx committed Dec 9, 2024
1 parent e2f9952 commit 4e67000
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/backends/mpv/mpv_proxy.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -419,8 +419,8 @@ mpv_handle *MpvProxy::mpv_init()
m_sInitVo = "gpu,x11";
#elif defined (__aarch64__)
if (!fi.exists() && !jmfi.exists()) { //2.1.1景嘉微
my_set_property(pHandle, "vo", "gpu,xv,x11");
m_sInitVo = "gpu,xv,x11";
my_set_property(pHandle, "vo", "x11,gpu,xv");
m_sInitVo = "x11,gpu,xv";
}
if (CompositingManager::get().isSpecialControls()) {
my_set_property(pHandle, "hwdec", "vaapi");
Expand Down

0 comments on commit 4e67000

Please sign in to comment.