Skip to content
GitLab
Explore
Sign in
Register
Primary navigation
Search or go to…
Project
VLC
Manage
Activity
Members
Labels
Plan
Issues
0
Issue boards
Milestones
Wiki
Code
Merge requests
0
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Model registry
Operate
Environments
Monitor
Incidents
Service Desk
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
Fatih Uzunoğlu
VLC
Commits
fdb0a981
Commit
fdb0a981
authored
2 months ago
by
Pierre Lamot
Committed by
Steve Lhomme
1 month ago
Browse files
Options
Downloads
Patches
Plain Diff
qt: fix window destroyed before the vout window in DComp compositor
parent
fc0325db
No related branches found
No related tags found
No related merge requests found
Pipeline
#561299
passed with stage
in 5 minutes and 14 seconds
Changes
1
Pipelines
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
modules/gui/qt/maininterface/compositor_dcomp.cpp
+8
-1
8 additions, 1 deletion
modules/gui/qt/maininterface/compositor_dcomp.cpp
with
8 additions
and
1 deletion
modules/gui/qt/maininterface/compositor_dcomp.cpp
+
8
−
1
View file @
fdb0a981
...
...
@@ -337,13 +337,20 @@ void CompositorDirectComposition::destroyMainInterface()
msg_Err
(
m_intf
,
"video surface still active while destroying main interface"
);
commonIntfDestroy
();
m_quickView
.
reset
();
}
void
CompositorDirectComposition
::
unloadGUI
()
{
m_acrylicSurface
.
reset
();
m_interfaceWindowHandler
.
reset
();
m_quickView
.
reset
();
//at this point we need to unload the QML content but the window still need to
//be valid as it may still be used by the vout window.
//we cant' just delete the qmlEngine as the QmlView as the root item is parented to the QmlView
//setSource() to nothing will effectively destroy the root item
m_quickView
->
setSource
(
QUrl
());
commonGUIDestroy
();
}
...
...
This diff is collapsed.
Click to expand it.
Fatih Uzunoğlu
@fuzun
mentioned in commit
c91abfdd
·
1 week ago
mentioned in commit
c91abfdd
mentioned in commit c91abfddc11c6e1ad804b47c514d5b07d17e139b
Toggle commit list
Fatih Uzunoğlu
@fuzun
mentioned in commit
d3b9d6dc
·
1 week ago
mentioned in commit
d3b9d6dc
mentioned in commit d3b9d6dcb005943f2667cb97866f3fb15f5475da
Toggle commit list
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment